    * {
        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: transparent;
    }

    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; /* ajuste */
    }

    /* remove espaçamentos/pontos dos LI */
    .header-content nav li {
        margin: 0;
        padding: 0;
    }

    /* Link em si (equivalente ao seu nav > a antigo) */
    .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;
}
}


    .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: 4rem;
        align-items: center;
    }

    @media (min-width: 1024px) {
        .hero-grid {
            grid-template-columns: 1.1fr 0.9fr;
            gap: 2rem;
        }
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
    }

    @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;
        }
    }

    .hero-image {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: visible;
        width: 100%;
        max-width: clamp(350px, 60vw, 450px);
        margin: 0 auto;
    }

    @media (max-width: 1023px) {
        .hero-image {
            /* max-width inherited from clamp above */
            margin: 0 auto;
        }
    }

    .hero-image-wrapper {
        position: relative;
        aspect-ratio: 9 / 16;
        width: 100%;
        max-width: clamp(280px, 45vw, 400px);
        margin: 0 auto;
        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);
    }

    @media (min-width: 1024px) {
        .hero-image-wrapper {
            max-width: 400px;
        }
    }

    .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);
    }

    /* 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.875rem, 5vw, 3rem);
        margin-bottom: 1rem;
        color: var(--secondary);
    }

    .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: repeat(4, 1fr);
        }
    }

    .footer-section{
        display: flex;
        flex-direction: column;
        gap: 0rem;
    }

    .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: 1.5rem;
    }

    .social-icon {
        width: 1.25rem;
        height: 1.25rem;
        border-radius: 50%;
        background: var(--border);
    }

    .hero-video {
        position: relative;
        width: 100%;
        padding-top: 177.78%; /* 9:16 */
        border-radius: 18px;
        overflow: hidden;
    }

    .hero-video iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }
    
    
            /* 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;
        align-items: center;
        position: relative;
        z-index: 10;
    }

    @media (min-width: 1024px) {
        .dashboard-content {
            grid-template-columns: 1fr 1fr;
        }
    }

    .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);
    }

    .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 h2 {
        font-size: clamp(1.875rem, 5vw, 3rem);
        margin-bottom: 1.5rem;
        color: var(--white);
    }

    .dashboard-text p {
        font-size: 1.125rem;
        color: #dbeafe;
        margin-bottom: 1.5rem;
        line-height: 1.8;
    }

    .dashboard-checklist {
        space: 1rem;
        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;
    }
    
    
    /* 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);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: var(--white);
    }

    .faq-answer.active {
        max-height: 1000px;
    }

    .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;
    }

    /* Submenu fechado por padrão */
    .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;
    }

    /* Quando ativo, abre */
    .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;
    }

    

    /* Bloquear scroll quando menu estiver aberto */
    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-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 Articles 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;
    }
    
    
    @media (min-width: 1024px) {
        .hero {
            margin-top: 7rem;
            padding: 4rem 0 5rem;
        }
    }

    /* Mascote Polvo - responsivo */
    .mascote-container {
        text-align: center;
        position: absolute;
        pointer-events: none;
        z-index: 5;
        filter: drop-shadow(0 12px 22px rgba(234,88,12,.28));
        bottom: -2rem;
        left: -2rem;
        width: clamp(100px, 20vw, 150px);
    }

    @keyframes mascotFloat {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
    }
    /* WhatsApp Floating Button */
    .whatsapp-float {
        position: fixed;
        bottom: 1.5rem;
        right: 1.5rem;
        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 15px rgba(37, 211, 102, 0.4);
        transition: all 0.3s ease;
        position: relative;
    }

    .whatsapp-btn::before {
        content: '';
        position: absolute;
        inset: -4px;
        border-radius: 50%;
        background: rgba(37, 211, 102, 0.3);
        animation: whatsapp-pulse 2s infinite;
        z-index: -1;
    }

    .whatsapp-btn:hover {
        background: #20BA5C;
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    }

    .whatsapp-btn svg {
        width: 1.75rem;
        height: 1.75rem;
        fill: white;
    }

    @keyframes whatsapp-pulse {
        0% { transform: scale(1); opacity: 0.6; }
        50% { transform: scale(1.15); opacity: 0; }
        100% { transform: scale(1); opacity: 0; }
    }

    /* SECTIONS */

    /* Page Hero */
    .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;
    }
    /* END PAGE HERO */

    /* Content Section */
    .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;
    }

    /* Sidebar */
    .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; }

    /* CTA Section */
    .cta-section { padding: 5rem 0; background: var(--white); }
    .cta-box {
        position: relative; border-radius: 2rem; background: var(--secondary);
        padding: 4rem 1.5rem; text-align: center;
        box-shadow: 0 20px 40px rgba(11,25,55,0.2); overflow: hidden;
    }
    @media (min-width: 768px) { .cta-box { padding: 5rem 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, 2.5rem); color: var(--white); margin-bottom: 1rem; }
    .cta-content p { font-size: 1.0625rem; color: #dbeafe; margin-bottom: 2rem; line-height: 1.8; }
    
    /* 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;}

    @media (max-width: 768px) {

    /* Layout em coluna */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        position: relative;
    }

    /* Texto primeiro */
    .hero-text {
        order: 1;
    }

    /* Vídeo depois */
    .hero-image {
        order: 2;
        position: relative;
    }

    /* Botão ocupa largura total */
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* 🐙 Mascote apontando pro botão */
    .mascote-container {
        position: absolute;
        bottom: 130px;      /* ajuste fino se precisar */
        left: 0;
        transform: translateX(-180px);
        width: 100px;
        z-index: 5;
        max-width: none;
        margin: 0;
    }
}

/* VER DEMONSTRAÇÃO - destaque principal */
nav a[href*="#ver-demonstracao"] {
    background-color: #f97316; /* laranja */
    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 {
    background-color: #ea580c;
    transform: translateY(-2px);
}


/* Destacar apenas "Ver Demonstração" no mobile */
@media (max-width: 768px) {

    .mobile-menu a[href*="#ver-demonstracao"] {
        background-color: var(--accent);
        color: #fff !important;
        padding: 14px 16px;
        border-radius: 8px;
        display: block;
        text-align: center;
        font-weight: 600;
        margin-top: 10px;
    }

}
    
    /*button {
        line-height: normal;
    }
    
    /* CUSTOMIZED */
    /*.site.grid-container.container {
        padding: 0px;
    }*/