@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
            --navy: #01325A;
            --navy-light: #1a5786;
            --navy-deep: #00213d;
            --gold: #C9A94B;
            --gold-light: #e8c96d;
            --gold-bright: #fff12a;
            --white: #F8F7F2;
            --gray-light: #F0F1F4;
            --gray-mid: #8A9BAA;
            --dark: #0D1B2A;
            --card-bg: #ffffff;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--white);
            color: var(--dark);
            overflow-x: hidden;
        }

        /* ─── HEADER ─────────────────────────────────────── */
        header {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
            height: 80px;
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(1,50,90,0.08);
            transition: box-shadow 0.3s;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        header.scrolled {
            box-shadow: 0 4px 24px rgba(1,50,90,0.12);
        }

        .logomarca {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logomarca img {
            height: 44px;
            width: auto;
        }

        .logomarca span {
            font-family: "Montserrat", sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--navy);
            letter-spacing: -0.02em;
        }

        .logomarca span em {
            color: var(--gold);
            font-style: normal;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 36px;
        }

        nav ul li {
            font-size: 0.95rem;
            font-weight: 500;
            color: #444;
            cursor: pointer;
            position: relative;
            transition: color 0.2s;
        }

        nav ul li::after {
            content: '';
            position: absolute;
            bottom: -4px; left: 0;
            width: 0; height: 2px;
            background: var(--gold);
            transition: width 0.25s;
        }

        nav ul li:hover { color: var(--navy); }
        nav ul li:hover::after { width: 100%; }

        .header-right {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            border: none;
            border-radius: 100px;
            background: var(--gold-bright);
            color: var(--navy-deep);
            font-family: "Montserrat", sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            cursor: pointer;
            letter-spacing: 0.01em;
            box-shadow: 0 4px 16px rgba(201,169,75,0.35);
            transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
        }

        .btn-primary:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(201,169,75,0.45);
        }

        /* ─── HERO ─────────────────────────────────────────── */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            padding: 120px 10% 80px;
            background: var(--navy-deep);
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 70% 70% at 80% 50%, rgba(26,87,134,0.55) 0%, transparent 70%),
                radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201,169,75,0.15) 0%, transparent 60%),
                linear-gradient(135deg, #00213d 0%, #01325A 60%, #0d3a5e 100%);
        }

        .hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        .hero-accent {
            position: absolute;
            top: -100px; right: -100px;
            width: 600px; height: 600px;
            border-radius: 50%;
            border: 1px solid rgba(201,169,75,0.15);
            animation: pulse-ring 6s ease-in-out infinite;
        }

        .hero-accent::after {
            content: '';
            position: absolute;
            inset: 60px;
            border-radius: 50%;
            border: 1px solid rgba(201,169,75,0.1);
        }

        @keyframes pulse-ring {
            0%, 100% { transform: scale(1); opacity: 0.6; }
            50% { transform: scale(1.05); opacity: 1; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 680px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 18px;
            border-radius: 100px;
            border: 1px solid rgba(201,169,75,0.4);
            background: rgba(201,169,75,0.1);
            color: var(--gold-light);
            font-size: 0.82rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 32px;
            animation: fadeUp 0.8s ease both;
        }

        .hero-badge::before {
            content: '';
            width: 6px; height: 6px;
            border-radius: 50%;
            background: var(--gold);
            animation: blink 2s ease infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        .hero-content h1 {
            font-family: "Montserrat", sans-serif;
            font-size: clamp(2.8rem, 5vw, 4.2rem);
            font-weight: 800;
            line-height: 1.1;
            color: var(--white);
            letter-spacing: -0.03em;
            margin-bottom: 24px;
            animation: fadeUp 0.8s 0.15s ease both;
        }

        .hero-content h1 .highlight {
            background: linear-gradient(135deg, var(--gold-bright), var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content p {
            font-size: 1.2rem;
            font-weight: 300;
            line-height: 1.7;
            color: rgba(248,247,242,0.72);
            max-width: 520px;
            margin-bottom: 44px;
            animation: fadeUp 0.8s 0.3s ease both;
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeUp 0.8s 0.45s ease both;
        }

        .btn-hero-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            border-radius: 100px;
            background: var(--gold-bright);
            color: var(--navy-deep);
            font-family: "Montserrat", sans-serif;
            font-size: 1rem;
            font-weight: 700;
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 32px rgba(255,241,42,0.35);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .btn-hero-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 40px rgba(255,241,42,0.5);
        }

        .btn-hero-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            border-radius: 100px;
            background: transparent;
            color: var(--white);
            font-family: "Montserrat", sans-serif;
            font-size: 1rem;
            font-weight: 600;
            border: 1.5px solid rgba(255,255,255,0.25);
            cursor: pointer;
            transition: border-color 0.2s, background 0.2s;
        }

        .btn-hero-secondary:hover {
            border-color: rgba(255,255,255,0.6);
            background: rgba(255,255,255,0.05);
        }

        .hero-stats {
            position: absolute;
            right: 10%;
            bottom: 80px;
            z-index: 2;
            display: flex;
            gap: 48px;
            animation: fadeUp 0.8s 0.6s ease both;
        }

        .stat {
            text-align: center;
        }

        .stat strong {
            display: block;
            font-family: "Inter", sans-serif;
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1;
        }

        .stat strong span {
            color: var(--gold);
        }

        .stat small {
            font-size: 0.82rem;
            color: rgba(255,255,255,0.5);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            display: block;
            margin-top: 6px;
        }

        .scroll-line {
            position: absolute;
            bottom: 0; left: 10%;
            width: 1px;
            height: 70px;
            background: linear-gradient(to bottom, transparent, rgba(201,169,75,0.6));
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ─── SERVIÇOS ─────────────────────────────────────── */
        .services {
            padding: 120px 8%;
            background: var(--white);
        }

        .section-label {
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 16px;
        }

        .section-title {
            font-family: "Montserrat", sans-serif;
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 800;
            color: var(--navy-deep);
            line-height: 1.15;
            margin-bottom: 64px;
        }

        .section-title span {
            color: var(--navy);
            position: relative;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .service-card {
            position: relative;
            padding: 48px 36px;
            border-radius: 24px;
            background: #fff;
            border: 1px solid rgba(1,50,90,0.08);
            overflow: hidden;
            transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
            cursor: default;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--navy), var(--gold));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 64px rgba(1,50,90,0.12);
            border-color: rgba(1,50,90,0.16);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 100px; height: 100px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            align-self: center;
            justify-content: center;
            margin-bottom: 28px;
            font-size: 1.8rem;
            transition: background 0.3s;
        }

        .service-icon img{
            height: 80px;
        }

        .service-card h2 {
            font-family: "Montserrat", sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--navy-deep);
            margin-bottom: 14px;
        }

        .service-card p {
            font-size: 0.97rem;
            line-height: 1.7;
            color: #6a7a8a;
            margin-bottom: 28px;
        }

        .service-card a {
            font-family: "Montserrat", sans-serif;
            font-size: 0.88rem;
            font-weight: 700;
            color: var(--navy);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            letter-spacing: 0.02em;
            transition: gap 0.2s, color 0.2s;
        }

        .service-card a:hover {
            gap: 12px;
            color: var(--gold);
        }

        /* ─── PROCESSO ─────────────────────────────────────── */
        .process {
            padding: 120px 8%;
            background: var(--navy-deep);
            position: relative;
            overflow: hidden;
        }

        .process::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
            background-size: 80px 80px;
        }

        .process .section-title {
            color: var(--white);
        }

        .process .section-label {
            color: var(--gold);
        }

        .process-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .process-connector {
            position: absolute;
            top: 52px;
            left: calc(12.5% + 32px);
            right: calc(12.5% + 32px);
            height: 1px;
            background: linear-gradient(90deg, var(--gold) 0%, rgba(201,169,75,0.2) 100%);
            z-index: 0;
        }

        .process-card {
            position: relative;
            z-index: 1;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 20px;
            padding: 36px 28px;
            text-align: center;
            transition: background 0.3s, border-color 0.3s, transform 0.3s;
        }

        .process-card:hover {
            background: rgba(255,255,255,0.08);
            border-color: rgba(201,169,75,0.3);
            transform: translateY(-6px);
        }

        .process-number {
            width: 56px; height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold), var(--gold-bright));
            color: var(--navy-deep);
            font-family: "Montserrat", sans-serif;
            font-size: 1.3rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            box-shadow: 0 0 0 8px rgba(201,169,75,0.1);
        }

        .process-icon {
            margin-bottom: 16px;
            margin-top: 16px;
        }

        .process-icon img {
            height: 50px;
        }

        .process-card h5 {
            font-family: "Montserrat", sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 12px;
        }

        .process-card p {
            font-size: 0.9rem;
            line-height: 1.6;
            color: rgba(248,247,242,0.55);
        }

        /* ─── CTA BANNER ────────────────────────────────────── */
        .cta-banner {
            padding: 100px 8%;
            background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-light) 100%);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: 'VW';
            position: absolute;
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            font-family: "Montserrat", sans-serif;
            font-size: 16rem;
            font-weight: 800;
            color: rgba(1,50,90,0.07);
            line-height: 1;
            pointer-events: none;
        }

        .cta-banner-text h2 {
            font-family: "Montserrat", sans-serif;
            font-size: clamp(2rem, 3vw, 2.8rem);
            font-weight: 800;
            color: var(--navy-deep);
            letter-spacing: -0.03em;
            line-height: 1.15;
            margin-bottom: 14px;
        }

        .cta-banner-text p {
            font-size: 1.05rem;
            color: rgba(0,33,61,0.7);
        }

        .btn-dark {
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 40px;
            border-radius: 100px;
            background: var(--navy-deep);
            color: #fff;
            font-family: "Montserrat", sans-serif;
            font-size: 1rem;
            font-weight: 700;
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 32px rgba(0,33,61,0.3);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .btn-dark:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 40px rgba(0,33,61,0.4);
        }

        /* ─── FOOTER ────────────────────────────────────────── */
        footer {
            background: var(--dark);
            color: rgba(248,247,242,0.6);
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1fr;
            gap: 48px;
            padding: 80px 8% 60px;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .footer-brand .logomarca {
            margin-bottom: 20px;
        }

        .footer-brand .logomarca span {
            color: var(--white);
        }

        .footer-brand p {
            font-size: 0.92rem;
            line-height: 1.7;
            max-width: 280px;
            color: rgba(255,255,255,0.45);
            margin-bottom: 28px;
        }

        .footer-col h6 {
            font-family: "Montserrat", sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.35);
            margin-bottom: 24px;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-col ul li {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.55);
            cursor: pointer;
            transition: color 0.2s;
        }

        .footer-col ul li:hover {
            color: var(--gold-light);
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-btn {
            width: 40px; height: 40px;
            border-radius: 10px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.2s, border-color 0.2s, transform 0.2s;
        }

        .social-btn img{
            display: flex;
            align-items: center;
            justify-content: center;
            height: 30px;
        }
        
        .social-btn .Email{
            height: 26px;
        }

        .social-btn:hover {
            background: rgba(201,169,75,0.15);
            border-color: rgba(201,169,75,0.3);
            transform: translateY(-3px);
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 8%;
        }

        .footer-bottom small {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.3);
        }

        .footer-bottom-links {
            display: flex;
            gap: 28px;
        }

        .footer-bottom-links span {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.3);
            cursor: pointer;
            transition: color 0.2s;
        }

        .footer-bottom-links span:hover {
            color: rgba(255,255,255,0.7);
        }

        /* ─── SCROLL ANIMATIONS ──────────────────────────────── */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }

        /* ─── RESPONSIVIDADE (MOBILE & TABLET) ───────────────── */

/* Para Tablets e telas menores */
@media (max-width: 1024px) {
    .services-grid, 
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-connector {
        display: none; /* Esconde a linha conectora para não quebrar o layout quebrado */
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stats {
        bottom: 40px;
    }
}

/* Para Smartphones */
@media (max-width: 768px) {
    /* Header */
    header {
        padding: 0 5%;
    }
    
    nav {
        display: none; /* Oculta o menu de texto no mobile. Veja a nota abaixo sobre o menu hambúrguer. */
    }
    
    .logomarca span {
        font-size: 1.2rem;
    }
    
    .logomarca img {
        height: 36px;
    }
    
    .btn-primary {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    /* Hero Section */
    .hero {
        padding: 120px 5% 60px;
        align-items: flex-start;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 40px;
        justify-content: flex-start;
        gap: 32px;
    }
    
    .scroll-line {
        display: none;
    }
    
    .hero-accent {
        width: 300px; height: 300px;
        top: -50px; right: -50px;
    }
    
    .hero-accent::after {
        inset: 30px;
    }

    /* Espaçamentos Gerais */
    .services, .process, .cta-banner {
        padding: 80px 5%;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    /* Grids */
    .services-grid, 
    .process-grid,
    .footer-main {
        grid-template-columns: 1fr;
    }

    /* CTA Banner */
    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .cta-banner::before {
        display: none;
    }
    
    /* Footer */
    .footer-main {
        gap: 32px;
        padding: 60px 5% 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}