/* Variáveis Base e Tema Premium */
@font-face {
    font-family: 'Aquiline Book Regular';
    src: url('Aquiline%20Book%20Regular/Aquiline%20Book%20Regular.woff2') format('woff2'),
         url('Aquiline%20Book%20Regular/Aquiline%20Book%20Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: optional;
}

:root {
    --primary-blue: #102A53;
    --secondary-blue: #193E7A;
    --primary-dark: #091B38;
    --primary-gradient: linear-gradient(180deg, var(--secondary-blue) 0%, var(--primary-dark) 100%);
    --accent-red: #CE261E;
    --red-gradient: linear-gradient(180deg, #E62B21 0%, var(--accent-red) 100%);
    --accent-green: #25D366; /* Verde Whatsapp */
    --accent-green-hover: #128C7E;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --text-dark: #1A1F24;
    --text-muted: #6C757D;
    
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    
    --font-main: 'Poppins', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Custom Scrollbar Premium */
::-webkit-scrollbar { width: 14px; }
::-webkit-scrollbar-track { background: var(--primary-dark); }
::-webkit-scrollbar-thumb { background: #888888; border-radius: 10px; border: 3px solid var(--primary-dark); }
::-webkit-scrollbar-thumb:hover { background: #cccccc; }

body {
    font-family: var(--font-main);
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Grids e Containers (Mais Espaçosos) */
.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.container-fluid { max-width: 1800px; margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.relative { position: relative; }

/* Tipografia e Gradientes Premium */
h1, h2, h3, h4, h5, h6, .hero-title, .section-title, .hero-subtitle, .lead-text-box h3, .offer-box h2 { 
    font-family: 'Aquiline Book Regular', serif !important;
    font-weight: normal !important;
    letter-spacing: -0.02em; 
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title.dark { color: var(--primary-blue); }
.section-title.light { color: var(--white); }
.section-title span { color: var(--accent-red); }
.section-desc { font-size: 1.2rem; color: var(--text-muted); max-width: 1100px; margin: 0 auto 50px; }

.highlight-multimarcas, .text-gradient {
    background: var(--red-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}
.text-accent { color: var(--accent-red); }

/* Componentes Universais: Botões Glass & Glow */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 12px; padding: 15px 32px; border-radius: 50px;
    font-weight: 600; text-decoration: none; transition: var(--transition);
    border: none; cursor: pointer; position: relative; overflow: hidden;
    z-index: 1; font-size: 1.05rem;
}
.btn-primary { background-color: var(--accent-green); color: white; }
.btn-primary::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.2), rgba(255,255,255,0));
    transform: translateX(-100%); transition: 0.6s; z-index: -1;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover { background-color: var(--accent-green-hover); transform: translateY(-4px); box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); }

.btn-large { padding: 18px 45px; font-size: 1.2rem; }
.btn-block { width: 100%; }

.glow-badge {
    display: inline-block; padding: 10px 22px; font-weight: 700; font-size: 0.95rem;
    color: var(--white); border-radius: 30px; margin-bottom: 30px;
    background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: floating 3s ease-in-out infinite;
}
.glow-badge i { color: #FFD700; margin-right: 8px; font-size: 1.1rem; }

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

/* Float WhatsApp */
.float-whatsapp {
    position: fixed; bottom: 40px; right: 40px; background-color: var(--accent-green);
    color: white; width: 70px; height: 70px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 35px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5); z-index: 9999;
    text-decoration: none; animation: pulse-green 2s infinite;
}
.float-whatsapp:hover { transform: scale(1.1); animation: none; background: var(--accent-green-hover); }

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ======== HEADER ======== */
.header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 25px 0; transition: var(--transition); background: transparent;
}
.header::before {
    content: "";
    display: block;
    position: absolute;
    top: 0; left: 0; width: 100%;
    height: 7px;
    background: linear-gradient(to bottom,
        var(--primary-dark)  0%,   var(--primary-dark)  42%,
        #ffffff              42%,  #ffffff              58%,
        var(--accent-red)    58%,  var(--accent-red)    100%
    );
    z-index: 1;
}
.header.scrolled {
    background: rgba(9, 27, 56, 0.96); backdrop-filter: blur(15px);
    padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; flex-direction: column; color: white; line-height: 1; }
.logo-row { flex-direction: row; align-items: center; justify-content: center; gap: 15px; }
.logo-icon { height: 60px; width: 60px; object-fit: contain; filter: drop-shadow(0 0 10px rgba(255,255,255,0.1)); }
.logo-text-wrap { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.logo-text { font-family: 'Aquiline Book Regular', serif; font-size: 2.8rem; font-weight: normal; letter-spacing: 1px; color: var(--white); line-height: 1; }
.logo-sub { font-size: 0.8rem; color: var(--accent-red); font-weight: 800; letter-spacing: 2px; margin-top: 4px; line-height: 1; background: rgba(255,255,255,0.9); padding: 4px 8px; border-radius: 4px; }

/* ======== SEÇÃO 1: HERO CINETIC ======== */
.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; padding-top: 80px; padding-bottom: 50px;
    contain: layout style;
}
.hero-bg-zoom {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0; display: block;
    animation: zoomBg 20s infinite alternate;
}
.hero-bg-zoom img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
@keyframes zoomBg {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}
.hero-overlay-gradient {
    position: absolute; top:0; left:0; width:100%; height:100%; z-index: 1;
    background: linear-gradient(180deg, rgba(25, 62, 122, 0.75) 0%, rgba(9, 27, 56, 0.95) 100%);
}

.hero-content {
    position: relative; z-index: 2; color: white; max-width: 1300px; padding: 20px;
}
.hero-title { font-size: clamp(2.8rem, 3.2vw, 4rem); letter-spacing: -1.5px; margin-bottom: 25px; text-shadow: 0 10px 30px rgba(0,0,0,0.5); line-height: 1.15; }
.hero-subtitle { font-size: 1.4rem; font-weight: 300; opacity: 0.95; line-height: 1.6; margin-bottom: 40px; text-shadow: 0 5px 15px rgba(0,0,0,0.5); max-width: 1100px; margin: 0 auto 40px; }

.hero-bullets-wrapper { margin-bottom: 45px; background: rgba(0,0,0,0.25); border-radius: 20px; padding: 15px 30px; display: inline-block; backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.05); }
.hero-bullets-row { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }
.hero-bullets-row li { color: white; font-weight: 500; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.hero-bullets-row i { color: var(--accent-green); font-size: 1.3rem; }

.hero-bottom-curve { position: absolute; bottom: -1px; left: 0; width: 100%; z-index: 3; }
.hero-bottom-curve svg { width: 100%; height: auto; display: block; fill: var(--light-bg); }

/* ======== SEÇÃO 2: DOR (CARDS 3D) ======== */
.pain-section { padding: 100px 0 120px; background-color: var(--light-bg); position: relative;}
.pain-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 25px; margin-bottom: 60px; }

/* Neumorphism / Soft UI para os cards claros */
.pain-card.glass-dark {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 45px 25px 35px; text-align: center; border-radius: 20px;
    box-shadow: 10px 10px 30px rgba(174, 174, 192, 0.4), -10px -10px 30px #ffffff;
    transition: var(--transition); border: 2px solid transparent;
    border-top: 4px solid var(--accent-red);
    position: relative; overflow: hidden;
}
.pain-card.glass-dark:hover { 
    transform: translateY(-12px) scale(1.02); 
    border-color: rgba(230, 57, 70, 0.5);
    border-top-color: var(--accent-red);
    box-shadow: 15px 15px 40px rgba(174, 174, 192, 0.5), -10px -10px 30px #ffffff, 0 0 30px rgba(230, 57, 70, 0.15);
}

.pain-icon.pulsating {
    width: 80px; height: 80px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem; color: var(--accent-red);
    animation: pulse-icon 2s infinite ease-in-out alternate;
    border: 2px solid rgba(230, 57, 70, 0.2);
}
@keyframes pulse-icon { 0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(230,57,70,0.3); } 100% { transform: scale(1.08); box-shadow: 0 0 0 12px rgba(230,57,70,0); } }
.pain-card h3 { font-size: 1.25rem; color: var(--primary-blue); font-weight: 700; }

.pain-alert-box {
    background: linear-gradient(135deg, var(--accent-red) 0%, #a01c14 100%);
    border-radius: 20px; padding: 30px 40px; display: flex; align-items: center; gap: 20px;
    box-shadow: 0 20px 50px rgba(230, 57, 70, 0.4);
    max-width: 800px; margin: 0 auto;
    border: none;
}
.alert-icon i { font-size: 2.5rem; color: rgba(255,255,255,0.9); }
.alert-text { font-size: 1.15rem; color: white; line-height: 1.5; }
.alert-text strong { color: #FFD700; }

/* ======== SEÇÃO 3: AUTORIDADE PARALLAX ======== */
.parallax-bg {
    background: url('img/Manutencao-preventiva-para-Uber-99.webp') center center / cover no-repeat;
    padding: 120px 0; color: white; position: relative; overflow: hidden;
}
@media (max-width: 768px) {
    .parallax-bg {
        background-image: url('img/Manutencao-preventiva-para-Uber-99-mobile.webp');
    }
}
.overlay-dark { position: absolute; inset: 0; background: rgba(0,0,0,0.82); backdrop-filter: blur(3px); }
.lead-text-box.glass-light {
    background: rgba(255,255,255,0.05); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 20px;
    padding: 40px 50px; font-size: 1.35rem; font-weight: 300; line-height: 1.8;
    max-width: 1280px; margin: 0 auto; box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* ======== SEÇÃO 7.5: MOTORISTAS DE APP ======== */
.app-driver-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(37,211,102,0.15); color: #25D366;
    font-size: 0.85rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 10px 22px; border-radius: 50px;
    border: 1px solid rgba(37,211,102,0.3);
}
.app-driver-badge i { font-size: 1rem; }

.app-driver-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px;
    max-width: 960px; margin: 0 auto;
}
.app-driver-card {
    background: rgba(255,255,255,0.06); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px; padding: 35px 25px; text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(255,255,255,0.04), 0 0 1px rgba(255,255,255,0.2);
}
.app-driver-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37,211,102,0.4);
    box-shadow: 0 15px 40px rgba(37,211,102,0.1);
}
.app-driver-card-icon {
    width: 60px; height: 60px; border-radius: 16px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-size: 1.5rem; color: #fff;
    box-shadow: 0 8px 25px rgba(37,211,102,0.3);
}
.app-driver-card h3 {
    font-size: 1.15rem; color: #fff; margin-bottom: 10px; font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    letter-spacing: 0 !important;
}
.app-driver-card p {
    font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.6; margin: 0;
}

.app-driver-tagline {
    font-size: 1.4rem; color: rgba(255,255,255,0.9);
    margin-bottom: 30px; letter-spacing: -0.3px;
}
.app-driver-tagline strong { color: #25D366; }

.app-driver-cta {
    background: #25D366 !important; border-color: #25D366 !important;
    font-size: 1.15rem !important; padding: 18px 45px !important;
    box-shadow: 0 8px 30px rgba(37,211,102,0.4) !important;
}
.app-driver-cta:hover {
    background: #1eba59 !important;
    box-shadow: 0 12px 40px rgba(37,211,102,0.55) !important;
    transform: translateY(-2px);
}

/* ======== SEÇÃO 4: SERVIÇOS CARDS INCRÍVEIS ======== */
.service-hover-card {
    background: var(--white); 
    border-radius: 24px; overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3), 0 25px 60px -15px rgba(255,255,255,0.12); transition: var(--transition);
    border: none; position: relative; cursor: pointer;
    display: flex; flex-direction: column;
}
.services { padding: 120px 0; background: var(--primary-gradient); }
.services-modern-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; }
.services .section-title.dark { color: var(--white); }
.services .section-desc { color: rgba(255,255,255,0.7); }
.service-hover-card:hover { transform: translateY(-15px) scale(1.02); box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 40px 80px -20px rgba(255,255,255,0.22); }

.service-img-wrap { position: relative; height: 260px; overflow: hidden; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-hover-card:hover .service-img-wrap img { transform: scale(1.1); }
.service-overlay {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(11, 42, 74, 0.9), transparent);
    display: flex; align-items: flex-end; padding: 20px; opacity: 0; transition: 0.4s;
}
.service-hover-card:hover .service-overlay { opacity: 1; }
.icon-giant { font-size: 3rem; color: var(--accent-red); }

.service-info { padding: 35px 30px; background: var(--white); flex: 1; display: flex; flex-direction: column; }
.service-info h3 { font-size: 1.7rem; color: var(--primary-dark); margin-bottom: 15px; font-weight: 900; letter-spacing: -0.5px; }
.service-info p { font-size: 1.05rem; color: var(--text-dark); line-height: 1.6; opacity: 0.85; margin-bottom: 20px; flex: 1; }

.btn-service-wpp {
    display: inline-flex; align-items: center; gap: 10px;
    background: #25D366; color: white;
    padding: 14px 24px; border-radius: 50px;
    text-decoration: none; font-weight: 700; font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    margin-top: 5px;
}
.btn-service-wpp i { font-size: 1.25rem; }
.btn-service-wpp:hover {
    background: #1da851; transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
    color: white;
}


/* ======== SEÇÃO 5 & 6: OFERTA + CONFIANÇA GLASS ======== */
.offer-trust-section {
    padding: 120px 0; background: var(--primary-blue); position: relative; overflow: hidden; color: white;
}

.offer-box { 
    position: relative; z-index: 1; padding: 60px; 
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.3), 0 0 30px rgba(255,255,255,0.15);
    transition: var(--transition);
}
.offer-box h2 { font-size: 3.2rem; font-weight: 900; line-height: 1.2; margin-bottom: 25px; color: #0b2a4a; }
.offer-box h2 span { color: var(--accent-red); }
.offer-box p { font-size: 1.3rem; color: #0b2a4a; opacity: 1; max-width: 1100px; margin: 0 auto; font-weight: 400; }

.trust-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 15px; 
    position: relative; 
    z-index: 1; 
    margin-top: 40px; 
}
@media (max-width: 1200px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .trust-grid { grid-template-columns: 1fr; }
}
.trust-pill {
    display: flex; align-items: center; gap: 10px; padding: 10px 22px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px; backdrop-filter: blur(10px); font-weight: 600; font-size: 0.85rem;
    transition: var(--transition); white-space: nowrap;
}
.trust-pill:hover { background: rgba(255,255,255,0.15); transform: translateY(-5px); border-color: rgba(255,255,255,0.3); }
.pill-icon i { color: var(--accent-red); font-size: 1.25rem; }


/* ======== SEÇÃO 7: DEPOIMENTOS CAROUSEL MOCK ======== */
.testimonials { padding: 100px 0; background: var(--light-bg); overflow: hidden; }
.glass-carousel { position: relative; margin-top: 60px; }

.mock-trustindex { 
    display: flex; justify-content: flex-start; align-items: stretch; gap: 30px; 
    overflow-x: auto; scroll-snap-type: x mandatory; padding: 50px 20px 50px 20px;
    -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none; 
    max-width: 1180px; margin: 0 auto; /* Esconde cirurgicamente a 4ª card */
}
.mock-trustindex::-webkit-scrollbar { display: none; /* Hide scrollbar Chrome/Safari */ }

.review-card {
    background: var(--white); border-radius: 20px; padding: 50px 30px 40px; width: 360px;
    text-align: center; box-shadow: 0 15px 40px rgba(0,0,0,0.05); position: relative; border-bottom: 4px solid var(--primary-dark);
    flex-shrink: 0; scroll-snap-align: center; transition: all 0.3s ease;
}
.review-card:hover { transform: translateY(-10px); box-shadow: 0 25px 60px rgba(0,0,0,0.15); border-bottom: 4px solid var(--accent-green); }

.btn-white {
    background: #ffffff;
    color: #581c87; /* Roxo para destaque */
    border-radius: 12px;
    font-weight: 800;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
.btn-white:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    color: #4b1a7d;
}
.review-card .review-name { color: var(--primary-blue); font-size: 1.2rem; margin-top: 10px; font-weight: 800; }
.review-card p { color: var(--text-muted); font-style: italic; font-size: 1.05rem; }
.review-header { position: absolute; top: -35px; left: 50%; transform: translateX(-50%); }
.avatar, .avatar-img { width: 75px; height: 75px; border-radius: 50%; border: 4px solid var(--white); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.google-badge { position: absolute; bottom: 0; right: 0; background: white; color: #4285F4; border-radius: 50%; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; box-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.stars { color: #FBBC05; font-size: 1.4rem; margin: 15px 0; letter-spacing: 2px; }

/* ======== SEÇÃO 8 & 9: SPLIT LAYOUT (FAQ e CTA) ======== */
.bottom-action-area { background: var(--primary-gradient); padding: 40px 0 120px; position: relative; overflow: hidden; }
.bottom-action-area::before { content: ""; position: absolute; width: 100%; height: 100%; background: radial-gradient(circle at 10% 90%, rgba(16, 42, 83, 0.8), transparent); top: 0; left: 0; }
.container-split { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; position: relative; z-index: 2; align-items: center; }

.location-card {
    background: rgba(255, 255, 255, 0.03); 
    backdrop-filter: blur(10px); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    padding: 25px; 
    border-radius: 30px; 
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.map-wrapper { overflow: hidden; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.address-info h4 { font-weight: 700; letter-spacing: 0.5px; }
.address-info p { font-size: 1.05rem; }

.cta-glass-box { 
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 100px 40px 60px; 
    border-radius: 30px; 
    color: var(--primary-dark); 
    box-shadow: 0 40px 100px rgba(0,0,0,0.3), 0 0 30px rgba(255,255,255,0.15); 
    position: relative;
    overflow: hidden;
}
.cta-pulse-icon { font-size: 4rem; color: var(--accent-green); margin-bottom: 20px; animation: bounce 3s infinite; }
.cta-glass-box h3 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 20px; font-weight: 800; color: var(--primary-blue); }
.cta-glass-box h3 strong { font-weight: 900; color: var(--accent-green); display: inline; }
.cta-glass-box p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 40px; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 40% {transform: translateY(-20px);} 60% {transform: translateY(-10px);} }

/* ======== BRAND TICKER ======== */
.brands-ticker-wrap {
    background: var(--primary-dark);
    padding: 25px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 5;
}
.brands-ticker-content {
    display: inline-flex;
    animation: ticker 40s linear infinite;
    gap: 80px;
    align-items: center;
}
.brand-item {
    font-size: 1rem;
    font-weight: 800;
    color: rgba(255,255,255,0.6);
    letter-spacing: 3px;
    transition: var(--transition);
    cursor: default;
}
.brand-item:hover { color: var(--white); text-shadow: 0 0 15px rgba(255,255,255,0.5); }

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

@media (max-width: 768px) {
    .brands-ticker-content { gap: 40px; animation-duration: 25s; }
    .brand-item { font-size: 0.85rem; letter-spacing: 2px; }
}
.footer-simple-top {
    display: flex; justify-content: center; align-items: center; gap: 30px; 
    flex-wrap: wrap; margin-bottom: 25px; padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 1.05rem;
}
.footer-simple-top span { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.9); }
.footer-simple-top i { color: var(--accent-red); font-size: 1.2rem; }

.footer-simple-bottom {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
}
.footer-simple-bottom p { opacity: 0.8; font-size: 0.95rem; margin: 0; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    background: var(--accent-red); color: white; width: 35px; height: 35px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 4px; text-decoration: none; transition: 0.3s;
}
.footer-social a:hover { transform: scale(1.1); background: #b01b1b; }

/* ======== RESPONSIVIDADE EXTREMA ======== */
@media (max-width: 1024px) {
    .container-split { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.8rem; }
    .offer-box h2 { font-size: 2.6rem; }
}

/* Hero mobile: desativa animação de zoom para economizar CPU/GPU */
@media (max-width: 768px) {
    .hero-bg-zoom {
        animation: none;
        background-attachment: scroll;
    }
    /* Parallax fixo não funciona no iOS e causa repinturas — usa scroll no mobile */
    .parallax-bg {
        background-attachment: scroll;
    }
    /* Reduz custo de GPU: backdrop-filter é caro em mobile */
    .hero-bullets-wrapper {
        backdrop-filter: none;
    }
    .header.scrolled {
        backdrop-filter: blur(8px);
    }
}

@media (max-width: 768px) {
    /* Containers: reduz padding lateral */
    .container { padding: 0 25px; }
    .container-fluid { padding: 0 20px; }
    /* Hero */
    .hero { height: auto; min-height: 100vh; padding-top: 120px; }
    .hero-title { font-size: 2.2rem; letter-spacing: -0.5px; }
    .hero-subtitle { font-size: 1.05rem; }
    .hero-bullets-row { flex-direction: column; gap: 12px; align-items: flex-start; }
    .hero-bullets-wrapper { padding: 12px 20px; }
    .hero-bullets-row li { font-size: 1rem; }
    /* Header / Logo */
    .header-container { flex-direction: row !important; gap: 0; }
    .logo { gap: 10px !important; }
    .logo-row { flex-direction: row !important; align-items: center; gap: 10px; }
    .logo-icon { height: 44px !important; width: 44px !important; }
    .logo-text { font-size: 1.9rem !important; white-space: nowrap; }
    .logo-sub { font-size: 0.65rem !important; letter-spacing: 1.5px !important; }
    .d-none-mobile { display: none; }
    /* Títulos */
    .section-title { font-size: 2rem; }
    /* Motoristas App */
    .app-driver-grid { grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
    .lead-text-box.glass-light { padding: 30px 20px; font-size: 1.05rem; }
    /* Oferta */
    .offer-box { padding: 40px 20px; }
    .offer-box h2 { font-size: 2rem; }
    /* Depoimentos */
    .review-card { width: 300px; }
    .review-card.center-card.scale-up { transform: scale(1); }
    /* WhatsApp */
    .float-whatsapp { bottom: 20px; right: 20px; width: 60px; height: 60px; font-size: 30px; }
    /* Footer */
    .footer-simple-top { flex-direction: column; gap: 15px; }
    .footer-simple-bottom { flex-direction: column; justify-content: center; text-align: center; gap: 15px; }
}

@media (max-width: 480px) {
    /* === HEADER === */
    .logo-row { flex-direction: row !important; align-items: center; gap: 8px; }
    .logo-icon { height: 36px !important; width: 36px !important; }
    .logo-text { font-size: 1.5rem !important; white-space: nowrap; }
    .logo-sub { font-size: 0.55rem !important; letter-spacing: 1px !important; padding: 3px 6px !important; }

    /* === HERO === */
    .hero { padding-top: 110px; }
    .hero-title { font-size: 1.75rem; letter-spacing: -0.3px; margin-bottom: 15px; }
    .hero-subtitle { font-size: 0.95rem; margin-bottom: 20px !important; }
    .hero-content { padding: 10px 15px; }
    .hero-bullets-wrapper { padding: 10px 16px; margin-bottom: 25px; }
    .hero-bullets-row li { font-size: 0.95rem; }
    .btn-hero { font-size: 1rem !important; padding: 16px 22px !important; }

    /* === TÍTULOS GERAIS === */
    .section-title { font-size: 1.6rem; }
    .section-desc { font-size: 0.92rem; }

    /* === CONTAINERS === */
    .container { padding: 0 16px; }
    .container-fluid { padding: 0 16px; }
    .container-narrow { padding: 0 12px; }

    /* === SEÇÃO DOR === */
    .pain-section { padding: 50px 0 60px; }
    .pain-list { grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 30px; }
    .pain-card.glass-dark { padding: 20px 10px 16px; }
    .pain-card.glass-dark h3 { font-size: 0.85rem; }
    .pain-icon.pulsating { width: 45px; height: 45px; font-size: 1.2rem; margin-bottom: 10px; }
    .pain-alert-box { padding: 14px 12px; font-size: 0.85rem; gap: 10px; flex-direction: row; }
    .alert-icon i { font-size: 1.5rem; }

    /* === SERVIÇOS === */
    .services { padding: 70px 0; }
    .services-modern-grid { grid-template-columns: 1fr; gap: 25px; }
    .service-info { padding: 22px 18px; }
    .service-info h3 { font-size: 1.05rem; }
    .service-info p { font-size: 0.88rem; }
    .service-img-wrap { height: 200px; }
    .service-overlay { display: none; }
    .service-hover-card { box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

    /* === OFERTA + CONFIANÇA === */
    .offer-trust-section { padding: 70px 0; }
    .offer-box { padding: 30px 18px; border-radius: 18px; }
    .offer-box h2 { font-size: 1.5rem; margin-bottom: 15px; }
    .offer-box p { font-size: 0.95rem; }
    .trust-grid { grid-template-columns: 1fr; gap: 8px; margin-top: 20px; }
    .trust-pill { padding: 12px 14px; font-size: 0.85rem; gap: 10px; }
    .pill-icon { width: 34px; height: 34px; font-size: 0.95rem; }

    /* === DEPOIMENTOS === */
    .testimonials { padding: 60px 0; }
    .glass-carousel { margin-top: 30px; }
    .mock-trustindex {
        padding: 50px 7.5vw 30px 7.5vw;
        gap: 16px;
        scroll-padding-inline: 7.5vw;
    }
    .review-card {
        width: 85vw;
        max-width: 320px;
        padding: 40px 18px 25px;
        scroll-snap-align: center;
    }
    .review-card p { font-size: 0.88rem; }
    .review-card .review-name { font-size: 1rem; }

    /* === MOTORISTAS APP === */
    .authority { padding: 70px 0; }
    .app-driver-grid { grid-template-columns: 1fr; max-width: 400px; gap: 16px; }
    .app-driver-card { padding: 25px 20px; }
    .app-driver-card-icon { width: 50px; height: 50px; font-size: 1.3rem; border-radius: 14px; }
    .app-driver-tagline { font-size: 1.15rem; }
    .app-driver-cta { font-size: 1rem !important; padding: 16px 30px !important; }
    .app-driver-badge { font-size: 0.75rem; padding: 8px 16px; }
    .lead-text-box.glass-light { padding: 22px 16px; font-size: 0.92rem; }
    .lead-text-box.glass-light p { font-size: 0.92rem; }

    /* === CTA FINAL + MAPA === */
    .bottom-action-area { padding: 40px 0 60px; }
    .cta-glass-box { padding: 25px 16px; }
    .cta-pulse-icon { font-size: 2.2rem; margin-bottom: 10px; }
    .cta-glass-box h3 { font-size: 1.3rem; }
    .cta-glass-box p { font-size: 0.88rem; margin-bottom: 18px; }
    .cta-glass-box .btn { font-size: 0.95rem !important; padding: 14px 28px !important; }
    .map-iframe { height: 220px !important; border-radius: 12px !important; }
    .location-card { padding: 18px; border-radius: 20px; }
    .map-wrapper { border-radius: 12px; }
}

/* ======== RODAPÉ ======== */
.footer-simple {
    background: #091B38;
    color: white;
    padding: 40px 0;
    text-align: center;
    position: relative;
}
.footer-simple::before {
    content: "";
    display: block;
    position: absolute;
    top: 0; left: 0; width: 100%;
    height: 7px;
    background: linear-gradient(to bottom,
        var(--accent-red)    0%,   var(--accent-red)    42%,
        #ffffff              42%,  #ffffff              58%,
        var(--primary-dark)  58%,  var(--primary-dark)  100%
    );
}
