/* ==========================================================================
   Variáveis e Reset Premium
   ========================================================================== */
:root {
    /* Cores da Marca */
    --color-primary: #0193DC;    /* Azul / ciano */
    --color-primary-dark: #0077b3; /* Azul hover */
    --color-secondary: #DD127B;  /* Magenta / rosa */
    --color-accent: #F0D400;     /* Amarelo */
    --color-dark: #201E1E;       /* Preto / chumbo */
    
    /* Cores Auxiliares */
    --color-whatsapp: #25D366;
    --color-whatsapp-hover: #1EBE55;
    --color-light: #F8F9FA;
    --color-white: #FFFFFF;
    --color-gray: #6C757D;
    --color-gray-light: #E9ECEF;
    --color-gray-dark: #343A40;

    /* Gradientes Premium */
    --gradient-brand: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    --gradient-brand-horizontal: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
    
    /* Tipografia */
    --font-primary: 'Inter', sans-serif;
    
    /* Outros */
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.04);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --shadow-glass: 0 15px 35px rgba(0,0,0,0.2);
    --border-radius: 12px;
    --border-radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-dark);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* ==========================================================================
   Componentes Globais Premium
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--color-light);
}

.bg-dark {
    background-color: var(--color-dark);
    color: var(--color-white);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--color-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.bg-dark .section-title h2 {
    color: var(--color-white);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-brand-horizontal);
    border-radius: 2px;
}

.section-title p {
    color: var(--color-gray);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
}

.bg-dark .section-title p {
    color: rgba(255,255,255,0.7);
}

/* Botões */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1.05rem;
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-whatsapp:hover {
    background-color: var(--color-whatsapp-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
    color: var(--color-white);
}

.btn-primary {
    background: var(--gradient-brand);
    color: var(--color-white);
    box-shadow: 0 8px 20px rgba(1, 147, 220, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(221, 18, 123, 0.3);
    color: var(--color-white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-gray-light);
    color: var(--color-dark);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* Efeito de Gradiente em Texto */
.text-gradient {
    background: var(--gradient-brand-horizontal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Preloader Premium
   ========================================================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    z-index: 999999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.loader-logo-wrapper {
    margin-bottom: 30px;
    animation: fadeUp 1s ease forwards;
}

.loader-logo {
    max-width: 180px;
    height: auto;
    object-fit: contain;
}

.progress-container {
    width: 200px;
    height: 4px;
    background-color: var(--color-gray-light);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    opacity: 0;
    animation: fadeIn 0.5s ease 0.5s forwards;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: var(--gradient-brand-horizontal);
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

@keyframes fadeUp {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* ==========================================================================
   Header & Nav Premium
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
    padding: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: var(--transition);
}

.header.scrolled .navbar {
    height: 75px;
}

.logo img {
    height: 45px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-weight: 500;
    color: var(--color-gray-dark);
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-primary);
}

.hamburger {
    display: none;
    cursor: pointer;
    border: none;
    background: transparent;
    font-size: 1.6rem;
    color: var(--color-dark);
}

/* ==========================================================================
   Hero Section Premium (C/ Motoboy)
   ========================================================================== */
.hero {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #ffffff 0%, #f4f8fa 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(1,147,220,0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--color-dark);
}

.hero-content h1 span {
    background: var(--gradient-brand-horizontal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--color-gray-dark);
    margin-bottom: 40px;
    max-width: 90%;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

/* Efeito Premium na Foto do Motoboy */
.motoboy-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.motoboy-wrapper::before {
    content: '';
    position: absolute;
    bottom: 5%;
    left: 5%;
    width: 90%;
    height: 80%;
    background-color: var(--color-accent);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Trust Badges (Provas de Confiança) */
.trust-badges {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    align-items: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-gray-dark);
}

.trust-badge i {
    color: var(--color-primary);
    font-size: 1.4rem;
}

/* ==========================================================================
   Diferenciais
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--color-white);
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(1,147,220,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(1,147,220,0.1) 0%, rgba(1,147,220,0.05) 100%);
    color: var(--color-primary);
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    font-size: 36px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-brand);
    color: var(--color-white);
    transform: rotate(5deg) scale(1.05);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--color-gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* ==========================================================================
   Serviços Premium Refatorados
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
}

/* Gradiente na borda no hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--gradient-brand-horizontal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.service-img {
    height: 280px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #fdfdfd 0%, #f4f8fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-content {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-content p {
    color: var(--color-gray-dark);
    margin-bottom: 30px;
    flex-grow: 1;
    font-size: 1.05rem;
    line-height: 1.6;
}

.service-content .btn {
    width: 100%;
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.service-card:hover .service-content .btn {
    background: var(--gradient-brand);
    border-color: transparent;
    color: var(--color-white);
}

/* ==========================================================================
   Mapa Premium: Ilustração + Iframe
   ========================================================================== */
.map-section {
    padding: 100px 0;
    background-color: var(--color-light);
}

.map-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* 1. Ilustração com textos absolutos */
.map-illustration-container {
    position: relative;
    width: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background-color: var(--color-white);
}

.map-illustration-container img {
    width: 100%;
    display: block;
}

.map-label {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-dark);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: bounce 2s infinite;
}

.map-label i {
    color: var(--color-secondary);
}

.map-label.salvador {
    top: 40%;
    left: 20%;
}

.map-label.lauro {
    top: 25%;
    right: 20%;
    animation-delay: 1s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* 2. Conteúdo e Google Maps */
.map-info {
    display: flex;
    flex-direction: column;
}

.map-info h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.map-info p {
    font-size: 1.1rem;
    color: var(--color-gray-dark);
    margin-bottom: 30px;
}

.map-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.map-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    font-weight: 500;
}

.map-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-brand);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.google-map-container {
    width: 100%;
    height: 250px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 3px solid var(--color-white);
    /* Removido o grayscale a pedido do usuário */
}

.google-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================================================
   Como Funciona
   ========================================================================== */
.steps-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    margin-top: 40px;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: var(--gradient-brand-horizontal);
    opacity: 0.3;
    z-index: 0;
}

@media (max-width: 991px) {
    .steps-container::before {
        display: none;
    }
}

.step-box {
    text-align: center;
    width: 18%;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--color-white);
    border: 3px solid transparent;
    background-clip: padding-box;
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 25px;
    box-shadow: 0 0 0 8px var(--color-white), var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -3px; left: -3px; right: -3px; bottom: -3px;
    background: var(--gradient-brand);
    z-index: -1;
    border-radius: 50%;
}

.step-box:hover .step-number {
    background: var(--gradient-brand);
    color: var(--color-white);
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(1, 147, 220, 0.2), var(--shadow-md);
}

.step-box h4 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 700;
}

.step-box p {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.5;
}

/* ==========================================================================
   Marcas / Marquee
   ========================================================================== */
.brands-section {
    padding: 60px 0;
    background: var(--color-white);
    overflow: hidden;
    border-bottom: 1px solid var(--color-gray-light);
}

.marquee {
    display: flex;
    width: max-content;
    animation: scroll 35s linear infinite;
}

.marquee:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brand-item {
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item img {
    height: 45px;
    filter: grayscale(100%) opacity(0.5);
    transition: var(--transition);
}

.brand-item img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* ==========================================================================
   FAQ Premium
   ========================================================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(1, 147, 220, 0.3);
    box-shadow: var(--shadow-sm);
}

.faq-item.active {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.15rem;
    transition: var(--transition);
    color: var(--color-dark);
}

.faq-question i {
    color: var(--color-primary);
    transition: transform 0.4s ease;
    font-weight: bold;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--color-secondary);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--color-gray-dark);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 30px 24px;
    max-height: 600px;
}

/* ==========================================================================
   Contato & Footer Premium
   ========================================================================== */
.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-brand-horizontal);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h3 {
    margin-bottom: 30px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-white);
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-brand);
    border-radius: 2px;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '›';
    color: var(--color-primary);
    font-size: 1.5rem;
    line-height: 1;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-white);
    padding-left: 5px;
}

.footer-links a:hover::before {
    color: var(--color-secondary);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info li {
    display: flex;
    gap: 15px;
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    line-height: 1.5;
}

.contact-info i {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-top: 2px;
}

.contact-info a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient-brand);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(221, 18, 123, 0.3);
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
}

/* ==========================================================================
   WhatsApp Flutuante Premium e Glassmorphism Popup
   ========================================================================== */
.whatsapp-float-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Bolha / Popup Moderno Glassmorphism */
.whatsapp-glass-popup {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-glass);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.4);
    position: relative;
}

.whatsapp-glass-popup::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.85);
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
}

.whatsapp-glass-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.wg-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.wg-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
}

.wg-close {
    cursor: pointer;
    color: var(--color-gray);
    font-size: 1.2rem;
    transition: var(--transition);
}

.wg-close:hover {
    color: var(--color-secondary);
}

.wg-body p {
    font-size: 0.95rem;
    color: var(--color-gray-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.wg-btn {
    display: block;
    width: 100%;
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    text-align: center;
    padding: 10px 0;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.wg-btn:hover {
    background-color: var(--color-whatsapp-hover);
    color: var(--color-white);
}

/* Botão Flutuante Circular */
.whatsapp-btn-float {
    width: 65px;
    height: 65px;
    background-color: var(--color-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
    position: relative;
    cursor: pointer;
    z-index: 100;
}

.whatsapp-btn-float img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    z-index: 2;
}

.whatsapp-btn-float::before {
    content: '';
    position: absolute;
    top: -4px; left: -4px; right: -4px; bottom: -4px;
    border-radius: 50%;
    background: var(--gradient-brand);
    z-index: 0;
    animation: pulse-border-gradient 2.5s infinite;
    opacity: 0.8;
}

.whatsapp-btn-float:hover {
    transform: scale(1.1);
    background-color: var(--color-whatsapp-hover);
}

@keyframes pulse-border-gradient {
    0% { transform: scale(1); opacity: 0.8; }
    70% { transform: scale(1.2); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

/* ==========================================================================
   Responsivo
   ========================================================================== */
@media (max-width: 1024px) {
    .map-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 991px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 40px;
        justify-content: center;
    }
    
    .step-box {
        width: 45%;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-md);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease;
    }
    
    .nav-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--color-gray-light);
    }
    
    .nav-link {
        display: block;
        padding: 20px;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .step-box {
        width: 100%;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btns .btn {
        width: 100%;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .whatsapp-glass-popup {
        width: 250px;
        right: 0;
    }
}
