﻿
@font-face {
    font-family: Poppins-Bold;
    src: url('../fonts/Poppins-Bold.ttf');
}

@font-face {
    font-family: Poppins-Light;
    src: url('../fonts/Poppins-Light.ttf');
}

@font-face {
    font-family: Poppins-SemiBold;
    src: url('../fonts/Poppins-SemiBold.ttf');
}

/* ========== CSS RESET & BASE ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Core Colors */
    --background: hsl(210, 20%, 98%);
    --foreground: hsl(220, 25%, 10%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(220, 25%, 10%);
    --primary: hsl(215, 90%, 32%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(210, 25%, 95%);
    --secondary-foreground: hsl(220, 25%, 20%);
    --muted: hsl(210, 20%, 94%);
    --muted-foreground: hsl(220, 15%, 45%);
    --accent: hsl(25, 95%, 53%);
    --accent-foreground: hsl(0, 0%, 100%);
    --success: #20c997;
    --success-foreground: hsl(0, 0%, 100%);
    --destructive: hsl(0, 84%, 60%);
    --border: hsl(210, 25%, 88%);
    --input: hsl(210, 25%, 88%);
    --ring: hsl(215, 90%, 32%);
    --radius: 0.75rem;
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, hsl(215, 90%, 32%) 0%, hsl(200, 85%, 40%) 100%);
    --gradient-cta: linear-gradient(135deg, hsl(25, 95%, 53%) 0%, hsl(15, 90%, 48%) 100%);
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 hsl(220, 25%, 10%, 0.05);
    --shadow-md: 0 4px 6px -1px hsl(220, 25%, 10%, 0.08), 0 2px 4px -2px hsl(220, 25%, 10%, 0.05);
    --shadow-lg: 0 10px 25px -5px hsl(220, 25%, 10%, 0.1), 0 8px 10px -6px hsl(220, 25%, 10%, 0.05);
    --shadow-xl: 0 20px 40px -10px hsl(220, 25%, 10%, 0.15);
    --shadow-glow: 0 0 30px hsl(25, 95%, 53%, 0.3);
}


body {
    --segment-destaque: #00ed3b;
    --segment-primary: #4f46e5;
    --segment-primary-dark: #3730a3;
    --segment-secondary: #1e90ff;
    --segment-contrast: #ffffff;
    --segment-hover: rgba(30, 144, 255, 0.14);
    --segment-outline: rgba(79, 70, 229, 0.28);
    --segment-focus-strong: rgba(79, 70, 229, 0.5);
    --segment-navbar-bg: #ffffff;
    --segment-navbar-text: #18191a;
    --segment-navbar-accent: #4f46e5;
    --segment-body-bg: #ffffff;
    --segment-surface: #ffffff;
    --segment-surface-alt: #f5f5fb;
    --segment-sidebar-hover: rgba(79, 70, 229, 0.08);
    --segment-sidebar-border: rgba(79, 70, 229, 0.12);
    --segment-footer-bg: #18191a;
    --segment-footer-text: #f9fafb;
    --segment-footer-link: #1e90ff;
    --segment-focus: #4f46e544;
    color: #18191a;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    border: none;
}

ul {
    list-style: none;
}

/* ========== UTILITIES ========== */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-padding {
    padding: 5rem 1rem;
}

@media (min-width: 640px) {
    .section-padding {
        padding: 4rem 1.5rem;
    }
}

.text-balance {
    text-wrap: balance;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ========== TYPOGRAPHY ========== */
.heading-hero {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .heading-hero {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .heading-hero {
        font-size: 3rem;
    }
}

.heading-section {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .heading-section {
        font-size: 1.875rem;
    }
}

.gradient-text {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== COMPONENTS ========== */
.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 9999px;
    background-color: var(--secondary);
    color: var(--secondary-foreground);
}

@media (min-width: 640px) {
    .chip {
        font-size: 0.875rem;
    }
}

.chip-primary {
    background-color: hsl(215, 90%, 32%, 0.1);
    color: var(--segment-primary);
}

.chip-success {
    background-color: hsl(160, 70%, 40%, 0.1);
    color: var(--success);
}

.card {
    background-color: var(--card);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow-md);
}

@media (min-width: 640px) {
    .card {
        padding: 1.5rem;
    }
}

.card-interactive {
    transition: all 0.3s ease;
}

    .card-interactive:hover {
        transform: scale(1.02);
        box-shadow: var(--shadow-lg);
    }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    min-height: 52px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--segment-primary);
    color: var(--segment-contrast);
    box-shadow: var(--shadow-md);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-glow);
    }

.btn-secondary {
    background-color: var(--card);
    color: var(--foreground);
    border: 2px solid var(--border);
}

    .btn-secondary:hover {
        border-color: var(--primary);
        background-color: hsl(215, 90%, 32%, 0.05);
    }

.btn-whatsapp {
    background-color: hsl(142, 70%, 45%);
    color: white;
}

    .btn-whatsapp:hover {
        background-color: hsl(142, 70%, 40%);
        transform: translateY(-1px);
    }

.icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.icon-sm {
    width: 1rem;
    height: 1rem;
}

.icon-lg {
    width: 1.5rem;
    height: 1.5rem;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.5s ease-out forwards;
}

.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.stagger-4 {
    animation-delay: 0.4s;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background-color: hsl(210, 20%, 98%, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 3.5rem;
}

@media (min-width: 640px) {
    .header-inner {
        height: 4rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    font-weight: 700;
    font-size: 1.125rem;
}

.logo-text {
    font-weight: 700;
    font-size: 1.125rem;
}

    .logo-text span {
        color: var(--primary);
    }

.nav-desktop {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color 0.2s;
}

    .nav-link:hover {
        color: var(--foreground);
    }

.header-cta {
    display: none;
}

@media (min-width: 1024px) {
    .header-cta {
        display: flex;
    }
}

.menu-toggle {
    display: flex;
    padding: 0.5rem;
    margin-right: -0.5rem;
    background: none;
    color: var(--foreground);
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

.mobile-menu {
    display: none;
    background-color: var(--background);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
}

    .mobile-menu.active {
        display: block;
    }

@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--foreground);
    border-radius: 0.5rem;
    transition: background-color 0.2s;
}

    .mobile-nav-link:hover {
        background-color: var(--secondary);
    }

/* ========== HERO ========== */
.hero {
    position: relative;
    padding-top: 5rem;
    padding-bottom: 3rem;
    overflow: hidden;
}

@media (min-width: 640px) {
    .hero {
        padding-top: 6rem;
        padding-bottom: 4rem;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding-top: 7rem;
        padding-bottom: 5rem;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, hsl(215, 90%, 32%, 0.05), var(--background), var(--background));
}

.hero-blob-1 {
    position: absolute;
    top: 5rem;
    right: 0;
    width: 18rem;
    height: 18rem;
    background-color: hsl(215, 90%, 32%, 0.1);
    border-radius: 50%;
    filter: blur(48px);
}

.hero-blob-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background-color: hsl(25, 95%, 53%, 0.05);
    border-radius: 50%;
    filter: blur(48px);
}

.hero-content {
    position: relative;
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .hero h1 {
        margin-bottom: 1.5rem;
    }
}

.hero-subheadline {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .hero-subheadline {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .hero-subheadline {
        font-size: 1.25rem;
    }
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-chips {
        gap: 0.75rem;
    }
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-ctas {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
}

.hero-ctas .btn {
    width: 100%;
}

@media (min-width: 640px) {
    .hero-ctas .btn {
        width: auto;
    }
}

.hero-social-proof {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

@media (min-width: 640px) {
    .hero-social-proof {
        gap: 1.5rem;
    }
}

.hero-social-proof strong {
    color: var(--foreground);
}

.hero-divider {
    display: none;
    width: 1px;
    height: 1rem;
    background-color: var(--border);
}

@media (min-width: 640px) {
    .hero-divider {
        display: block;
    }
}

.hero-mockup {
    margin-top: 2.5rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .hero-mockup {
        margin-top: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-mockup {
        margin-top: 4rem;
    }
}

.hero-mockup-inner {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

@media (min-width: 640px) {
    .hero-mockup-inner {
        border-radius: 1rem;
    }
}

.mockup-placeholder {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, hsl(215, 90%, 32%, 0.1), var(--card), hsl(25, 95%, 53%, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

@media (min-width: 640px) {
    .mockup-placeholder {
        aspect-ratio: 16 / 9;
    }
}

.mockup-placeholder-content {
    text-align: center;
}

.mockup-icon-wrapper {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 1rem;
    background-color: hsl(215, 90%, 32%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .mockup-icon-wrapper i {
        width: 2rem;
        height: 2rem;
        color: var(--primary);
    }

/* ========== PAIN SOLUTION ========== */
.pain-solution {
    background-color: var(--card);
}

.pain-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .pain-cards {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 3rem;
    }
}

.pain-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-left: 4px solid hsl(0, 84%, 60%, 0.5);
    transition: border-color 0.2s;
}

    .pain-card:hover {
        border-left-color: var(--destructive);
    }

.pain-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background-color: hsl(0, 84%, 60%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .pain-icon i {
        width: 1.25rem;
        height: 1.25rem;
        color: var(--destructive);
    }

.pain-card p {
    font-weight: 500;
    line-height: 1.5;
}

.solution-card {
    position: relative;
    background: linear-gradient(135deg, hsl(160, 70%, 40%, 0.05), var(--card));
    border: 1px solid hsl(160, 70%, 40%, 0.2);
}

.solution-card-nobefore {
    position: relative;
    background: linear-gradient(135deg, hsl(160, 70%, 40%, 0.05), var(--card));
    border: 1px solid hsl(160, 70%, 40%, 0.2);
}

    .solution-card::before {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: -1rem;
        width: 1px;
        height: 2rem;
        background: linear-gradient(to bottom, transparent, var(--success));
    }

.solution-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.solution-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background-color: hsl(160, 70%, 40%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .solution-icon i {
        width: 1.5rem;
        height: 1.5rem;
        color: var(--success);
    }

.solution-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.solution-header p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.solution-header strong {
    color: var(--foreground);
}

/* ========== HOW IT WORKS ========== */
.how-it-works .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .how-it-works .section-header {
        margin-bottom: 3.5rem;
    }
}

.section-header p {
    color: var(--muted-foreground);
    max-width: 36rem;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.step-card {
    height: 100%;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.step-icon-wrapper {
    position: relative;
}

.step-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background-color: hsl(215, 90%, 32%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .step-icon i {
        width: 1.75rem;
        height: 1.75rem;
        color: var(--primary);
    }

.step-number {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: var(--success);
    color: var(--accent-foreground);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

.step-card > p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-bullets {
    margin-bottom: 1rem;
}

    .step-bullets li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

        .step-bullets li::before {
            content: '';
            width: 0.375rem;
            height: 0.375rem;
            border-radius: 50%;
            background-color: var(--primary);
        }

.step-mockup {
    border-radius: 0.5rem;
    background-color: hsl(210, 25%, 95%, 0.5);
    padding: 1rem;
    text-align: center;
}

    .step-mockup p {
        font-size: 0.75rem;
        color: var(--muted-foreground);
    }

/* ========== BENEFITS ========== */
.benefits {
    background-color: var(--card);
}

    .benefits .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }

.tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.tabs {
    display: inline-flex;
    background-color: var(--secondary);
    border-radius: 0.75rem;
    padding: 0.375rem;
    gap: 0.25rem;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    background: none;
    color: var(--muted-foreground);
    transition: all 0.2s;
}

@media (min-width: 640px) {
    .tab-btn {
        padding: 0.625rem 1.5rem;
    }
}

.tab-btn:hover {
    color: var(--foreground);
}

.tab-btn.active {
    background-color: var(--segment-primary);
    color: var(--segment-contrast);
    box-shadow: var(--shadow-sm);
}

.tab-btn span {
    display: none;
}

@media (min-width: 640px) {
    .tab-btn span {
        display: inline;
    }
}

.tab-content {
    max-width: 40rem;
    margin: 0 auto;
}

.tab-panel {
    display: none;
}

    .tab-panel.active {
        display: block;
        animation: fadeIn 0.3s ease-out;
    }

.benefit-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background-color: hsl(215, 90%, 32%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .benefit-icon i {
        width: 1.75rem;
        height: 1.75rem;
        color: var(--primary);
    }

.benefit-card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.benefit-list {
    margin-bottom: 1.5rem;
}

    .benefit-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

        .benefit-list li i {
            width: 1.25rem;
            height: 1.25rem;
            color: var(--success);
            flex-shrink: 0;
            margin-top: 0.125rem;
        }

.benefit-microcopy {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    background-color: hsl(210, 25%, 95%, 0.5);
    border-radius: 0.5rem;
    padding: 0.75rem;
}

/* ========== TESTIMONIALS ========== */
.testimonials .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.google-play-pnl {
    padding: 1rem;
}

@media (min-width: 640px) {
    .testimonials .section-header {
        margin-bottom: 3.5rem;
    }
}

.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 {
    height: 100%;
}

.testimonial-quote {
    color: hsl(215, 90%, 32%, 0.2);
    margin-bottom: 1rem;
}

    .testimonial-quote i {
        width: 2rem;
        height: 2rem;
    }

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

    .testimonial-stars i {
        width: 1rem;
        height: 1rem;
        color: var(--accent);
        fill: var(--accent);
    }

.testimonial-text {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

    .testimonial-author strong {
        display: block;
        margin-bottom: 0.125rem;
    }

    .testimonial-author span {
        font-size: 0.875rem;
        color: var(--muted-foreground);
        display: block;
    }

.before-after {
    background: linear-gradient(135deg, hsl(215, 90%, 32%, 0.05), var(--card));
}

    .before-after h3 {
        text-align: center;
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
    }

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .before-after-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.before-after-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    text-align: center;
}

    .before-after-item .before {
        font-size: 0.875rem;
        color: var(--muted-foreground);
        text-decoration: line-through;
    }

    .before-after-item i {
        width: 1rem;
        height: 1rem;
        color: var(--success);
        flex-shrink: 0;
    }

    .before-after-item .after {
        font-size: 0.875rem;
        font-weight: 500;
        /*color: var(--success);*/
        color: var(--segment-primary);
    }

/* ========== DIFFERENTIALS ========== */
.differentials {
    background-color: var(--segment-primary);
    color: var(--segment-contrast);
}

    .differentials .section-header {
        text-align: center;
        margin-bottom: 2.5rem;
    }

        .differentials .section-header h2 {
            margin-bottom: 1rem;
        }

        .differentials .section-header p {
            color: hsl(0, 0%, 100%, 0.8);
        }

.differentials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.differential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: hsl(0, 0%, 100%, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 1rem;
}

.differential-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background-color: hsl(0, 0%, 100%, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .differential-icon i {
        width: 1.25rem;
        height: 1.25rem;
    }

.differential-item span {
    font-weight: 500;
}

/* ========== PRICING ========== */
.pricing .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .pricing .section-header {
        margin-bottom: 3.5rem;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.pricing-card {
    position: relative;
}

    .pricing-card.highlighted {
        outline: 2px solid var(--accent);
        box-shadow: var(--shadow-lg);
        transform: scale(1.02);
    }

.pricing-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    background-color: var(--accent);
    color: var(--accent-foreground);
}

    .pricing-badge i {
        width: 0.75rem;
        height: 0.75rem;
    }

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

    .pricing-header h3 {
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 0.25rem;
    }

    .pricing-header .description {
        font-size: 0.875rem;
        color: var(--muted-foreground);
        margin-bottom: 1rem;
    }

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

    .pricing-price .amount {
        font-size: 2rem;
        font-weight: 700;
    }

@media (min-width: 640px) {
    .pricing-price .amount {
        font-size: 2.25rem;
    }
}

.pricing-price .period {
    color: var(--muted-foreground);
}

.pricing-users {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    margin-top: 0.5rem;
}

.pricing-features {
    margin-bottom: 1.5rem;
}

    .pricing-features li {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

        .pricing-features li i {
            width: 1.25rem;
            height: 1.25rem;
            color: var(--success);
            flex-shrink: 0;
            margin-top: 0.125rem;
        }

.pricing-card .btn {
    width: 100%;
}

.pricing-guarantee {
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ========== LEAD FORM ========== */
.lead-form {
    background-color: var(--card);
}

    .lead-form .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }

.form-container {
    max-width: 32rem;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.25rem;
}

    .form-group label {
        display: block;
        font-size: 0.875rem;
        font-weight: 500;
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 0.75rem 1rem;
        border-radius: 0.75rem;
        background-color: var(--background);
        border: 1px solid var(--input);
        color: var(--foreground);
        font-size: 1rem;
        transition: border-color 0.2s, box-shadow 0.2s;
    }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px hsl(215, 90%, 32%, 0.1);
        }

        .form-group input::placeholder {
            color: var(--muted-foreground);
        }

.form-submit {
    margin-top: 1.5rem;
}

    .form-submit .btn {
        width: 100%;
    }

.form-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 1rem;
}

    .form-disclaimer a {
        text-decoration: underline;
    }

        .form-disclaimer a:hover {
            color: var(--foreground);
        }

.form-success {
    text-align: center;
    padding: 2rem;
}

.form-success-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background-color: hsl(160, 70%, 40%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .form-success-icon i {
        width: 2rem;
        height: 2rem;
        color: var(--success);
    }

.form-success h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--muted-foreground);
}

/* ========== FAQ ========== */
.faq .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-container {
    max-width: 40rem;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    cursor: pointer;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    background: none;
    text-align: left;
    font-weight: 500;
}

    .faq-question i {
        width: 1.25rem;
        height: 1.25rem;
        color: var(--muted-foreground);
        flex-shrink: 0;
        transition: transform 0.2s;
    }

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    margin-top: 1rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.faq-item.open .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

/* ========== FOOTER ========== */
.footer {
    background-color: var(--foreground);
    color: var(--background);
    padding: 2.5rem 1rem;
}

@media (min-width: 640px) {
    .footer {
        padding: 3rem 1.5rem;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand p {
    color: hsl(0, 0%, 100%, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.footer-links h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    transition: color 0.2s;
    color: var(--background);
}

    .footer-links a:hover {
        color: var(--segment-primary, #000) !important;
    }

    .footer-links a i {
        width: 1rem;
        height: 1rem;
        vertical-align: middle;
        margin-right: 0.5rem;
    }

.footer-bottom {
    border-top: 1px solid hsl(0, 0%, 100%, 0.1);
    padding-top: 2rem;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    /*color: hsl(0, 0%, 100%, 0.6);*/
}

    .footer-badge i {
        width: 1rem;
        height: 1rem;
    }

.footer-copyright {
    text-align: center;
    font-size: 0.875rem;
    color: hsl(0, 0%, 100%, 0.5);
}

/* Spacer for sticky footer on mobile */
.footer-spacer {
    height: 5rem;
}

@media (min-width: 1024px) {
    .footer-spacer {
        display: none;
    }
}

/* ========== STICKY FOOTER CTA ========== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: hsl(0, 0%, 100%, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    padding: 0.75rem;
}

@media (min-width: 640px) {
    .sticky-cta {
        padding: 1rem;
    }
}

@media (min-width: 1024px) {
    .sticky-cta {
        display: none;
    }
}

.sticky-cta-inner {
    display: flex;
    gap: 0.5rem;
    max-width: 32rem;
    margin: 0 auto;
}

.sticky-cta .btn-primary {
    flex: 1;
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
}

@media (min-width: 640px) {
    .sticky-cta .btn-primary {
        font-size: 1rem;
    }
}

.sticky-cta .btn-whatsapp {
    padding: 0.75rem 1rem;
}

    .sticky-cta .btn-whatsapp span {
        display: none;
    }

@media (min-width: 640px) {
    .sticky-cta .btn-whatsapp span {
        display: inline;
    }
}


.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

.text-success {
    color: #20c997;
}

.rounded-full.bg-primary{
    background-color: var(--segment-focus);
}


.lucide.lucide-star {
    fill: #fea443;
    color: #fea443;
}


.d-none{
    display: none !important;
}


.faq-item.open svg {
    transform: rotate(180deg);
}

.faq-item svg {
    transition: transform 0.3s ease;
}

.form-success-icon svg path {
    color: #20c997;
}


.benefit-list svg path {
    color: #20c997;
}