
        /* ========================================
           CSS BASE (Do Código 1 - Tagima)
           ======================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: #f5f7fb;
            color: #1e293b;
            line-height: 1.6;
        }

        /* CONTAINER */
        .container {
            max-width: 1200px;
            margin: auto;
            padding: 0 20px;
        }

        /* HEADER */
        .header {
            position: fixed;
            width: 100%;
            top: 0;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            z-index: 1000;
        }

        .navbar {
            width: 100%;
        }

        .nav-container {
            max-width: 1200px;
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        /* LOGO */
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.2rem;
            color: #1e3a8a;
        }
        
        .logo img {
            height: 60px;
        }

        /* MENU */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }

        .nav-menu a {
            text-decoration: none;
            color: #1e293b;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: #22c55e;
        }

        /* BOTÃO CTA */
        .cta-button {
            background: #22c55e;
            padding: 10px 20px;
            border-radius: 30px;
            color: white !important;
            font-weight: 600;
            transition: transform 0.2s;
        }

        .cta-button:hover {
            transform: scale(1.05);
        }

        /* HERO */
        .hero {
            padding-top: 120px;
            padding-bottom: 80px;
            background: linear-gradient(135deg, #0f172a, #1e3a8a);
            color: white;
        }

        .hero-content {
            max-width: 1200px;
            margin: auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 40px;
            padding: 0 20px;
        }

        .hero-text h1 {
            font-size: 48px;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-text p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .btn-hero {
            background: #22c55e;
            padding: 15px 30px;
            border-radius: 10px;
            color: white;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: background 0.3s;
        }

        .btn-hero:hover {
            background: #16a34a;
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            width: 100%;
            max-width: 420px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        /* TRUST */
        .trust-section {
            background: white;
            padding: 60px 0;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .trust-card {
            text-align: center;
            background: #f1f5f9;
            padding: 30px;
            border-radius: 10px;
        }

        .trust-card h3 {
            font-size: 28px;
            color: #1e3a8a;
            margin-bottom: 5px;
        }

        /* SEÇÕES GERAIS */
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 36px;
            margin-bottom: 10px;
            color: #1e3a8a;
        }

        .section-header p {
            color: #64748b;
        }

        /* SERVIÇOS */
        .servicos {
            padding: 80px 0;
        }

        .servicos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }

        .servico-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            text-align: center;
            transition: transform 0.3s;
        }

        .servico-card:hover {
            transform: translateY(-5px);
        }

        .servico-icon {
            font-size: 40px;
            color: #22c55e;
            margin-bottom: 20px;
        }

        .servico-btn {
            display: inline-block;
            margin-top: 20px;
            padding: 10px 20px;
            background: #1e3a8a;
            color: white;
            border-radius: 6px;
            text-decoration: none;
            transition: background 0.3s;
        }

        .servico-btn:hover {
            background: #172554;
        }

        /* BENEFÍCIOS */
        .beneficios {
            background: #f1f5f9;
            padding: 80px 0;
        }

        .beneficios-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .beneficio-item {
            text-align: center;
            background: white;
            padding: 30px;
            border-radius: 10px;
        }

        .beneficio-item i {
            font-size: 35px;
            color: #22c55e;
            margin-bottom: 15px;
        }

        /* DEPOIMENTOS */
        .depoimentos {
            padding: 80px 0;
        }

        .depoimentos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .depoimento-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }

        .depoimento-stars {
            color: #fbbf24;
            margin-bottom: 15px;
        }

        .depoimento-text {
            font-style: italic;
            margin-bottom: 20px;
        }

        .depoimento-autor strong {
            display: block;
            color: #1e3a8a;
        }

        .depoimento-autor span {
            font-size: 0.9rem;
            color: #64748b;
        }

        /* CONTATO */
        .contato {
            background: #f1f5f9;
            padding: 80px 0;
        }

        .contato-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
        }

        .contato-card {
            background: white;
            padding: 30px;
            text-align: center;
            border-radius: 10px;
        }

        .contato-card i {
            font-size: 35px;
            color: #22c55e;
            margin-bottom: 15px;
        }

        .contato-card a {
            display: inline-block;
            margin-top: 10px;
            color: #1e3a8a;
            text-decoration: none;
            font-weight: 600;
        }

        .email {
             text-align: left;
             margin-left: -10px;
}

        /* FOOTER */
        .footer {
            background: #0f172a;
            color: white;
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            margin-bottom: 20px;
            color: #22c55e;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            color: #cbd5e1;
            text-decoration: none;
        }

        .footer-section ul li a:hover {
            color: white;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            color: white;
            font-size: 20px;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: #22c55e;
        }

        .footer-bottom {
            text-align: center;
            border-top: 1px solid #334155;
            padding-top: 20px;
            font-size: 0.9rem;
            color: #94a3b8;
        }

        /* WHATSAPP FLOAT */
        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            background: #25d366;
            color: white;
            font-size: 26px;
                        width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            transition: transform 0.3s;
            z-index: 1001;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        /* BOTÃO VOLTAR AO TOPO */
        .btn-topo {
            position: fixed;
            bottom: 25px;
            left: 25px;
            background: #1e3a8a;
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: none; /* Hidden by default */
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            z-index: 1000;
            transition: background 0.3s;
        }

        .btn-topo:hover {
            background: #172554;
        }

        .btn-topo.show {
            display: flex;
        }

        /* ESTILOS ADICIONAIS (DO CÓDIGO 2) */
        .servico-features {
            list-style: none;
            margin: 15px 0;
            text-align: left;
            padding-left: 20px;
        }

        .servico-features li {
            margin-bottom: 8px;
            font-size: 0.9rem;
            color: #475569;
        }

        .servico-features i {
            color: #22c55e;
            margin-right: 8px;
        }

        .depoimento-stars {
            color: #fbbf24;
            margin-bottom: 10px;
        }

        .cta-premium {
            background: linear-gradient(135deg, #1e3a8a, #0f172a);
            padding: 80px 0;
            text-align: center;
            color: white;
        }

        .cta-content h2 {
            font-size: 32px;
            margin-bottom: 15px;
        }

        .cta-content p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .btn-cta-grande {
            background: #22c55e;
            padding: 18px 40px;
            border-radius: 50px;
            color: white;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .btn-cta-grande:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(34, 197, 94, 0.4);
        }

        /* RESPONSIVO */
        @media(max-width: 900px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-image img {
                margin: auto;
                max-width: 300px;
            }

            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: white;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }

            .nav-menu.active {
                display: flex;
            }

            .menu-toggle {
                display: block;
                background: none;
                border: none;
                cursor: pointer;
            }

            .menu-toggle span {
                display: block;
                width: 25px;
                height: 3px;
                background: #1e3a8a;
                margin: 5px 0;
                transition: 0.3s;
            }

            .menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }
        }

        @media(max-width: 600px) {
            .hero-text h1 {
                font-size: 32px;
            }

            .section-header h2 {
                font-size: 28px;
            }

            .trust-grid {
                grid-template-columns: 1fr 1fr;
            }

          /* =============================
   LOCALIZAÇÃO
============================= */

.localizacao {
    padding: 80px 20px;
    background: #f8f9fa;
}

.localizacao-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

/* CARD DO ENDEREÇO */
.endereco-info {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.endereco-info h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.endereco-info p {
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: left; /* melhor leitura */
    color: #555;
}

/* BOTÃO ROTA */
.btn-rota {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-rota:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

/* MAPA */
.mapa-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .localizacao-grid {
        grid-template-columns: 1fr;
    }

    .endereco-info {
        text-align: center;
    }

    .endereco-info p {
        text-align: center;
    }
}

/* ========================================
   RESET RESPONSIVO GLOBAL
======================================== */

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   TIPOGRAFIA FLUIDA (PRO LEVEL)
======================================== */

h1 {
    font-size: clamp(28px, 5vw, 48px);
}

h2 {
    font-size: clamp(24px, 4vw, 36px);
}

p {
    font-size: clamp(15px, 2vw, 18px);
}

/* ========================================
   HERO AJUSTES
======================================== */

.hero-text {
    max-width: 600px;
}

.hero-content {
    width: 100%;
}

/* ========================================
   GRID UNIVERSAL MELHORADO
======================================== */

.servicos-grid,
.beneficios-grid,
.depoimentos-grid,
.contato-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* ========================================
   DESKTOP GRANDE (1400px+)
======================================== */

@media (min-width: 1400px) {

    .container {
        max-width: 1320px;
    }

    .hero-text h1 {
        font-size: 56px;
    }
}

/* ========================================
   NOTEBOOK / LAPTOP
======================================== */

@media (max-width: 1200px) {

    .nav-container {
        padding: 15px;
    }

    .hero-content {
        gap: 30px;
    }
}

/* ========================================
   TABLET (PADRÃO IPAD)
======================================== */

@media (max-width: 992px) {

    /* HERO */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image img {
        margin: auto;
        max-width: 320px;
    }

    /* MENU MOBILE */
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: #1e3a8a;
        margin: 5px 0;
        transition: 0.3s;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: white;
        padding: 25px;
        gap: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

    .nav-menu.active {
        display: flex;
    }
}

/* ========================================
   MOBILE GRANDE
======================================== */

@media (max-width: 768px) {

    .container {
        padding: 0 16px;
    }

    .hero {
        padding-top: 110px;
        padding-bottom: 60px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-content h2 {
        font-size: 26px;
    }

    /* LOCALIZAÇÃO */
    .localizacao-grid {
        grid-template-columns: 1fr;
    }

    .endereco-info {
        text-align: center;
    }

    .endereco-info p {
        text-align: center;
    }
}

/* ========================================
   MOBILE PADRÃO
======================================== */

@media (max-width: 600px) {

    .hero-text h1 {
        line-height: 1.3;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
    }

    .btn-cta-grande {
        width: 100%;
        justify-content: center;
        padding: 16px;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .servico-card,
    .beneficio-item,
    .contato-card,
    .depoimento-card {
        padding: 22px;
    }

    .footer-content {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* BOTÕES FLUTUANTES */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 24px;
        bottom: 90px;
    }

    .btn-topo {
        width: 45px;
        height: 45px;
    }
}

/* ========================================
   MOBILE PEQUENO (IPHONE SE)
======================================== */

@media (max-width: 400px) {

    .hero-text h1 {
        font-size: 26px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .logo img {
        height: 48px;
    }
}

/* ========================================
   COOKIE BANNER LGPD
======================================== */

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    width: min(900px, 95%);
    background: rgba(15,23,42,0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px 25px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: 0.5s ease;
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
}

.cookie-content {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.5;
}

.cookie-content a {
    color: #22c55e;
    font-weight: 600;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.cookie-btn.accept {
    background: #22c55e;
    color: white;
}

.cookie-btn.accept:hover {
    background: #16a34a;
}

.cookie-btn.reject {
    background: transparent;
    border: 1px solid #cbd5e1;
    color: white;
}

.cookie-btn.reject:hover {
    background: rgba(255,255,255,0.1);
}

/* MOBILE */

@media(max-width:768px){
    .cookie-content{
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons{
        width:100%;
        justify-content:center;
    }
}


