* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --color-brand-blue: #1e293b;
        --color-brand-orange: #EA580C;
        --color-brand-bg: #FFF8F0;
        --primary: #EA580C;
        --primary-light: #F97316;
        --primary-dark: #C2410C;
        --secondary: #1e293b;
        --accent: #EA580C;
        --accent-light: #FB923C;
        --bg: #FFFBF5;
        --bg-light: #FFF8F0;
        --bg-page: #F4F6FB;
        --bg-page-light: #F9FAFB;
        --text-dark: #18181B;
        --text-muted: #52525B;
        --text-light: #A1A1AA;
        --border: #F3E8DE;
        --white: #ffffff;
    }

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        background-color: var(--bg);
        color: var(--text-dark);
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 700;
        letter-spacing: -0.02em;
    }

    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    @media (min-width: 768px) {
        .container {
            padding: 0 1.5rem;
        }
    }

    @media (min-width: 1024px) {
        .container {
            padding: 0 2rem;
        }
    }

    /* Header */
    header#header{
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 50;
        transition: all 0.3s ease;
        padding: 1.5rem 0;
        background: rgba(255, 255, 255, 0.7);
    }

    header.scrolled {
        background: rgba(255, 252, 247, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
    }

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-size: 2.4rem;
        font-weight: 700;
        font-family: 'Space Grotesk', sans-serif;
        letter-spacing: -0.02em;
        color: var(--secondary);
    }

    .logo span {
        color: var(--accent);
    }

    nav {
        display: block;
        gap: 2rem;
        align-items: center;
    }

    @media (min-width: 768px) {
        nav {
            display: flex;
        }
    }

    @media (max-width: 767px) {
        .header-content nav {
            display: none;
        }
    }

    /* Nav do header */
    .header-content nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 24px;
    }

    .header-content nav li {
        margin: 0;
        padding: 0;
    }

    .header-content nav a {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
    }

    .header-content nav ul li a {
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--text-muted);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .header-content nav ul li a:hover {
        color: var(--accent);
    }

    .header-actions {
        display: none;
        gap: 1rem;
        align-items: center;
    }

    @media (min-width: 768px) {
        .header-actions {
            display: flex;
        }
    }

    .btn {
        padding: 0.75rem 1.5rem;
        border-radius: 0.5rem;
        font-weight: 600;
        font-size: 0.875rem;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-family: 'Inter', sans-serif;
    }

    .btn-primary {
        border-radius: 9999px;
        background-color: var(--primary);
        color: var(--white);
    }

    .btn-primary:hover {
        background-color: var(--primary-light);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
    }

    .btn-accent {
        background-color: var(--accent);
        color: var(--white);
    }

    .btn-accent:hover {
        background-color: var(--accent-light);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
    }

    .btn-rounded {
        border-radius: 9999px;
        padding: 0.875rem 2rem;
        height: 3.5rem;
        font-size: 1rem;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2.5rem;
        height: 2.5rem;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--primary);
        font-size: 1.5rem;
    }

    @media (min-width: 768px) {
        .mobile-menu-btn {
            display: none;
        }
    }

    /* =============================================
       HERO SECTION
       ============================================= */

    .hero {
        margin-top: 6rem;
        padding: 2rem 0 3rem;
    }

    @media (min-width: 768px) {
        .hero {
            margin-top: 6rem;
            padding: 3rem 0 5rem;
        }
    }

    @media (min-width: 1024px) {
        .hero {
            margin-top: 4rem;
            padding: 4rem 0 5rem;
        }
    }

    .hero-bg {
        position: absolute;
        inset: 0;
        z-index: -1;
        background-image: linear-gradient(to right, rgba(128, 128, 128, 0.07) 1px, transparent 1px),
                          linear-gradient(to bottom, rgba(128, 128, 128, 0.07) 1px, transparent 1px);
        background-size: 24px 24px;
    }

    .hero-blur {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        margin: auto;
        width: 310px;
        height: 310px;
        border-radius: 50%;
        background: rgba(234, 88, 12, 0.05);
        filter: blur(100px);
        z-index: -1;
        opacity: 0.2;
    }

    .hero-grid {
        display: grid;
        gap: 2.5rem;
        align-items: center;
    }

    @media (min-width: 1024px) {
        .hero-grid {
            grid-template-columns: 1.1fr 0.9fr;
            gap: 2rem;
        }
    }

    .hero-text {
        order: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
    }

    @keyframes pulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.5; }
    }

    .headline {
        font-size: clamp(2rem, 5vw, 3.5rem);
        font-weight: 700;
        line-height: 1.15;
        color: var(--secondary);
    }

    .headline .accent {
        color: var(--accent);
        position: relative;
        display: inline-block;
    }

    .rotator-line {
        font-size: clamp(2rem, 5vw, 3.5rem);
        font-weight: 900;
        font-family: 'Space Grotesk', sans-serif;
        position: relative;
        height: 1.2em;
        overflow: hidden;
        margin: 0.5rem 0;
        text-transform: uppercase;
        letter-spacing: -0.02em;
    }

    .rotator-line span {
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .rotator-line span.active {
        opacity: 1;
        transform: translateY(0);
        position: relative;
    }

    .subtitle {
        font-size: 1.1rem;
        color: var(--text-muted);
        font-weight: 400;
        max-width: 600px;
    }

    .signature {
        list-style: none;
        font-size: 0.875rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--text-dark);
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        margin-top: 1rem;
    }

    .signature-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .signature-item::before {
        content: '✓';
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 1rem;
        height: 1rem;
        border-radius: 50%;
        background: var(--primary);
        color: var(--white);
        font-size: 0.625rem;
        font-weight: bold;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    @media (min-width: 640px) {
        .hero-buttons {
            flex-direction: row;
        }
    }

    @media (max-width: 640px) {
        .hero-buttons .btn {
            width: 100%;
            justify-content: center;
        }
    }

    /* Coluna direita — figura */
    .hero-image {
        /* margin-top: -220px; */
        order: 2;
        position: relative;
        overflow: visible;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-bottom: 2rem;
    }

    @media (min-width: 1024px) {
        .hero-image {
            margin-top: -120px;
            padding-left: 1.5rem;
        }
    }

    /* Wrapper do vídeo */
    .hero-image-wrapper {
        position: relative;
        width: 100%;
        aspect-ratio: unset;
        max-width: unset;
        border-radius: 1rem;
        background: linear-gradient(to bottom right, var(--white), #f3f4f6);
        padding: 0.5rem;
        box-shadow: 0 20px 40px rgba(234, 88, 12, 0.18);
        border: 1px solid rgba(255, 255, 255, 0.5);
    }

    /* Mobile: vídeo horizontal (16:9) — regra BASE, vem primeiro */
    .hero-video {
        position: relative;
        width: 100%;
        height: 0;
        padding-top: 56.25%;       /* 16:9 — deitado no mobile */
        border-radius: 0.75rem;
        overflow: hidden;
    }

    .hero-video iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border-radius: 0.75rem;
        border: none;
    }

    /* Desktop: sobrescreve para vertical (9:16) — vem DEPOIS da regra base */
    @media (min-width: 1024px) {
        .hero-image-wrapper {
            max-width: 330px;
            margin: 0 auto;
            margin-top: -100px;
        }

        .hero-video {
            padding-top: 177.78%;  /* 9:16 — vertical no desktop */
        }
    }

    .hero-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0.75rem;
    }

    @keyframes float-up {
        from { opacity: 0; transform: translateY(20px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    .hero-blur-bottom {
        position: absolute;
        z-index: -1;
        border-radius: 50%;
        filter: blur(120px);
    }

    .hero-blur-accent {
        bottom: -3rem;
        right: -3rem;
        width: 16rem;
        height: 16rem;
        background: rgba(208, 94, 38, 0.1);
    }

    .hero-blur-primary {
        bottom: -3rem;
        left: -3rem;
        width: 16rem;
        height: 16rem;
        background: rgba(234, 88, 12, 0.1);
    }

    /* Mascote — canto inferior esquerdo em todos os tamanhos */
    .mascote-container {
        position: absolute;
        pointer-events: none;
        z-index: 10;
        filter: drop-shadow(0 12px 22px rgba(234, 88, 12, 0.28));

        bottom: 2rem;
        left: calc(50% - 165px - clamp(65px, 14vw, 110px));
        /* left: -1rem;  */
        width: clamp(65px, 14vw, 110px);
    }

    /* Mobile: mantém inferior esquerdo, mas menor e sem sair da tela */
    @media (max-width: 1023px) {
        .mascote-container {
            bottom: -0.5rem;
            left: 0;
            width: clamp(65px, 14vw, 100px);
        }
    }

    /* =============================================
       BENEFITS SECTION
       ============================================= */

    .benefits {
        padding: 6rem 0;
        background: var(--white);
    }

    .section-header {
        text-align: center;
        max-width: 48rem;
        margin: 0 auto 4rem;
    }

    .section-header h2 {
        font-size: clamp(1.375rem, 5vw, 2.6rem);
        margin-bottom: 1rem;
        color: var(--secondary);
    }

    .section-header h3 {
        font-size: clamp(1.25rem, 3vw, 1.75rem);
        margin-bottom: 0.75rem;
        color: var(--secondary);
    }

    .section-header .section-tagline {
        font-size: clamp(1.25rem, 3vw, 1.75rem);
        margin-bottom: 0.75rem;
        color: var(--secondary);
        font-weight: 600;
    }

    .benefits-footer-text {
        text-align: center;
        margin-top: 3.5rem;
        line-height: 1.7;
    }

    .benefits-footer-text p {
        font-size: 1.125rem;
        color: var(--text-muted);
        line-height: 1.8;
    }

    .section-header p {
        font-size: 1.125rem;
        color: var(--text-muted);
        line-height: 1.8;
    }

    .benefits-grid {
        list-style: none;
        display: grid;
        gap: 2rem;
        grid-template-columns: 1fr;
    }

    @media (min-width: 768px) {
        .benefits-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    .benefit-card {
        background: #f9fafb;
        border: 1px solid var(--border);
        border-radius: 0.75rem;
        padding: 2rem;
        transition: all 0.3s ease;
    }

    .benefit-card:hover {
        border-color: rgba(234, 88, 12, 0.2);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        transform: translateY(-4px);
    }

    .benefit-icon {
        width: 3rem;
        height: 3rem;
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }

    .benefit-icon.blue {
        background: #dbeafe;
        color: #1e40af;
    }

    .benefit-icon.indigo {
        background: #e0e7ff;
        color: #3730a3;
    }

    .benefit-icon.orange {
        background: #fed7aa;
        color: #c2410c;
    }

    .benefit-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        color: var(--primary);
    }

    .benefit-card p {
        color: var(--text-muted);
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* =============================================
       FUNCIONALIDADES SECTION
       ============================================= */

    .funcionalidades {
        padding: 6rem 0;
        background: #f9fafb;
    }

    .funcionalidades-list {
        display: grid;
        gap: 3rem;
    }

    .funcionalidade-item {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 0.75rem;
        padding: 2rem;
        transition: all 0.3s ease;
    }

    .funcionalidade-item:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .funcionalidade-item h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
        color: var(--primary);
    }

    .funcionalidade-item p {
        color: var(--text-muted);
        margin-bottom: 1rem;
        line-height: 1.7;
    }

    .funcionalidade-exemplo {
        background: #f9fafb;
        border-left: 3px solid var(--accent);
        padding: 1rem;
        margin: 1rem 0;
        border-radius: 0.25rem;
        font-size: 0.95rem;
        color: var(--text-dark);
        font-style: italic;
    }

    .funcionalidade-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--accent);
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .funcionalidade-link:hover {
        gap: 0.75rem;
    }

    /* =============================================
       SEGMENTOS SECTION
       ============================================= */

    .segmentos {
        padding: 6rem 0;
        background: var(--white);
    }

    .segmentos-grid {
        list-style: none;
        display: grid;
        gap: 2rem;
        grid-template-columns: 1fr;
    }

    @media (min-width: 768px) {
        .segmentos-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .segmento-card {
        background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
        border: 1px solid var(--border);
        border-radius: 0.75rem;
        padding: 2rem;
        transition: all 0.3s ease;
    }

    .segmento-card:hover {
        border-color: var(--accent);
        box-shadow: 0 8px 20px rgba(208, 94, 38, 0.1);
        transform: translateY(-4px);
    }

    .segmento-card h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
        color: var(--primary);
    }

    .segmento-card p {
        color: var(--text-muted);
        margin-bottom: 1rem;
        line-height: 1.7;
    }

    /* =============================================
       CTA SECTION
       ============================================= */

    .cta-section {
        padding: 6rem 0;
        background: var(--white);
        position: relative;
        overflow: hidden;
    }

    .cta-box {
        position: relative;
        border-radius: 2rem;
        background: var(--secondary);
        padding: 4rem 1.5rem;
        text-align: center;
        box-shadow: 0 20px 40px rgba(234, 88, 12, 0.2);
        overflow: hidden;
    }

    @media (min-width: 768px) {
        .cta-box {
            padding: 6rem 4rem;
        }
    }

    .cta-pattern {
        position: absolute;
        inset: 0;
        opacity: 0.1;
        background-image: radial-gradient(#fff 1px, transparent 1px);
        background-size: 16px 16px;
        z-index: 0;
    }

    .cta-content {
        position: relative;
        z-index: 10;
        max-width: 48rem;
        margin: 0 auto;
    }

    .cta-content h2 {
        font-size: clamp(1.875rem, 5vw, 3rem);
        color: var(--white);
        margin-bottom: 1.5rem;
    }

    .cta-content p {
        font-size: 1.125rem;
        color: #dbeafe;
        margin-bottom: 2rem;
        line-height: 1.8;
        max-width: 32rem;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-content .btn {
        margin: 0 auto 1rem;
    }

    .cta-subtext {
        font-size: 0.875rem;
        color: rgba(219, 234, 254, 0.6);
        margin-top: 1rem;
    }

    /* =============================================
       FOOTER
       ============================================= */

    footer {
        background: #f9fafb;
        border-top: 1px solid var(--border);
        padding: 4rem 0 2rem;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
    }

    @media (min-width: 768px) {
        .footer-grid {
            grid-template-columns: 2fr 1fr 1fr;
        }
    }

    @media (min-width: 1024px) {
        .footer-grid {
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 2rem;
        }
    }

    .footer-section {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-section h3 {
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 1rem;
        font-size: 0.95rem;
    }

    .footer-section ul {
        list-style: none;
    }

    .footer-section li {
        margin-bottom: 0.75rem;
    }

    .footer-section a {
        color: var(--text-muted);
        text-decoration: none;
        font-size: 0.875rem;
        transition: color 0.3s ease;
    }

    .footer-section a:hover {
        color: var(--primary);
    }

    .footer-bottom {
        border-top: 1px solid var(--border);
        padding-top: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    @media (min-width: 768px) {
        .footer-bottom {
            flex-direction: row;
            text-align: left;
        }
    }

    .footer-text {
        font-size: 0.875rem;
        color: var(--text-muted);
    }

    .footer-socials {
        display: flex;
        gap: 12px;
        align-items: center;
    }

    @media (min-width: 768px) {
        .footer-bottom {
            position: relative;
        }

        .footer-socials {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }
    }

    .footer-saiba-mais {
        font-size: 0.875rem;
        color: var(--text-muted);
        text-decoration: underline;
    }

    .social-icon {
        width: 1.25rem;
        height: 1.25rem;
        border-radius: 50%;
        background: var(--border);
        display: block;
        transition: background 0.3s ease;
    }

    .social-icon:hover {
        background: var(--accent);
    }

    .footer-socials {
    display: flex;
    gap: 12px;
    align-items: center;
    }

    .social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        color: var(--primary);
        transition: background 0.2s ease;
    }

    .social-icon:hover {
        background: var(--accent, #e63946);
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }

    /* =============================================
       DASHBOARD PREVIEW SECTION
       ============================================= */

    .dashboard-preview {
        padding: 6rem 0;
        background: var(--secondary);
        color: var(--white);
        position: relative;
        overflow: hidden;
    }

    .dashboard-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        opacity: 0.1;
        pointer-events: none;
        z-index: 0;
    }

    .dashboard-blur-1 {
        position: absolute;
        top: -10%;
        right: -5%;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: var(--accent);
        filter: blur(120px);
    }

    .dashboard-blur-2 {
        position: absolute;
        bottom: -10%;
        left: -5%;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: #3b82f6;
        filter: blur(120px);
    }

    .dashboard-content {
        display: grid;
        gap: 3rem;
        position: relative;
        z-index: 10;
        grid-template-columns: 1fr;
    }

    .dashboard-content h2 {
        text-align: center;
        grid-column: 1;
        margin-bottom: 2rem;
        font-size: clamp(1.875rem, 5vw, 3rem);
        color: var(--white);
    }

    .dashboard-image-wrapper {
        position: relative;
        border-radius: 0.75rem;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        margin-top: -40rem;
    }

    .browser-chrome {
        background: #000;
        height: 2rem;
        display: flex;
        align-items: center;
        padding: 0 1rem;
        gap: 0.5rem;
    }

    .browser-dot {
        width: 0.75rem;
        height: 0.75rem;
        border-radius: 50%;
    }

    .browser-dot.red { 
        background: #ef4444; 
        opacity: 0.8; 
    }

    .browser-dot.yellow { 
        background: #eab308; 
        opacity: 0.8; 
    }

    .browser-dot.green { 
        background: #22c55e; 
        opacity: 0.8; 
    }

    .dashboard-image-wrapper img {
        width: 100%;
        height: auto;
    }

    .dashboard-text {
        grid-column: 1;
        max-width: 100%;
    }

    .dashboard-text p {
        font-size: 1.125rem;
        color: #dbeafe;
        margin-bottom: 1.5rem;
        line-height: 1.8;
    }

    .dashboard-text .dashboard-subtitle {
        font-size: 2.0rem;
    }

    .dashboard-checklist {
        padding-top: 1.5rem;
    }

    .checklist-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: #dbeafe;
        margin-bottom: 1rem;
    }

    .checklist-icon {
        width: 1.5rem;
        height: 1.5rem;
        border-radius: 50%;
        background: rgba(208, 94, 38, 0.2);
        border: 1px solid rgba(208, 94, 38, 0.5);
        color: var(--accent);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        font-weight: bold;
        flex-shrink: 0;
    }

    /* MEDIA QUERY - DESKTOP */
    @media (min-width: 1024px) {
        .dashboard-content {
            grid-template-columns: 1fr 1fr;
            align-items: start;
        }

        .dashboard-content h2 {
            grid-column: 1 / -1;
            margin-bottom: 2rem;
        }

        .dashboard-image-wrapper {
            grid-column: 1;
            max-width: 100%;
        }

        .dashboard-text {
            grid-column: 2;
            padding-left: 2rem;
        }
    }

    /* MEDIA QUERY - MOBILE */
    @media (max-width: 1023px) {
        .dashboard-image-wrapper {
            max-width: 600px;
            margin: 0 auto;
        }

        .dashboard-text {
            padding: 0;
        }
    }

    /* =============================================
       PALMA PREVIEW SECTION
       ============================================= */

    .palma-section {
        padding: 6rem 0;
        background: var(--secondary);
        color: var(--white);
        position: relative;
        overflow: hidden;
    }

    .palma-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        opacity: 0.1;
        pointer-events: none;
        z-index: 0;
    }

    .palma-blur-1 {
        position: absolute;
        top: -10%;
        left: -5%;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: var(--accent);
        filter: blur(120px);
    }

    .palma-blur-2 {
        position: absolute;
        bottom: -10%;
        right: -5%;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: #3b82f6;
        filter: blur(120px);
    }

    .palma-content {
        display: grid;
        gap: 3rem;
        position: relative;
        z-index: 10;
        grid-template-columns: 1fr;
        align-items: start;
    }

    .palma-text {
        grid-column: 1;
        max-width: 100%;
    }

    .palma-text p:first-child {
        font-size: 2.0rem;
        margin-bottom: 1.5rem;
    }

    .palma-text p {
        font-size: 1.125rem;
        color: #dbeafe;
        margin-bottom: 1.5rem;
        line-height: 1.8;
    }

    .palma-image-wrapper {
    max-width: 160px; /* ajuste esse valor conforme o tamanho que quiser */
    width: 100%;
    margin: 0 auto;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .palma-text h2 {
        text-align: center;
        grid-column: 1;
        margin-bottom: 2rem;
        font-size: clamp(1.875rem, 5vw, 3rem);
        color: var(--white);
}

.palma-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

    .palma-button {
        margin-top: 2rem;
    }

    /* MEDIA QUERY - DESKTOP */
    @media (min-width: 1024px) {
        .palma-content {
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 4rem;
        }

        .palma-text {
            grid-column: 1;
            order: 1;
        }

        .palma-image-wrapper {
            grid-column: 2;
            order: 2;
            max-width: 60%;
            width: fit-content;
            margin: 0 auto;
        }
    }

    /* MEDIA QUERY - MOBILE */
    @media (max-width: 1023px) {
        .palma-image-wrapper {
            max-width: 400px;
            margin: 2rem auto 0;
        }

        .palma-text {
            padding: 0;
        }
    }

    /* =============================================
       SOCIAL PROOF SECTION
       ============================================= */

    .social-proof {
        padding: 6rem 0;
        background: #f9fafb;
    }

    .stats-grid {
        list-style: none;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-bottom: 6rem;
        padding-bottom: 3rem;
        border-bottom: 1px solid var(--border);
    }

    @media (min-width: 768px) {
        .stats-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    .stat-item {
        text-align: center;
    }

    .stat-value {
        font-size: clamp(2rem, 5vw, 3rem);
        font-weight: 700;
        font-family: 'Space Grotesk', sans-serif;
        color: var(--primary);
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 0.875rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--text-muted);
    }

    .testimonials-grid {
        list-style: none;
        display: grid;
        gap: 2rem;
        grid-template-columns: 1fr;
    }

    @media (min-width: 768px) {
        .testimonials-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    .testimonial-card {
        background: var(--white);
        border: none;
        border-radius: 0.5rem;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        transition: box-shadow 0.3s ease;
    }

    .testimonial-card:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .stars {
        display: flex;
        gap: 0.25rem;
        margin-bottom: 1.5rem;
        color: var(--accent);
    }

    .star {
        font-size: 1rem;
    }

    .testimonial-quote {
        position: relative;
        font-size: 1.125rem;
        color: #374151;
        margin-bottom: 1.5rem;
        line-height: 1.6;
        font-style: italic;
        padding-left: 2rem;
        background-color: var(--white);
    }

    .quote-mark {
        font-size: 3rem;
        color: var(--accent);
        opacity: 0.25;
        line-height: 0;
    }

    .quote-open {
        margin-right: 0.25rem;
        vertical-align: -0.4rem;
    }

    .quote-close {
        margin-left: 0.25rem;
        vertical-align: -0.6rem;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border);
        background-color: var(--white);
    }

    .author-avatar {
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 50%;
        background: rgba(234, 88, 12, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-weight: 700;
        font-size: 1rem;
    }

    .author-info {
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .author-name {
        font-weight: 700;
        color: var(--primary);
        font-size: 0.95rem;
    }

    .author-role {
        font-size: 0.875rem;
        color: var(--text-muted);
    }

    /* =============================================
       FAQ SECTION
       ============================================= */

    .faq {
        padding: 6rem 0;
        background: var(--white);
    }

    .faq-container {
        list-style: none;
        max-width: 800px;
        margin: 0 auto;
        padding: 0;
    }

    .faq-item {
        border: 1px solid var(--border);
        border-radius: 0.75rem;
        margin-bottom: 1rem;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        border-color: var(--accent);
        box-shadow: var(--shadow-md);
    }

    .faq-question {
        all: unset;
        box-sizing: border-box;
        padding: 1.5rem;
        background: var(--bg-light);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        color: var(--text-muted);
        transition: all 0.3s ease;
        user-select: none;
        width: 100%;
    }

    .faq-question:hover {
        background: var(--bg);
    }

    .faq-question.active {
        background: linear-gradient(135deg, rgba(208, 94, 38, 0.1), rgba(208, 94, 38, 0.05));
        color: var(--accent);
    }

    .faq-icon {
        width: 1.5rem;
        height: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease;
        font-size: 1.25rem;
    }

    .faq-question.active .faq-icon {
        transform: rotate(180deg);
    }

    .js .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: var(--white);
    }

    .js .faq-answer.active {
        max-height: 1000px;
    }

    /* Sem JS: esconde o ícone toggle (a FAQ fica sempre aberta) */
    html:not(.js) .faq-icon { display: none; }

    .faq-answer-content {
        padding: 1.5rem;
        color: var(--text-muted);
        line-height: 1.8;
    }

    .faq-answer-content ul {
        list-style: none;
        padding-left: 0;
        margin-top: 1rem;
    }

    .faq-answer-content li {
        padding-left: 1.5rem;
        margin-bottom: 0.5rem;
        position: relative;
    }

    .faq-answer-content li::before {
        content: '→';
        position: absolute;
        left: 0;
        color: var(--accent);
        font-weight: bold;
    }

    /* =============================================
       DROPDOWN NAVIGATION
       ============================================= */

    .header-content .menu-item-has-children { position: relative; }
    .header-content .menu-item-has-children {
        font-size: 0.875rem; font-weight: 500; color: var(--text-muted);
        text-decoration: none; transition: color 0.3s ease;
        background: none; border: none; cursor: pointer;
        font-family: 'Inter', sans-serif; padding: 0;
        display: inline-flex; align-items: center; gap: 0.25rem;
    }
    .header-content .menu-item-has-children > a::after {
        content: ''; display: inline-block; width: 0; height: 0;
        border-left: 4px solid transparent; border-right: 4px solid transparent;
        border-top: 4px solid currentColor; margin-left: 4px;
        transition: transform 0.3s ease;
    }
    .header-content .menu-item-has-children:hover > a { color: var(--primary); }
    .header-content .menu-item-has-children:hover > a::after { transform: rotate(180deg); }
    .header-content .sub-menu {
        position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
        min-width: 300px; background: var(--white);
        border: 1px solid var(--border); border-radius: 0.75rem;
        box-shadow: 0 10px 40px rgba(0,0,0,0.12);
        padding: 0.5rem; opacity: 0; visibility: hidden;
        transition: all 0.25s ease; margin-top: 0.75rem; z-index: 100;
        display: block;
    }
    .header-content .menu-item-has-children:hover .sub-menu { opacity: 1; visibility: visible; margin-top: 0.5rem; }
    .header-content .sub-menu li a {
        display: flex; align-items: center; gap: 0.75rem;
        padding: 0.625rem 0.75rem; border-radius: 0.5rem;
        text-decoration: none; color: var(--text-dark);
        font-size: 0.8125rem; font-weight: 500;
        transition: all 0.2s ease; line-height: 1.3;
    }
    .header-content .sub-menu li a:hover { background: var(--bg); color: var(--accent); }
    .header-content .sub-menu .dropdown-icon {
        width: 2rem; height: 2rem; border-radius: 0.375rem;
        display: flex; align-items: center; justify-content: center;
        font-size: 1rem; flex-shrink: 0; background: var(--bg);
    }

    /* =============================================
       MOBILE MENU
       ============================================= */

    .mobile-menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 85%;
        max-width: 380px;
        background: var(--white);
        z-index: 100;
        padding: 5rem 1.5rem 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
        z-index: 99;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu ul {
        list-style: none;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .mobile-menu ul li a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--text-dark);
        cursor: pointer;
        border-bottom: 1px solid var(--border);
        background: none;
        border-left: none;
        border-right: none;
        border-top: none;
        width: 100%;
        font-family: 'Inter', sans-serif;
        text-align: left;
        text-decoration: none;
    }

    .mobile-menu ul li a span {
        display: none;
    }

    .mobile-menu .sub-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        background: #f3f4f6;
        border-radius: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .mobile-menu .sub-menu.active {
        max-height: 500px;
    }

    .mobile-menu .sub-menu li a {
        display: block;
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
        font-weight: 500;
        color: var(--text-dark);
        text-decoration: none;
    }

    .mobile-menu .menu-item-has-children > a::after {
        content: "";
        width: 16px;
        height: 16px;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 8 10 12 14 8'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        transition: transform 0.5s ease;
    }

    .mobile-menu .menu-item-has-children > a.active::after {
        transform: rotate(180deg);
    }

    .mobile-menu .menu-item-has-children > a.active {
        color: var(--accent);
        border-radius: 0.5rem;
    }

    .mobile-menu > a {
        display: block;
        padding: 1rem 0;
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--text-dark);
        text-decoration: none;
        border-bottom: 1px solid var(--border);
    }

    .mobile-menu > a:hover {
        color: var(--accent);
    }

    .mobile-menu-close {
        position: absolute;
        top: 1.25rem;
        right: 1.25rem;
        background: none;
        border: none;
        font-size: 1.75rem;
        cursor: pointer;
        color: var(--primary);
        width: 2.5rem;
        height: 2.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    body.menu-open {
        overflow: hidden;
    }

    /* =============================================
       COMPACT FUNCIONALIDADES SECTION
       ============================================= */

    .funcionalidades-compact {
        padding: 6rem 0;
        background: var(--primary);
        color: var(--white);
        position: relative;
        overflow: hidden;
    }

    .funcionalidades-compact .func-bg {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        overflow: hidden; opacity: 0.1; pointer-events: none; z-index: 0;
    }

    .funcionalidades-compact .func-blur-1 {
        position: absolute; top: -10%; left: -5%;
        width: 500px; height: 500px; border-radius: 50%;
        background: var(--accent); filter: blur(120px);
    }

    .funcionalidades-compact .func-blur-2 {
        position: absolute; bottom: -10%; right: -5%;
        width: 500px; height: 500px; border-radius: 50%;
        background: #FB923C; filter: blur(120px);
    }

    .func-content {
        display: grid;
        gap: 3rem;
        align-items: center;
        position: relative;
        z-index: 10;
    }

    @media (min-width: 1024px) {
        .func-content {
            grid-template-columns: 1fr 1fr;
        }
    }

    .func-text h2 {
        font-size: clamp(1.875rem, 5vw, 3rem);
        margin-bottom: 1rem;
        color: var(--white);
    }

    .func-text > p {
        font-size: 1.125rem;
        color: #dbeafe;
        margin-bottom: 2rem;
        line-height: 1.8;
    }

    .func-bullets {
        list-style: none;
        padding: 0;
        margin: 0 0 2rem 0;
    }

    .func-bullets li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: #dbeafe;
        margin-bottom: 0.875rem;
        font-size: 1rem;
        line-height: 1.5;
    }

    .func-bullets li .bullet-icon {
        width: 2rem;
        height: 2rem;
        border-radius: 0.375rem;
        background: rgba(255, 255, 255, 0.85);
        border: 1px solid rgba(255, 255, 255, 0.9);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.875rem;
        flex-shrink: 0;
    }

    .func-text > .btn {
        color: var(--white);
        background: transparent;
        border: 2px solid var(--white);
    }

    .func-text > .btn:hover {
        background: var(--white);
        color: var(--primary);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .func-image-wrapper {
        position: relative;
        border-radius: 0.75rem;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
    }

    .func-image-wrapper img {
        width: 100%;
        height: auto;
    }

    /* =============================================
       BLOG PREVIEW SECTION
       ============================================= */

    .blog-preview {
        padding: 6rem 0;
        background: var(--white);
    }

    .blog-preview-grid {
        list-style: none;
        display: grid;
        gap: 2rem;
        grid-template-columns: 1fr;
    }

    @media (min-width: 768px) {
        .blog-preview-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    .blog-preview-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 0.75rem;
        padding: 2rem;
        transition: all 0.3s ease;
        text-decoration: none;
        display: block;
    }

    .blog-preview-card:hover {
        border-color: var(--accent);
        box-shadow: 0 8px 20px rgba(208, 94, 38, 0.1);
        transform: translateY(-4px);
    }

    .blog-preview-card .blog-category {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--secondary);
        margin-bottom: 0.75rem;
    }

    .blog-preview-card .blog-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .blog-preview-card h3 {
        font-size: 1.125rem;
        color: var(--primary);
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }

    .blog-preview-card p {
        color: var(--text-muted);
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .blog-preview-card .blog-meta {
        font-size: 0.8rem;
        color: var(--text-muted);
        background-color: var(--white);
    }

    .blog-preview-card a {
        display: flex;
        flex-direction: column;
        height: 100%;
        text-decoration: none;
        color: inherit;
    }

    .blog-preview-card a:visited {
        color: inherit;
    }

    .blog-view-all {
        margin-top: 3rem;
        display: flex;
        justify-content: center;
    }

    .blog-view-all a {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--accent);
        font-weight: 600;
        text-decoration: none;
        font-size: 1.1rem;
        transition: gap 0.3s ease;
    }

    .blog-view-all a:hover {
        gap: 0.75rem;
    }

    /* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */

    .whatsapp-float {
        position: fixed;
        bottom: 2.5rem;
        right: 2rem;
        z-index: 999;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .whatsapp-float:hover {
        transform: translateY(-4px);
    }

    .whatsapp-float:hover .whatsapp-tooltip {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .whatsapp-tooltip {
        background: #ffffff;
        color: #18181B;
        padding: 0.625rem 1rem;
        border-radius: 0.5rem;
        font-size: 0.8125rem;
        font-weight: 600;
        white-space: nowrap;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
        opacity: 0;
        visibility: hidden;
        transform: translateX(10px);
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .whatsapp-tooltip::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -6px;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 6px solid #ffffff;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
    }

    .whatsapp-btn {
        border: none;
        width: 3.5rem;
        height: 3.5rem;
        border-radius: 50%;
        background: #25D366;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
        transition: all 0.3s ease;
        position: relative;
        animation: whatsapp-bounce 2s ease-in-out infinite;
    }

    .whatsapp-btn::before {
        content: '';
        position: absolute;
        inset: -6px;
        border-radius: 50%;
        background: rgba(37, 211, 102, 0.35);
        animation: whatsapp-pulse 1.5s infinite;
        z-index: -1;
    }

    .whatsapp-btn::after {
        content: '';
        position: absolute;
        inset: -14px;
        border-radius: 50%;
        background: rgba(37, 211, 102, 0.15);
        animation: whatsapp-pulse 1.5s infinite 0.3s;
        z-index: -1;
    }

    .whatsapp-btn:hover {
        background: #20BA5C;
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.7);
        animation: none;
        transform: scale(1.08);
    }

    .whatsapp-btn svg {
        width: 1.75rem;
        height: 1.75rem;
        fill: white;
    }

    @keyframes whatsapp-pulse {
        0%   { transform: scale(1);    opacity: 0.7; }
        70%  { transform: scale(1.5); opacity: 0; }
        100% { transform: scale(1.5); opacity: 0; }
    }

    @keyframes whatsapp-bounce {
        0%, 100% { transform: scale(1); }
        50%       { transform: scale(1.08); }
    }

    /* =============================================
       PAGE HERO (páginas internas)
       ============================================= */

    .page-hero {
        margin-top: 7rem; padding: 5rem 0 4rem;
        background: var(--secondary); color: var(--white);
        position: relative; overflow: hidden;
    }
    .page-hero-bg {
        position: absolute; inset: 0; z-index: 0;
        opacity: 0.1;
        background-image: radial-gradient(#fff 1px, transparent 1px);
        background-size: 16px 16px;
    }
    .page-hero .container { position: relative; z-index: 1; }
    .breadcrumb {
        display: flex; align-items: center; gap: 0.5rem;
        font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 1.5rem;
    }
    .breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.3s; }
    .breadcrumb a:hover { color: var(--white); }
    .breadcrumb .separator { color: rgba(255,255,255,0.3); }
    .page-hero h1 {
        font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1.5rem;
        max-width: 800px; line-height: 1.2;
    }
    .page-hero .hero-desc {
        font-size: 1.125rem; color: #dbeafe; max-width: 700px;
        line-height: 1.8;
    }
    .page-hero-icon {
        font-size: 3rem; margin-bottom: 1rem; display: block;
    }

    /* =============================================
       CONTENT / SIDEBAR (páginas internas)
       ============================================= */

    .page-content { padding: 5rem 0; background: var(--bg-page); }
    .content-grid {
        display: grid; gap: 4rem;
        grid-template-columns: 1fr;
    }
    @media (min-width: 1024px) {
        .content-grid { grid-template-columns: 2fr 1fr; }
    }
    .content-main h2 {
        font-size: 1.75rem; margin-bottom: 1.5rem; color: var(--secondary);
    }
    .content-main p {
        font-size: 1.0625rem; color: var(--text-muted);
        line-height: 1.8; margin-bottom: 1.5rem;
    }
    .example-box {
        background: var(--bg-page-light); border-left: 4px solid var(--accent);
        padding: 1.5rem; border-radius: 0 0.5rem 0.5rem 0;
        margin: 2rem 0; font-size: 1rem; color: var(--text-dark);
        line-height: 1.7;
    }
    .example-box strong { color: var(--accent); }
    .feature-highlights {
        display: grid; gap: 1.5rem; margin: 2.5rem 0;
    }
    .feature-highlight {
        display: flex; align-items: flex-start; gap: 1rem;
        padding: 1.25rem; background: var(--white);
        border: 1px solid var(--border); border-radius: 0.75rem;
        transition: all 0.3s ease;
    }
    .feature-highlight:hover {
        border-color: var(--accent); box-shadow: 0 4px 12px rgba(208,94,38,0.08);
        transform: translateY(-2px);
    }
    .feature-highlight-icon {
        width: 2.5rem; height: 2.5rem; border-radius: 0.5rem;
        background: rgba(208,94,38,0.1); color: var(--accent);
        display: flex; align-items: center; justify-content: center;
        font-size: 1.25rem; flex-shrink: 0;
    }
    .feature-highlight h4 {
        font-size: 1rem; margin-bottom: 0.25rem; color: var(--secondary);
    }
    .feature-highlight p {
        font-size: 0.875rem; color: var(--text-muted); margin: 0; line-height: 1.5;
    }

    .content-sidebar { display: flex; flex-direction: column; gap: 2rem; }
    .sidebar-card {
        background: var(--white); border: 1px solid var(--border);
        border-radius: 0.75rem; padding: 1.5rem;
    }
    .sidebar-card h3 {
        font-size: 1.125rem; margin-bottom: 1rem; color: var(--secondary);
    }
    .sidebar-card ul { list-style: none; }
    .sidebar-card li { margin-bottom: 0.5rem; }
    .sidebar-card a {
        display: flex; align-items: center; gap: 0.5rem;
        padding: 0.5rem 0.75rem; border-radius: 0.375rem;
        text-decoration: none; color: var(--text-muted);
        font-size: 0.875rem; font-weight: 500;
        transition: all 0.2s ease;
    }
    .sidebar-card a:hover { background: var(--bg); color: var(--accent); }
    .sidebar-card a.active { background: rgba(208,94,38,0.08); color: #EA580C; font-weight: 600; }
    .sidebar-cta {
        background: var(--secondary); border: none; color: var(--white);
    }
    .sidebar-cta h3 { color: var(--white); }
    .sidebar-cta p { color: #dbeafe; font-size: 0.9375rem; line-height: 1.6; margin-bottom: 1.25rem; }

    /* =============================================
       RELATED ITEMS GRID
       ============================================= */

    .related-section { padding: 5rem 0; background: var(--bg-page-light); }
    .related-section .section-header { text-align: center; max-width: 48rem; margin: 0 auto 3rem; }
    .related-section .section-header h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); margin-bottom: 0.75rem; color: var(--secondary); }
    .related-section .section-header p { font-size: 1rem; color: var(--text-muted); }
    .related-grid {
        display: grid; gap: 1.5rem; grid-template-columns: 1fr;
        list-style: none;
    }
    @media (min-width: 768px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }
    .related-card {
        background: var(--white); border: 1px solid var(--border);
        border-radius: 0.75rem; padding: 1.5rem;
        text-decoration: none; color: var(--text-dark);
        transition: all 0.3s ease; display: block;
        display: grid;
    }
    .related-card:hover {
        border-color: var(--accent); box-shadow: 0 8px 20px rgba(208,94,38,0.1);
        transform: translateY(-4px);
    }
    .related-card .card-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
    .related-card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; color: var(--secondary); }
    .related-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.5; margin: 0; }
    .related-grid li { display: flex; }

    /* =============================================
       VER DEMONSTRAÇÃO — DESTAQUE NAV
       ============================================= */

    nav a[href*="#ver-demonstracao"],
    nav .menu-item-demo > a {
        background-color: #f97316;
        color: #fff !important;
        padding: 10px 18px;
        border-radius: 8px;
        font-weight: 600;
        display: inline-block;
        transition: all 0.3s ease;
    }

    nav a[href*="#ver-demonstracao"]:hover,
    nav .menu-item-demo > a:hover {
        background-color: #ea580c;
        transform: translateY(-2px);
    }

    @media (max-width: 768px) {
        .mobile-menu a[href*="#ver-demonstracao"],
        .mobile-menu .menu-item-demo > a {
            background-color: var(--accent);
            color: #fff !important;
            padding: 14px 16px;
            border-radius: 8px;
            display: block;
            text-align: center;
            font-weight: 600;
            margin-top: 10px;
        }
    }


    /* =============================================
   ENTRAR — DESTAQUE NAV
   ============================================= */

    nav a[href*="#entrar"] {
        border: 2px solid #f97316;
        color: #f97316 !important;
        padding: 8px 18px;
        border-radius: 999px; /* totalmente arredondado */
        font-weight: 600;
        display: inline-block;
        transition: all 0.3s ease;
        margin-left: auto;
    }

    nav a[href*="#entrar"]:hover {
        background-color: #f97316;
        color: #fff !important;
        transform: translateY(-2px);
    }

    @media (max-width: 768px) {
        .mobile-menu a[href*="#entrar"] {
            border: 2px solid var(--accent);
            color: var(--accent) !important;
            padding: 14px 16px;
            border-radius: 999px;
            display: block;
            text-align: center;
            font-weight: 600;
            margin-top: 10px;
        }

        .mobile-menu a[href*="#entrar"]:hover {
            background-color: var(--accent);
            color: #fff !important;
        }
    }

    /* =============================================
       PLANILHA VS SISTEMA SECTION
       ============================================= */

    .planilha-vs-sistema {
        padding: 6rem 0;
        background: var(--bg-light);
        border-top: 1px solid var(--border);
    }

    .planilha-pillars {
        list-style: none;
        padding: 0;
        margin: 0 auto 2.5rem;
        max-width: 48rem;
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }

    .planilha-pillars li {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.25rem;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 0.75rem;
        transition: all 0.3s ease;
        text-align: left;
    }

    .planilha-pillars li:hover {
        border-color: rgba(234, 88, 12, 0.25);
        box-shadow: 0 4px 16px rgba(234, 88, 12, 0.07);
        transform: translateY(-2px);
    }

    .pillar-icon {
        font-size: 1.5rem;
        flex-shrink: 0;
        margin-top: 0.15rem;
    }

    .planilha-pillars li strong {
        display: block;
        font-size: 1rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 0.25rem;
    }

    .planilha-pillars li p {
        font-size: 0.9rem;
        color: var(--text-muted);
        line-height: 1.6;
        margin: 0;
    }

    .planilha-compare {
        display: grid;
        gap: 1.25rem;
        max-width: 48rem;
        margin: 0 auto 2.5rem;
        grid-template-columns: 1fr;
    }

    @media (min-width: 768px) {
        .planilha-compare {
            grid-template-columns: 1fr 1fr;
        }
    }

    .compare-card {
        border-radius: 0.75rem;
        padding: 1.75rem;
        border: 1px solid var(--border);
        text-align: left;
    }

    .compare-card h3 {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }

    .compare-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
    }

    .compare-card li {
        font-size: 0.9rem;
        line-height: 1.5;
        padding-left: 1.25rem;
        position: relative;
    }

    .compare-card--before {
        background: #fef2f2;
        border-color: #fecaca;
    }

    .compare-card--before h3 { color: #b91c1c; }
    .compare-card--before li { color: #7f1d1d; }

    .compare-card--before li::before {
        content: '—';
        position: absolute;
        left: 0;
        color: #ef4444;
        font-weight: 700;
    }

    .compare-card--after {
        background: #f0fdf4;
        border-color: #bbf7d0;
    }

    .compare-card--after h3 { color: #15803d; }
    .compare-card--after li { color: #14532d; }

    .compare-card--after li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #22c55e;
        font-weight: 700;
        font-size: 0.75rem;
    }

    .compare-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 1.5rem;
        height: 1.5rem;
        border-radius: 50%;
        font-size: 0.8rem;
        font-weight: 700;
        flex-shrink: 0;
    }

    .compare-badge--red   { background: #fee2e2; color: #b91c1c; }
    .compare-badge--green { background: #dcfce7; color: #15803d; }

    .planilha-footer-text {
        text-align: center;
        max-width: 48rem;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .planilha-footer-text p {
        font-size: 1.125rem;
        color: var(--text-muted);
        line-height: 1.8;
    }

    .planilha-tagline {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--secondary);
        letter-spacing: -0.01em;
    }

    /* =============================================
   SCROLL REVEAL
   ============================================= */

    .js .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .js .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Delay para elementos filhos em sequência */
    .js .reveal-delay-1 { transition-delay: 0.1s; }
    .js .reveal-delay-2 { transition-delay: 0.2s; }
    .js .reveal-delay-3 { transition-delay: 0.3s; }
    .js .reveal-delay-4 { transition-delay: 0.4s; }


