﻿
/* ===== CSS RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Core Brand Colors - HSL format matching React */
    --destaque: hsl(145, 100%, 46%);
    --primary: hsl(244, 76%, 58%);
    --primary-dark: hsl(244, 62%, 42%);
    --secondary: hsl(207, 100%, 56%);
    /* Semantic Colors */
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(220, 13%, 10%);
    --muted: hsl(248, 20%, 97%);
    --muted-foreground: hsl(220, 9%, 46%);
    --surface: hsl(0, 0%, 100%);
    --surface-alt: hsl(248, 33%, 98%);
    --border: hsl(244, 30%, 91%);
    /* Footer */
    --footer-bg: hsl(220, 14%, 10%);
    --footer-text: hsl(210, 40%, 98%);
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, hsl(220, 14%, 10%) 0%, hsl(244, 30%, 18%) 50%, hsl(220, 14%, 10%) 100%);
    --gradient-primary: linear-gradient(135deg, hsl(244, 76%, 58%) 0%, hsl(244, 62%, 42%) 100%);
    --gradient-destaque: linear-gradient(135deg, hsl(145, 100%, 46%) 0%, hsl(160, 100%, 40%) 100%);
    --radius: 0.75rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--foreground);
    background: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===== UTILITIES ===== */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-destaque {
    background: var(--gradient-destaque);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BADGES ===== */
.badge-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    background: hsla(244, 76%, 58%, 0.1);
    color: var(--primary);
    border: 1px solid hsla(244, 76%, 58%, 0.2);
}

.badge-destaque {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 700;
    background: hsla(145, 100%, 46%, 0.15);
    color: var(--destaque);
    border: 1px solid hsla(145, 100%, 46%, 0.3);
}

.badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

/* ===== BUTTONS ===== */
.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.75rem;
    background: var(--gradient-primary);
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .btn-hero:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 40px hsla(244, 76%, 58%, 0.25);
    }

.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.75rem;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

    .btn-secondary-hero:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
    }

.btn-destaque {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 0.75rem;
    background: var(--gradient-destaque);
    color: var(--footer-bg);
    transition: all 0.3s ease;
}

    .btn-destaque:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 30px hsla(145, 100%, 46%, 0.4);
    }

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 0.75rem;
    background: var(--gradient-primary);
    color: white;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 30px hsla(244, 76%, 58%, 0.3);
    }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 0.75rem;
    background: var(--surface);
    color: var(--foreground);
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

    .btn-secondary:hover {
        border-color: var(--primary);
        color: var(--primary);
    }

/* ===== SECTION STYLES ===== */
.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

    .navbar.scrolled {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border-bottom: 1px solid var(--border);
    }

        .navbar.scrolled .mobile-toggle span{
            background: #000;
        }

.navbar-logo span{
    color: #FFFFFF99;

}

.navbar.scrolled .navbar-logo span{
    color: #000;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

    .navbar-logo img {
        height: 40px;
        width: auto;
    }

.navbar-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

    .navbar-links a {
        font-weight: 500;
        /*color: var(--muted-foreground);*/
        color: var(--segment-primary);
        transition: color 0.3s ease;
        position: relative;
    }

        .navbar-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .navbar-links a:hover {
            color: var(--primary);
        }

            .navbar-links a:hover::after {
                width: 100%;
            }

.navbar-cta {
    display: none;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    cursor: pointer;
}

    .mobile-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: #FFF;
        transition: all 0.3s ease;
    }
    .mobile-toggle.active span {
        background: #000 !important;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    /*max-width: 320px;*/
    height: 100vh;
    background: #FFF;
    padding: 6rem 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 49;
}

    .mobile-menu.active {
        right: 0;
    }

    .mobile-menu a {
        display: block;
        padding: 1rem 0;
        font-size: 1.125rem;
        font-weight: 500;
        border-bottom: 1px solid var(--border);
    }

    .mobile-menu .btn-primary,
    .mobile-menu .btn-secondary {
        width: 100%;
        margin-top: 1rem;
        padding: 1rem;
    }

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 48;
}

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

@media (min-width: 1024px) {
    .navbar-links {
        display: flex;
    }

    .navbar-cta {
        display: flex;
    }

    .mobile-toggle {
        display: none;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    inset: 0;
}

    .hero-glow::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 120%;
        height: 120%;
        background: radial-gradient(ellipse at center, hsla(244, 76%, 58%, 0.15) 0%, transparent 70%);
        pointer-events: none;
    }

.hero-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.hero-circle-1 {
    top: 25%;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: hsla(244, 76%, 58%, 0.1);
}

.hero-circle-2 {
    bottom: 25%;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: hsla(207, 100%, 56%, 0.1);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 2rem 0 5rem;
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.875rem);
    font-weight: 600;
    color: var(--segment-primary);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 48rem;
    margin: 0 auto 2.5rem;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .hero-pill svg {
        color: var(--destaque);
    }

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .hero-stats {
        gap: 3rem;
    }
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-stat-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero-stat-icon svg {
        width: 1.25rem;
        height: 1.25rem;
        color: var(--success);
    }

.hero-stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Hero Dashboard Mockup */
.hero-mockup {
    position: relative;
    max-width: 72rem;
    margin: 4rem auto 0;
}

.hero-mockup-glow {
    position: absolute;
    inset: -1rem;
    background: linear-gradient(to right, hsla(244, 76%, 58%, 0.2), hsla(207, 100%, 56%, 0.2), hsla(244, 76%, 58%, 0.2));
    border-radius: 1.5rem;
    filter: blur(32px);
}

.hero-mockup-container {
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 0.5rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-mockup-container {
        border-radius: 1.5rem;
        padding: 1rem;
    }
}

.hero-mockup-image {
    aspect-ratio: 16 / 10;
    border-radius: 0.75rem;
    overflow: hidden;
    background: linear-gradient(to bottom right, var(--surface-alt), var(--surface));
}

@media (min-width: 768px) {
    .hero-mockup-image {
        border-radius: 1rem;
    }
}

.hero-mockup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.hero-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hero-play-btn {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: hsla(244, 76%, 58%, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px hsla(244, 76%, 58%, 0.25);
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .hero-play-btn {
        width: 6rem;
        height: 6rem;
    }
}

.hero-play-btn:hover {
    background: var(--primary);
    transform: scale(1.05);
}

.hero-play-btn svg {
    width: 2rem;
    height: 2rem;
    color: white;
    margin-left: 4px;
}

@media (min-width: 768px) {
    .hero-play-btn svg {
        width: 2.5rem;
        height: 2.5rem;
    }
}

.hero-play-label {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    backdrop-filter: blur(8px);
}

.hero-bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8rem;
    background: linear-gradient(to top, var(--background), transparent);
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 5rem 0;
    background: var(--surface);
    position: relative;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: var(--surface);
    padding: 1.5rem;
    box-shadow: 0 8px 24px -8px hsla(244, 76%, 58%, 0.12);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

    .feature-card:hover {
        box-shadow: 0 16px 48px -16px hsla(244, 76%, 58%, 0.18);
        transform: translateY(-4px);
        border-color: hsla(244, 76%, 58%, 0.3);
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-primary);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .feature-card:hover::before {
        opacity: 1;
    }

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px -2px hsla(244, 76%, 58%, 0.08);
}

    .feature-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.feature-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: var(--surface-alt);
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

    .feature-highlight .dot {
        width: 6px;
        height: 6px;
        background: var(--destaque);
        border-radius: 50%;
    }

.features-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    padding: 5rem 0;
    background: var(--surface-alt);
    position: relative;
    overflow: hidden;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 4rem;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .step {
        flex-direction: row;
        gap: 4rem;
    }

        .step.reverse {
            flex-direction: row-reverse;
        }
}

.step-content {
    flex: 1;
    text-align: center;
}

@media (min-width: 1024px) {
    .step-content {
        text-align: left;
    }
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .step-header {
        justify-content: flex-start;
    }
}

.step-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    position: relative;
    top: unset;
    right: unset;
    width: unset;
    height: unset;
    }

.step-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

    .step-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }

.step-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-description {
    color: var(--muted-foreground);
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

@media (min-width: 1024px) {
    .step-features {
        justify-content: flex-start;
    }
}

.step-feature {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: hsla(244, 76%, 58%, 0.1);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
}

    .step-feature .dot {
        width: 6px;
        height: 6px;
        background: var(--destaque);
        border-radius: 50%;
    }

.step-image {
    flex: 1;
    width: 100%;
    max-width: 500px;
}

.step-image-wrapper {
    position: relative;
}

.step-image-glow {
    position: absolute;
    inset: -16px;
    background: linear-gradient(135deg, hsla(244, 76%, 58%, 0.1), hsla(207, 100%, 56%, 0.1));
    border-radius: 1.5rem;
    filter: blur(20px);
}

.step-image-inner {
    position: relative;
    background: var(--surface);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    overflow: hidden;
}

    .step-image-inner img {
        border-radius: 0.75rem;
        width: 100%;
    }

/* ===== PROBLEMS SECTION ===== */
    .problems {
    padding: 5rem 0;
    background: var(--surface);
}

.problems-header {
    text-align: center;
    margin-bottom: 4rem;
}

.problems-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .problems-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.problems-list {
    background: linear-gradient(135deg, #fef2f2, #fff1f2);
    border-radius: 1rem;
    padding: 2rem;
}

    .problems-list h3 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
        color: #dc2626;
    }

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

    .problem-item:last-child {
        border-bottom: none;
    }

.problem-icon {
    width: 24px;
    height: 24px;
    background: #fee2e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #dc2626;
}

    .problem-icon svg {
        width: 14px;
        height: 14px;
    }

.solutions-list {
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border-radius: 1rem;
    padding: 2rem;
}

    .solutions-list h3 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
        color: #16a34a;
    }

.solution-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(22, 163, 74, 0.1);
}

    .solution-item:last-child {
        border-bottom: none;
    }

.solution-icon {
    width: 24px;
    height: 24px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #16a34a;
}

    .solution-icon svg {
        width: 14px;
        height: 14px;
    }

.transformation-section {
    margin-bottom: 3rem;
}

.transformation-header {
    text-align: center;
    margin-bottom: 2rem;
}

.transformation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .transformation-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.transformation-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.transformation-before {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    text-decoration: line-through;
    font-size: 0.875rem;
}

.transformation-arrow {
    color: var(--primary);
    flex-shrink: 0;
}

.transformation-after {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--foreground);
    font-weight: 500;
    font-size: 0.875rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: linear-gradient(135deg, hsla(244, 76%, 58%, 0.05), hsla(207, 100%, 56%, 0.05));
    border: 1px solid hsla(244, 76%, 58%, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1rem;
}

    .benefit-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }

.benefit-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.benefit-description {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 5rem 0;
    background: var(--surface-alt);
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border-top: 3px solid var(--segment-primary);
    }

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

    .testimonial-stars svg {
        width: 20px;
        height: 20px;
        color: #fbbf24;
        fill: #fbbf24;
    }

.testimonial-quote {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--surface);
    border-radius: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.social-proof-avatars {
    display: flex;
}

.social-proof-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: 3px solid var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    margin-left: -0.5rem;
}

    .social-proof-avatar:first-child {
        margin-left: 0;
    }

.social-proof-text {
    text-align: center;
}

    .social-proof-text strong {
        color: var(--foreground);
    }

    .social-proof-text span {
        color: var(--muted-foreground);
    }

/* ===== PRICING SECTION ===== */
.pricing {
    padding: 5rem 0;
    background: var(--surface-alt);
    position: relative;
    overflow: hidden;
}

.pricing-bg-decoration {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: linear-gradient(to bottom, hsla(244, 76%, 58%, 0.05), transparent);
    border-radius: 50%;
    filter: blur(60px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.pricing-toggle-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

    .pricing-toggle-label.active {
        color: var(--foreground);
    }

.pricing-toggle-switch {
    position: relative;
    width: 3.5rem;
    height: 2rem;
    background: var(--muted);
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .pricing-toggle-switch.active {
        background: var(--primary);
    }

    .pricing-toggle-switch::after {
        content: '';
        position: absolute;
        top: 4px;
        left: 4px;
        width: 1.5rem;
        height: 1.5rem;
        background: white;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease;
    }

    .pricing-toggle-switch.active::after {
        transform: translateX(1.5rem);
    }

.pricing-discount-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: hsla(145, 100%, 46%, 0.1);
    color: var(--destaque);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 100px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.pricing-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    background: var(--surface);
    padding: 2rem;
    box-shadow: 0 8px 24px -8px hsla(244, 76%, 58%, 0.12);
    border: 1px solid var(--border);
    transition: all 0.5s ease;
}

    .pricing-card:hover {
        box-shadow: 0 16px 48px -16px hsla(244, 76%, 58%, 0.18);
    }

    .pricing-card.popular {
        border: 2px solid var(--primary);
        box-shadow: 0 0 40px hsla(244, 76%, 58%, 0.25);
    }

@media (min-width: 768px) {
    .pricing-card.popular {
        margin-top: -1rem;
        margin-bottom: 1rem;
    }
}

.pricing-popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.pricing-price {
    margin-bottom: 1.5rem;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.pricing-currency {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.pricing-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
}

.pricing-period {
    color: var(--muted-foreground);
}

.pricing-trial {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

.pricing-discount-text {
    font-size: 0.875rem;
    color: var(--destaque);
    font-weight: 500;
    margin-top: 0.25rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
}

.pricing-feature-icon {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .pricing-feature-icon.included {
        background: hsla(244, 76%, 58%, 0.1);
        color: var(--primary);
    }

        .pricing-feature-icon.included.highlight {
            background: hsla(145, 100%, 46%, 0.2);
            color: var(--destaque);
        }

    .pricing-feature-icon.excluded {
        background: var(--muted);
        color: var(--muted-foreground);
    }

    .pricing-feature-icon svg {
        width: 0.75rem;
        height: 0.75rem;
    }

.pricing-feature-text {
    font-size: 0.875rem;
}

    .pricing-feature-text.excluded {
        color: var(--muted-foreground);
        text-decoration: line-through;
    }

    .pricing-feature-text.highlight {
        font-weight: 500;
    }

.pricing-card .btn-hero,
.pricing-card .btn-destaque {
    width: 100%;
    justify-content: center;
}

.pricing-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 1rem;
    position: relative;
    z-index: 10;
}

.pricing-guarantee-icon {
    color: var(--destaque);
}

    .pricing-guarantee-icon svg {
        width: 2rem;
        height: 2rem;
    }

.pricing-guarantee-text {
    text-align: left;
}

    .pricing-guarantee-text strong {
        display: block;
        font-weight: 600;
    }

    .pricing-guarantee-text span {
        font-size: 0.875rem;
        color: var(--muted-foreground);
    }

/* ===== APP SECTION ===== */
.app-section {
    padding: 5rem 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.app-section-glow {
    position: absolute;
    inset: 0;
    opacity: 0.5;
}

    .app-section-glow::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        background: radial-gradient(ellipse at center, hsla(244, 76%, 58%, 0.15) 0%, transparent 70%);
    }

.app-section-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.app-section-circle-1 {
    top: 25%;
    left: 25%;
    width: 16rem;
    height: 16rem;
    background: hsla(244, 76%, 58%, 0.2);
}

.app-section-circle-2 {
    bottom: 25%;
    right: 25%;
    width: 16rem;
    height: 16rem;
    background: hsla(207, 100%, 56%, 0.2);
}

.app-section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .app-section-content {
        flex-direction: row;
        gap: 4rem;
    }
}

.app-section-text {
    flex: 1;
    text-align: center;
}

@media (min-width: 1024px) {
    .app-section-text {
        text-align: left;
    }
}

.app-section-text .badge-hero {
    margin-bottom: 1.5rem;
}

.app-section-text h2 {
    font-size: clamp(1.875rem, 4vw, 3rem);
    color: white;
    margin-bottom: 1.5rem;
}

.app-section-text p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 36rem;
}

.app-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--foreground);
    border-radius: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .app-download-btn:hover {
        background: rgba(255, 255, 255, 0.9);
        transform: translateY(-2px);
    }

    .app-download-btn svg {
        width: 1.5rem;
        height: 1.5rem;
    }

.app-download-info {
    text-align: left;
}

    .app-download-info span {
        display: block;
        font-size: 0.75rem;
        color: var(--muted-foreground);
    }

    .app-download-info strong {
        font-weight: 700;
    }

.app-mockup {
    flex: 1;
    display: flex;
    justify-content: center;
}

.app-mockup-wrapper {
    position: relative;
}

.app-mockup-glow {
    position: absolute;
    inset: -2rem;
    background: linear-gradient(to right, hsla(244, 76%, 58%, 0.3), hsla(207, 100%, 56%, 0.3), hsla(145, 100%, 46%, 0.3));
    border-radius: 60px;
    filter: blur(60px);
}

.app-mockup-phone {
    position: relative;
    width: 18rem;
    height: 36rem;
    border-radius: 50px;
    background: linear-gradient(to bottom, #374151, #1f2937);
    padding: 0.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.app-mockup-notch {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    height: 1.5rem;
    background: black;
    border-radius: 100px;
    z-index: 20;
}

.app-mockup-screen {
    width: 100%;
    height: 100%;
    border-radius: 42px;
    overflow: hidden;
    background: white;
}

    .app-mockup-screen img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.app-floating-badge {
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 1rem;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
}

    .app-floating-badge.top-left {
        top: 25%;
        left: -4rem;
        animation: float 4s ease-in-out infinite;
    }

    .app-floating-badge.bottom-right {
        bottom: 33%;
        right: -3rem;
        color: var(--destaque);
        font-weight: 700;
        animation: float 4s ease-in-out infinite 1s;
    }

/* ===== FAQ SECTION ===== */
.faq {
    padding: 5rem 0;
    background: var(--surface);
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.faq-item {
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .faq-item:hover {
        border-color: var(--primary);
    }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .faq-question:hover {
        color: var(--primary);
    }

    .faq-question svg {
        width: 20px;
        height: 20px;
        color: var(--primary);
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    /*max-height: 0;*/
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.faq-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem;
    background: var(--surface-alt);
    border-radius: 1rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

    .faq-cta h3 {
        font-size: 1.5rem;
    }

    .faq-cta p {
        color: var(--muted-foreground);
    }

.faq-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ===== FOOTER CTA ===== */
.footer-cta {
    padding: 5rem 0;
    background: var(--gradient-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
}

.footer-cta-content {
    position: relative;
    z-index: 10;
}

.footer-cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: white;
    margin-bottom: 1rem;
}

.footer-cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.footer-cta .btn-white {
    background: white;
    color: var(--primary);
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

    .footer-cta .btn-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

.footer-cta .btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

    .footer-cta .btn-outline-white:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
    }

/* ===== FOOTER ===== */
.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

    .footer-logo img {
        height: 40px;
    }

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

    .footer-contact a:hover {
        color: var(--secondary);
    }

.footer-contact svg {
    width: 18px;
    height: 18px;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: white;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.375rem 0;
    transition: color 0.3s ease;
}

    .footer-links a:hover {
        color: var(--secondary);
    }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-heart {
    color: #ef4444;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 20px hsla(244, 76%, 58%, 0.4);
}

    .scroll-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .scroll-top:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 30px hsla(244, 76%, 58%, 0.5);
    }

    .scroll-top svg {
        width: 24px;
        height: 24px;
    }


.differentials {
    background: var(--gradient-hero);
    color: var(--segment-contrast);
}