/* ========================================================================
   13 SUPER TROCA DE ÓLEO - STYLESHEET
   Arquivo CSS organizado e comentado
   ======================================================================== */

/* ========================================================================
   RESET E CONFIGURAÇÕES GLOBAIS
   ======================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

/* ========================================================================
   NAVEGAÇÃO (NAVBAR)
   ======================================================================== */

/* Barra de navegação fixa */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 2rem;
}

/* Estado da navbar após scroll */
nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Container da navegação */
.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ── Logo e branding ── */
.logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

/* Fundo premium escuro com borda dourada e brilho animado */
.logo-icon-wrapper {
    position: relative;
    width: 66px;
    height: 66px;
    flex-shrink: 0;
    border-radius: 17px;
    background: linear-gradient(150deg, #1c1200 0%, #2e1e00 50%, #1a1100 100%);
    box-shadow:
        0 0 0 1.5px rgba(255, 195, 0, 0.6),
        0 5px 20px rgba(0, 0, 0, 0.6),
        inset 0 1px 3px rgba(255, 200, 0, 0.15);
    animation: logo-breathe 4s ease-in-out infinite;
    overflow: hidden;
}

/* Glow pulsante suave */
@keyframes logo-breathe {
    0%, 100% {
        box-shadow:
            0 0 0 1.5px rgba(255, 195, 0, 0.55),
            0 5px 20px rgba(0, 0, 0, 0.6),
            inset 0 1px 3px rgba(255, 200, 0, 0.15);
    }
    50% {
        box-shadow:
            0 0 0 2px rgba(255, 210, 0, 0.9),
            0 5px 22px rgba(0, 0, 0, 0.55),
            0 0 16px rgba(255, 185, 0, 0.22),
            inset 0 1px 3px rgba(255, 200, 0, 0.2);
    }
}

/* Brilho diagonal deslizante */
.logo-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 17px;
    background: linear-gradient(
        120deg,
        transparent 20%,
        rgba(255, 225, 60, 0.1) 45%,
        rgba(255, 245, 100, 0.2) 52%,
        transparent 75%
    );
    background-size: 250% 250%;
    animation: logo-shine 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes logo-shine {
    0%, 100% { background-position: 0% 0%; }
    50%       { background-position: 200% 200%; }
}

/* A imagem da logo */
.logo-icon {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-image: url('./images/logo.png');
    background-size: 86%;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
}

/* Texto */
.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.1;
}

.logo-text h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: white;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
    transition: color 0.3s;
}

nav.scrolled .logo-text h1 {
    color: #1e293b;
    text-shadow: none;
}

.logo-text p {
    font-size: 0.62rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav.scrolled .logo-text p {
    color: #64748b;
}

/* Menu de navegação */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav.scrolled .nav-menu a {
    color: #334155;
}

.nav-menu a:hover {
    color: #FFE600;
}

nav.scrolled .nav-menu a:hover {
    color: #FFE600;
}

.nav-menu a.btn-primary {
    color: #334155;
}

.nav-menu a.btn-primary:hover {
    color: #ffffff;
}

nav.scrolled .nav-menu a.btn-primary:hover {
    color: #ffffff;
}

/* Botão do menu mobile */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    flex-shrink: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background: white;
    transition: all 0.3s ease;
}

nav.scrolled .mobile-menu-btn span {
    background: #1e293b;
}

/* ========================================================================
   BOTÕES GLOBAIS
   ======================================================================== */

/* Botão padrão */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
}

/* Botão primário (laranja) */
.btn-primary {
    background: linear-gradient(135deg, #FFE600, #CCA800);
    color: #0d1a40;
    box-shadow: 0 4px 6px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(245, 158, 11, 0.4);
}

/* Botão WhatsApp (verde) */
.btn-whatsapp {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.3);
    font-size: 1.125rem;
    padding: 1rem 2rem;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(16, 185, 129, 0.4);
}

/* Botão serviços */
.btn-services {
    padding: 14px 26px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

/* Botão outline (contorno amarelo) */
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 14px;
    border: 2px solid #FFE600;
    color: #FFE600;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background: #FFE600;
    color: #0d1a40;
    transform: translateY(-2px);
}

/* ========================================================================
   SEÇÃO HERO (PRINCIPAL) - VERSÃO PREMIUM
   ======================================================================== */

.hero {
    position: relative;
    padding-bottom: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('./images/caminhonetes.jpg') center/cover no-repeat;
    overflow: hidden;
}

/* Overlay com gradiente mais sofisticado */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right, 
        rgba(15, 23, 42, 0.75) 0%, 
        rgba(30, 41, 59, 0.50) 50%,
        rgba(51, 65, 85, 0.25) 100%
    );
    z-index: 1;
}

/* transição suave */
.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(
        to bottom,
        rgba(15, 23, 42, 0) 0%,
        rgba(15, 23, 42, 0.6) 40%,
        #f8fafc 100%
    );
}

/* Partículas decorativas animadas */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.particle:nth-child(1) {
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    bottom: -15%;
    left: -10%;
    width: 500px;
    height: 500px;
    animation-delay: 7s;
}

.particle:nth-child(3) {
    top: 40%;
    right: 20%;
    width: 300px;
    height: 300px;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.5;
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
        opacity: 0.4;
    }
}

/* Conteúdo do hero */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 10rem 2rem 8rem;
    width: 100%;
}

/* Badge de autoridade melhorado */
.hero-badge-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(245, 158, 11, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 50px;
    color: #FFE600;
    font-size: 0.95rem;
    font-weight: 600;
    width: fit-content;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.1);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.15));
    border-color: rgba(251, 191, 36, 0.5);
    transform: translateY(-2px);
}

.badge-icon {
    font-size: 1.25rem;
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-sub-badge {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
    margin-left: 0.5rem;
}

.hero-sub-badge span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .hero-sub-badge {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
        margin-left: 0.25rem;
    }
}

/* Título principal melhorado */
.hero-title-wrapper {
    margin-bottom: 3.5rem;
    max-width: 900px;
}

.hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.title-line {
    color: #ffffff;
    display: block;
}

.hero-title .highlight {
    display: block;
    background: linear-gradient(135deg, #FFE600 0%, #FFE600 50%, #FFE600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 4.25rem;
    position: relative;
    width: fit-content;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 140px;
    height: 6px;
    background: linear-gradient(90deg, #FFE600 0%, #FFE600 70%, transparent 100%);
    border-radius: 10px;
    animation: expand-line 1s ease-out forwards;
}

@keyframes expand-line {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 140px;
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: 1.35rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    font-weight: 400;
    margin-top: 0.5rem;
    letter-spacing: 0.01em;
}

/* Benefícios em cards modernos */
.hero-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    max-width: 1000px;
    width: 100%;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 1.75rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFE600, #FFE600);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.15);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #FFE600, #FFE600);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: #0d1a40;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Botões de ação melhorados */
.hero-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin: 3rem 0 2.5rem;
}

.btn-hero {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.25rem;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(251, 191, 36, 0.4);
    color: #FFE600;
}

.btn-hero-secondary:hover {
    background: rgba(251, 191, 36, 0.15);
    border-color: #FFE600;
    transform: translateY(-3px);
}

.btn-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.btn-hero-primary:hover .btn-shine {
    opacity: 1;
    left: 100%;
}

/* Selos de confiança redesenhados */
.hero-trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-badge i {
    color: #10b981;
    font-size: 1.25rem;
}


/* Indicador de scroll */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    animation: bounce 2s infinite;
}

.mouse {
    width: 28px;
    height: 45px;
    border: 2px solid rgba(251, 191, 36, 0.5);
    border-radius: 20px;
    position: relative;
    margin: 0 auto 0.75rem;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #FFE600;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 24px;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-indicator p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ========================================================================
   SEÇÃO DE ESTATÍSTICAS
   ======================================================================== */

.stats {
    background: #ffffff;
    padding: 5rem 2rem;
    position: relative;
}

/* Decoração sutil no topo */
.stats::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFE600 0%, #FFE600 100%);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 2rem;
    width: 100%;
    padding: 0 1rem;
}

.stat-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f3f4f6;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.15);
    border-color: #FFE600;
}

.stat-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #fff8c0 0%, #ffe94d 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.stat-item:hover .stat-icon-wrapper {
    transform: scale(1.1);
    background: linear-gradient(135deg, #FFE600 0%, #FFE600 100%);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.stat-icon {
    width: 40px;
    height: 40px;
    color: #CCA800;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-icon {
    color: #ffffff;
}

.stat-content {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.stat-plus,
.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: #FFE600;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    letter-spacing: 0.025em;
}

/* Animação de contagem */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item.animated .stat-number {
    animation: countUp 0.6s ease-out;
}

/* ========================================================================
   SEÇÕES GERAIS
   ======================================================================== */

section {
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Badge/etiqueta da seção */
.section-badge {
    display: inline-block;
    padding: 0.4rem 1.1rem;
    background: #fff8c0;
    color: #b45309;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* Título da seção */
.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.2rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.section-title .highlight {
    color: #FFE600;
}

/* Descrição da seção */
.section-description {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================================================
   SEÇÃO DE SERVIÇOS
   ======================================================================== */

/* Services Section */
.services {
    background: linear-gradient(to bottom, white, #f8fafc);
    padding: 5rem 0;
}

/* Services Grid (mantém para compatibilidade se necessário) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 1.5rem;
    width: 100%;
}

/* Card de serviço individual */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #FFE600, #FFE600);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-icon i {
    color: #0d1a40;
}

.service-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.65rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.75rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    color: #FFE600;
    font-weight: bold;
    font-size: 1.125rem;
}

/* Featured Services */
.featured-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    padding: 0 1rem;
    width: 100%;
}

.service-card-premium {
    position: relative;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 2px solid #f1f5f9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFE600, #FFE600);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card-premium:hover::before {
    transform: scaleX(1);
}

.service-card-premium:hover {
    transform: translateY(-8px);
    border-color: #FFE600;
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.15);
}

.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FFE600, #FFE600);
    color: #0d1a40;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-badge.free {
    background: linear-gradient(135deg, #10b981, #059669);
}

.service-icon-premium {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fff8c0, #ffe94d);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon-premium i {
    color: #FFE600;
}

.service-card-premium:hover .service-icon-premium {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #FFE600, #FFE600);
}

.service-card-premium:hover .service-icon-premium i {
    color: #0d1a40;
}

.service-card-premium h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card-premium p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-price-wrapper {
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: #f8fafc;
    border-radius: 12px;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-price-premium {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #FFE600;
    letter-spacing: -1px;
}

.service-price-premium.free {
    color: #10b981;
    font-size: 1.5rem;
}

.btn-service {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #FFE600, #FFE600);
    color: #0d1a40;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-service:hover {
    background: linear-gradient(135deg, #FFE600, #CCA800);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

/* Services Categories */
.services-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
}

.service-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.category-icon {
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFE600, #FFE600);
    border-radius: 12px;
    flex-shrink: 0;
}

.category-icon i {
    color: #0d1a40;
}

.category-header h3 {
    margin: 0;
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: bold;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.services-list li:last-child {
    border-bottom: none;
}

.service-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
}

.service-name::before {
    content: "✓";
    color: #FFE600;
    font-weight: bold;
    margin-right: 0.5rem;
}

.service-detail {
    font-size: 0.875rem;
    color: #64748b;
    margin-left: 1.5rem;
}

/* Services CTA */
.services-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
}

.services-cta p {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 500;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #FFF176 0%, #FFE600 40%, #F0C000 100%);
    color: #0d1a40;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 0 #A88700,
        0 6px 20px rgba(255, 210, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

/* Brilho deslizante */
.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.55) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    transition: left 0.55s ease;
    pointer-events: none;
}

.btn-cta:hover::before {
    left: 130%;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #FFF9A0 0%, #FFE600 40%, #E0B000 100%);
    transform: translateY(-3px);
    box-shadow:
        0 6px 0 #A88700,
        0 12px 32px rgba(255, 210, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-cta:active {
    transform: translateY(1px);
    box-shadow:
        0 2px 0 #A88700,
        0 4px 12px rgba(255, 210, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* ========================================================================
   SEÇÃO DE MARCAS
   ======================================================================== */

/* ========================================================================
   BRANDS SECTION - Design com Logos
   ======================================================================== */

.brands {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Efeito decorativo de fundo */
.brands::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.brands::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.brands .container {
    position: relative;
    z-index: 1;
}

/* ── Rótulo de categoria ── */
.brands-row-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 2rem 0 0.75rem 0.25rem;
}
.brands-row-label i {
    font-size: 0.9rem;
    color: #FFE600;
}
.brands-row-label span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}
.brands-row-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(255,220,0,0.2), transparent);
    margin-left: 0.5rem;
}

/* ── Carrossel infinito ── */
.brands-marquee-container {
    position: relative;
    overflow: hidden;
    padding: 1rem 0 1.2rem;
    width: 100%;
    /* Máscara 2D: desvanecer laterais sem cortar topo/base */
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 7%,
        black 93%,
        transparent 100%
    ), linear-gradient(to bottom, black 0%, black 100%);
    -webkit-mask-size: 100% 100%, 100% 100%;
    -webkit-mask-composite: destination-in;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 7%,
        black 93%,
        transparent 100%
    );
    mask-size: 100% 100%;
}
.brands-marquee-container:hover .brands-marquee-track {
    animation-play-state: paused;
}
.brands-marquee-track {
    display: flex;
    gap: 1.2rem;
    width: max-content;
    will-change: transform;
    /* Animação controlada via JS — sem CSS animation */
}

/* ── Brand cards ── */
.brands-marquee-track .brand-card {
    animation: none !important;
    flex-shrink: 0;
    width: 148px;
    min-height: 112px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 1rem;
    position: relative;
    overflow: visible;
    cursor: pointer;
    transition: transform .35s cubic-bezier(.34,1.56,.64,1),
                box-shadow .3s ease, border-color .3s ease, background .3s ease;
    isolation: isolate;
}
/* Pseudo-elementos ficam dentro do contorno arredondado */
.brands-marquee-track .brand-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(105deg, transparent 20%, rgba(255,225,0,.16) 50%, transparent 80%);
    background-size: 250% 100%;
    background-position: -100% 0;
    transition: background-position .5s ease;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}
.brands-marquee-track .brand-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 15%;
    width: 0; height: 2px;
    border-radius: 0 0 16px 16px;
    background: linear-gradient(90deg, transparent, #FFE600, transparent);
    transition: width .35s ease;
    z-index: -1;
}
.brands-marquee-track .brand-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255,225,0,.09);
    border-color: rgba(255,220,0,.45);
    box-shadow: 0 16px 36px rgba(0,0,0,.35), 0 0 20px rgba(255,180,0,.18);
}
.brands-marquee-track .brand-card:hover::before { background-position: 200% 0; }
.brands-marquee-track .brand-card:hover::after  { width: 70%; }

.brands-marquee-track .brand-logo {
    display: flex; align-items: center; justify-content: center; width: 100%;
}
.brands-marquee-track .brand-logo img {
    max-width: 100%;
    max-height: 56px;
    object-fit: contain;
    transition: transform .4s cubic-bezier(.34,1.56,.64,1), filter .3s ease;
}
.brands-marquee-track .brand-card:hover .brand-logo img {
    transform: scale(1.18) translateY(-3px);
    filter: brightness(1.1) saturate(1.2) drop-shadow(0 4px 10px rgba(255,180,0,.4));
}
.brands-marquee-track .brand-fallback {
    display: flex; flex-direction: column; align-items: center; gap: .4rem;
}
.brands-marquee-track .brand-fallback i {
    font-size: 1.75rem; color: #FFE600;
    transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.brands-marquee-track .brand-fallback span {
    font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.8);
    transition: color .3s;
}
.brands-marquee-track .brand-card:hover .brand-fallback i  { transform: scale(1.25) translateY(-3px); }
.brands-marquee-track .brand-card:hover .brand-fallback span { color: #FFE600; }

@media (max-width: 768px) {
    .brands-marquee-track .brand-card { width: 118px; min-height: 94px; padding: 1rem .75rem; }
    .brands-marquee-track .brand-logo img { max-height: 42px; }
    .brands-marquee-container {
        mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
        mask-size: 100% 100%;
        -webkit-mask-size: 100% 100%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ========================================================================
   SEÇÃO DE PROCESSO (COMO FUNCIONA)
   ======================================================================== */

.process {
    background: #f8fafc;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #FFE600, #CCA800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d1a40;
    font-size: 1.5rem;
    font-weight: bold;
}

.process-step h3 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.process-step p {
    color: #64748b;
    line-height: 1.6;
}

/* ========================================================================
   SEÇÃO FAQ (PERGUNTAS FREQUENTES)
   ======================================================================== */

.faq {
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active {
    border-color: #FFE600;
}

/* Pergunta (botão clicável) */
.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    text-align: left;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question .icon {
    font-size: 1.5rem;
    color: #FFE600;
    transition: transform 0.3s;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}

/* Resposta (expansível) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #64748b;
    line-height: 1.6;
}

/* ========================================================================
   SEÇÃO DE GALERIA
   ======================================================================== */

.gallery {
    background: linear-gradient(to bottom, #f8fafc, white);
}

/* Container do carrossel */
.carousel {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

/* Botões de navegação do carrossel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 16px;
}

.carousel-btn.next {
    right: 16px;
}

/* Indicadores (dots) do carrossel */
.carousel-dots {
    position: absolute;
    bottom: 16px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.carousel-dots span {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dots span.active {
    background: #FFE600;
    width: 30px;
    border-radius: 5px;
}

/* ========================================================================
   SEÇÃO DE DEPOIMENTOS
   ======================================================================== */

.testimonials {
    background: linear-gradient(to bottom, #f8fafc, white);
}

/* Resumo de avaliações */
.reviews-summary {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    margin: 40px auto;
    flex-wrap: wrap;
    max-width: 900px;
}

.reviews-score {
    min-width: 100px;
    text-align: center;
    flex-shrink: 0;
}

.reviews-score .score {
    font-size: 48px;
    font-weight: 700;
    color: #FFE600;
    display: block;
    line-height: 1;
}

.reviews-score .stars {
    color: #FFE600;
    font-size: 24px;
    letter-spacing: 2px;
    justify-content: center;
}

.reviews-score small {
    color: #64748b;
    display: block;
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.4;
}

.reviews-score small strong {
    color: #1e293b;
}

/* Barras de progresso das avaliações */
.reviews-bars {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.reviews-bars .bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.reviews-bars span {
    min-width: 20px;
    color: #64748b;
    font-weight: 600;
    font-size: 14px;
}

.progress {
    background: #e5e7eb;
    height: 10px;
    border-radius: 999px;
    flex: 1;
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress div {
    height: 100%;
    background: linear-gradient(90deg, #FFE600, #FFE600);
    border-radius: 999px;
    transition: width 0.6s ease;
}

/* Nota de confiança */
.trust-note {
    text-align: center;
    margin: 24px auto 40px;
    color: #64748b;
    font-size: 15px;
    font-weight: 500;
    background: #fff8c0;
    padding: 12px 24px;
    border-radius: 50px;
    display: inline-block;
    width: auto;
    max-width: 100%;
}

.testimonials .container {
    text-align: center;
}

/* Grid de depoimentos */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
}

/* Card de depoimento individual */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.testimonial-card:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* Estrelas de avaliação */
.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    justify-content: flex-start;
}

.star {
    color: #FFE600;
    font-size: 1.25rem;
}

.testimonial-text {
    color: #64748b;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: left;
    font-size: 1rem;
}

/* Autor do depoimento */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FFE600, #CCA800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d1a40;
    font-weight: bold;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.author-name {
    font-weight: bold;
    color: #1e293b;
    text-align: left;
    font-size: 0.95rem;
}

/* ========================================================================
   SEÇÃO DE UNIDADES
   ======================================================================== */

/* Informações de endereço */
.address-info {
    font-size: 1rem;
    line-height: 1.8;
    color: #64748b;
    margin: 1.5rem 0;
}

/* Bloco de Informações de Contato */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff8c0, #ffe94d);
    color: #CCA800;
    border-radius: 10px;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item .fa-whatsapp {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #059669;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #FFE600;
}

/* Botões de contato nas unidades */
.contact-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-buttons .btn {
    flex: 1;
    justify-content: center;
    text-align: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid #FFE600;
    color: #FFE600;
}

.btn-outline:hover {
    background: #FFE600;
    color: #0d1a40;
    transform: translateY(-2px);
}

/* ========================================================================
   SEÇÃO FINAL CTA - Design Moderno e Profissional
   ======================================================================== */

.final-cta-section {
    position: relative;
    min-height: 800px;
    background: url("./images/loja\ geral.jpg") center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    padding: 5rem 2rem;
}

/* Overlay com gradiente */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.95) 0%,
        rgba(30, 41, 59, 0.92) 50%,
        rgba(15, 23, 42, 0.95) 100%
    );
    z-index: 1;
}

/* Conteúdo principal */
.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Badge superior */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(251, 191, 36, 0.1);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 50px;
    color: #FFE600;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.cta-badge i {
    font-size: 1.125rem;
}

/* Título */
.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-highlight {
    display: block;
    background: linear-gradient(135deg, #FFE600, #FFE600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtítulo */
.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* Grid de Benefícios */
.cta-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 2rem;
    margin: 3rem 0;
    width: 100%;
}

.cta-benefit-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
}

.cta-benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(251, 191, 36, 0.5);
    transform: translateY(-8px);
}

.benefit-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #FFE600, #FFE600);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #0d1a40;
    transition: transform 0.4s ease;
}

.cta-benefit-item:hover .benefit-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.cta-benefit-item h4 {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-benefit-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Estatísticas */
.cta-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 3rem 0;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFE600, #FFE600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label-end {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* Botões de Ação */
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.cta-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #FFE600;
    transform: translateY(-4px);
}

/* Informações de Contato (CTA) - Design Compacto */
.cta-contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-divider {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-phones {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.phone-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.phone-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(251, 191, 36, 0.3);
    transform: translateY(-2px);
}

.phone-item i {
    color: #FFE600;
    font-size: 1.1rem;
}

.phone-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.phone-unit {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phone-number {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.contact-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
}

/* Garantias */
.cta-guarantees {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.guarantee-item i {
    color: #10b981;
    font-size: 1.125rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .final-cta-section {
        min-height: auto;
        padding: 4rem 1.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .cta-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .stat-divider {
        width: 80%;
        height: 1px;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .cta-contact-info {
        margin-top: 1.25rem;
    }

    .contact-phones {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .phone-item {
        width: 100%;
        justify-content: flex-start;
        padding: 1rem 1.25rem;
    }

    .contact-separator {
        display: none;
    }

    .phone-number {
        font-size: 0.95rem;
    }

    .cta-guarantees {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

/* ========================================================================
   FOOTER
   ======================================================================== */

/* ========================================================================
   FOOTER — Design elegante e profissional
   ======================================================================== */

.footer {
    background: #030712;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

/* Linha superior com gradiente colorido */
.footer-topbar {
    height: 3px;
    background: linear-gradient(90deg, #10b981 0%, #059669 40%, #f59e0b 70%, #ef4444 100%);
}

/* Textura sutil de fundo */
.footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(16,185,129,0.04) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(245,158,11,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 32px 48px;
    display: grid;
    grid-template-columns: 1.4fr 1px 1fr 1px 0.9fr;
    gap: 0 48px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Divisores verticais */
.footer-vdivider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1) 20%, rgba(255,255,255,0.1) 80%, transparent);
    align-self: stretch;
    min-height: 200px;
}

/* Título das colunas */
.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin: 0 0 20px;
}

/* ── COLUNA MARCA ── */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    animation: logo-breathe 4s ease-in-out infinite;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-logo-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-logo-sub {
    font-size: 0.6rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 4px;
}

.footer-tagline {
    font-size: 13px;
    line-height: 1.75;
    color: rgba(255,255,255,0.45);
    margin: 0 0 24px;
    max-width: 280px;
}

/* Redes sociais */
.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s, box-shadow 0.2s;
    width: fit-content;
    border: 1px solid transparent;
}

.footer-social-icon svg {
    width: 16px;
    height: 16px;
    fill: #fff;
    flex-shrink: 0;
}

.footer-social-icon span {
    color: #fff;
    letter-spacing: 0.02em;
}

.footer-social-icon--wa {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.25);
}

.footer-social-icon--wa:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.5);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(37,211,102,0.15);
}

.footer-social-icon--ig {
    background: rgba(221, 42, 123, 0.1);
    border-color: rgba(221, 42, 123, 0.22);
}

.footer-social-icon--ig:hover {
    background: rgba(221, 42, 123, 0.18);
    border-color: rgba(221, 42, 123, 0.45);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(221,42,123,0.15);
}

/* ── COLUNA UNIDADES ── */
.footer-unit {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-unit-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    flex-shrink: 0;
    margin-top: 5px;
    box-shadow: 0 0 6px rgba(16,185,129,0.6);
}

.footer-unit div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-unit strong {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    display: block;
}

.footer-unit span {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    display: block;
}

.footer-unit a {
    font-size: 13px;
    color: #10b981;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
    margin-top: 2px;
}

.footer-unit a:hover { color: #34d399; }

.footer-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    margin-top: 4px;
    padding: 10px 12px;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.07);
}

.footer-hours svg {
    width: 14px;
    height: 14px;
    stroke: rgba(255,255,255,0.35);
    flex-shrink: 0;
}

/* ── COLUNA SERVIÇOS ── */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
    cursor: default;
}

.footer-links li:hover { color: rgba(255,255,255,0.85); }

.footer-link-dot {
    color: #10b981;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
}

/* ── BARRA INFERIOR ── */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    position: relative;
    z-index: 1;
}

.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    flex-wrap: wrap;
}

.footer-bottom-sep {
    opacity: 0.3;
}

.footer-bottom-inner a {
    color: #10b981;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-inner a:hover { color: #34d399; }

/* ========================================================================
   BOTÃO FLUTUANTE DO WHATSAPP
   ======================================================================== */

.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.4);
    z-index: 1000;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* ========================================================================
   ANIMAÇÕES
   ======================================================================== */

/* Animação de fade-in */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animação de reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Delays para animações em sequência */
.reveal.delay-1 { 
    transition-delay: 0.1s; 
}

.reveal.delay-2 { 
    transition-delay: 0.2s; 
}

.reveal.delay-3 { 
    transition-delay: 0.3s; 
}

/* Efeito extra sutil no destaque do hero */
.reveal.highlight {
    transform: translateY(15px);
}

/* Animação de pulso para o botão WhatsApp */
@keyframes pulse {
    0%, 100% { 
        box-shadow: 0 8px 16px rgba(16, 185, 129, 0.4); 
    }
    50% { 
        box-shadow: 0 8px 24px rgba(16, 185, 129, 0.6); 
    }
}

/* ========================================================================
   RESPONSIVIDADE - MOBILE E TABLET
   ======================================================================== */

@media (max-width: 768px) {
    /* ====================================================================
       NAVEGAÇÃO MOBILE
       ==================================================================== */
    
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    nav {
        padding: 0.75rem 1.5rem;
    }

    .logo-icon-wrapper {
        width: 50px;
        height: 50px;
        border-radius: 13px;
    }
    .logo {
        gap: 0.65rem;
    }
    .logo-text h1 {
        font-size: 1.1rem;
    }
    .logo-text p {
        font-size: 0.58rem;
    }

    /* ====================================================================
       HERO SECTION MOBILE
       ==================================================================== */

    .hero-content {
        padding: 6rem 1.5rem 4rem;
        gap: 24px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.85rem;
    }

    .hero-title-wrapper {
        margin-bottom: 2.5rem;
    }

    .hero-title {
        font-size: 3rem;
        gap: 0.35rem;
        margin-bottom: 1.5rem;
    }

    .hero-title .highlight {
        font-size: 2.75rem;
    }

    .hero-title .highlight::after {
        width: 100px;
        height: 5px;
        bottom: -12px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .hero-points {
        gap: 16px;
        margin: 24px 0;
    }

    .hero-point {
        padding: 14px 16px;
    }

    .hero-point .icon {
        font-size: 20px;
    }

    .hero-point strong {
        font-size: 15px;
    }

    .hero-point p {
        font-size: 14px;
    }

    /* Mantém hover effect no mobile */
    .hero-point:active {
        background: rgba(255, 255, 255, 0.14);
        transform: translateY(-2px);
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .btn-whatsapp {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }

    .btn-outline {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .hero-features {
        gap: 1rem;
        font-size: 0.85rem;
    }

    /* ====================================================================
       ESTATÍSTICAS MOBILE
       ==================================================================== */
    
    .stats {
        padding: 3rem 1rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 2rem 1.5rem;
    }
    
    .stat-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .stat-icon {
        width: 30px;
        height: 30px;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .stat-plus,
    .stat-suffix {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }

    /* ====================================================================
       SEÇÕES GERAIS MOBILE
       ==================================================================== */
    
    section {
        padding: 4rem 1.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.85rem;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .section-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* ====================================================================
       SERVIÇOS MOBILE
       ==================================================================== */
    
    .services {
        padding: 3rem 1rem;
    }

    /* Featured Services Mobile */
    .featured-services {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
    }
    
    .service-card-premium {
        padding: 2rem 1.5rem;
    }

    /* Mantém animação de hover no mobile */
    .service-card-premium:active::before {
        transform: scaleX(1);
    }

    .service-card-premium:active {
        transform: translateY(-4px);
        border-color: #FFE600;
    }
    
    .premium-badge {
        top: 15px;
        right: 15px;
        font-size: 0.7rem;
        padding: 0.35rem 0.85rem;
    }

    .service-icon-premium {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    /* Mantém animação do ícone no mobile */
    .service-card-premium:active .service-icon-premium {
        transform: scale(1.05) rotate(3deg);
    }

    .service-card-premium h3 {
        font-size: 1.35rem;
    }

    .service-card-premium p {
        font-size: 0.9rem;
    }

    .service-price-wrapper {
        padding: 1rem;
    }

    .price-label {
        font-size: 0.7rem;
    }
    
    .service-price-premium {
        font-size: 1.75rem;
    }

    .service-price-premium.free {
        font-size: 1.35rem;
    }

    .btn-service {
        padding: 0.875rem;
        font-size: 0.9rem;
    }

    /* Mantém hover do botão no mobile */
    .btn-service:active {
        background: linear-gradient(135deg, #FFE600, #CCA800);
        transform: translateY(-1px);
    }

    /* Categories Mobile */
    .services-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .service-category {
        padding: 1.5rem;
    }

    /* Mantém hover effect no mobile */
    .service-category:active {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }
    
    .category-header {
        gap: 0.75rem;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }

    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .category-header h3 {
        font-size: 1.1rem;
    }

    .services-list li {
        padding: 0.875rem 0;
    }

    .service-name {
        font-size: 0.95rem;
    }

    .service-detail {
        font-size: 0.825rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    /* Mantém hover no mobile */
    .service-card:active {
        transform: translateY(-4px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    }

    /* CTA Section Mobile */
    .services-cta {
        margin-top: 2rem;
        padding: 1.5rem;
    }

    .services-cta p {
        font-size: 1rem;
    }

    .btn-cta {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    /* Mantém hover do CTA no mobile */
    .btn-cta:active {
        background: linear-gradient(135deg, #FFE600, #CCA800);
        transform: translateY(-1px);
    }

    /* ====================================================================
       MARCAS MOBILE
       ==================================================================== */
    
    .brands {
        padding: 3.5rem 1.5rem;
    }

    /* Tabs Mobile */
    .brands-tabs {
        gap: 0.75rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }

    .brands-tabs .tab-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        flex: 1;
        min-width: 140px;
    }

    .brands-tabs .tab-btn:active {
        transform: scale(0.98);
    }

    /* Grid responsivo mobile */
    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 1rem;
    }

    .brand-card {
        padding: 1.5rem 1rem;
        min-height: 100px;
    }

    .brand-logo img {
        max-height: 45px;
    }

    .brand-fallback i {
        font-size: 1.5rem;
    }

    .brand-fallback span {
        font-size: 0.8rem;
    }

    /* Grid de Marcas Mobile */
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .brand-item {
        padding: 1.75rem 1rem;
        font-size: 1rem;
        width: 100%;
    }

    /* Mantém animação e hover no mobile */
    .brand-item:active {
        transform: translateY(-4px) scale(1.01);
        box-shadow: 0 8px 16px rgba(245, 158, 11, 0.25);
        background: rgba(245, 158, 11, 0.08);
        border-color: rgba(245, 158, 11, 0.3);
        color: #FFE600;
    }

    /* Reduz delay das animações no mobile */
    .brand-item:nth-child(n) {
        animation-delay: 0.05s;
    }

    /* ====================================================================
       PROCESSO MOBILE
       ==================================================================== */
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-step {
        padding: 1.5rem;
    }

    .step-number {
        width: 56px;
        height: 56px;
        font-size: 1.35rem;
        margin-bottom: 1.25rem;
    }

    .process-step h3 {
        font-size: 1.15rem;
    }

    .process-step p {
        font-size: 0.95rem;
    }

    /* ====================================================================
       FAQ MOBILE
       ==================================================================== */
    
    .faq-container {
        padding: 0 1rem;
    }

    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }

    .faq-question .icon {
        font-size: 1.35rem;
    }

    /* Mantém hover no mobile */
    .faq-question:active {
        background: #f1f5f9;
    }

    .faq-answer p {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.95rem;
    }

    /* ====================================================================
       GALERIA/CARROSSEL MOBILE
       ==================================================================== */
    
    .carousel {
        border-radius: 12px;
    }

    .carousel-slide img {
        height: 300px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .carousel-btn.prev {
        left: 12px;
    }

    .carousel-btn.next {
        right: 12px;
    }

    /* Mantém hover no mobile */
    .carousel-btn:active {
        background: white;
        transform: translateY(-50%) scale(1.05);
    }

    .carousel-dots {
        bottom: 12px;
        gap: 6px;
    }

    .carousel-dots span {
        width: 8px;
        height: 8px;
    }

    .carousel-dots span.active {
        width: 24px;
    }

    /* ====================================================================
       DEPOIMENTOS MOBILE
       ==================================================================== */
    
    /* Resumo de Reviews Mobile */
    .reviews-summary {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 0 1rem;
    }

    .reviews-score {
        width: 100%;
    }

    .reviews-score .score {
        font-size: 56px;
    }

    .reviews-score .stars {
        font-size: 28px;
    }

    .reviews-score small {
        font-size: 13px;
    }

    .reviews-bars {
        width: 100%;
        max-width: 100%;
    }

    .reviews-bars .bar {
        gap: 10px;
        margin-bottom: 10px;
    }

    .reviews-bars span {
        font-size: 13px;
    }

    .progress {
        height: 8px;
    }

    .trust-note {
        font-size: 14px;
        padding: 10px 20px;
        margin: 16px auto 32px;
    }

    /* Grid de Depoimentos Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    /* Mantém hover no mobile */
    .testimonial-card:active {
        box-shadow: 0 12px 18px rgba(0, 0, 0, 0.12);
        transform: translateY(-3px);
    }

    .stars {
        margin-bottom: 0.85rem;
    }

    .star {
        font-size: 1.15rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .author-avatar {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .author-name {
        font-size: 0.9rem;
    }

    /* ====================================================================
       UNIDADES - Responsividade Mobile
       ==================================================================== */
    
    .contact-info {
        padding: 1rem;
    }

    .contact-item {
        gap: 0.75rem;
    }

    .contact-item i {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .contact-label {
        font-size: 0.7rem;
    }

    .contact-value {
        font-size: 1rem;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn {
        font-size: 0.85rem;
        padding: 0.65rem 1.25rem;
    }

    /* Mantém hover effects nos botões mobile */
    .btn-primary:active {
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(245, 158, 11, 0.35);
    }

    .btn-whatsapp:active {
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(16, 185, 129, 0.35);
    }

    .btn-outline:active {
        background: #FFE600;
        color: #0d1a40;
        transform: translateY(-1px);
    }

    /* ====================================================================
       FOOTER MOBILE
       ==================================================================== */
    
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px 0;
        padding: 40px 20px 32px;
    }

    .footer-vdivider {
        display: none;
    }

    .footer-tagline {
        max-width: 100%;
    }

    .footer-socials {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-bottom-inner {
        padding: 16px 20px;
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .footer-bottom-sep {
        display: none;
    }

    /* ====================================================================
       BOTÃO WHATSAPP FLUTUANTE MOBILE
       ==================================================================== */
    
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 1.25rem;
        right: 1.25rem;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    /* Mantém animação no mobile */
    .whatsapp-float:active {
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(16, 185, 129, 0.5);
    }

    /* ====================================================================
       BOTÕES GERAIS MOBILE
       ==================================================================== */
    
    .contact-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn {
        font-size: 0.85rem;
        padding: 0.65rem 1.25rem;
    }

    /* Mantém hover effects nos botões mobile */
    .btn-primary:active {
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(245, 158, 11, 0.35);
    }

    .btn-whatsapp:active {
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(16, 185, 129, 0.35);
    }

    .btn-outline:active {
        background: #FFE600;
        color: #020617;
        transform: translateY(-1px);
    }
}

/* ========================================================================
   GALLERY - Galeria Moderna com Filtros e Lightbox
   ======================================================================== */

.gallery-section {
    padding: 5rem 2rem;
    background: #fafafa;
}

/* Filtros da Galeria */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #FFE600;
    color: #FFE600;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #FFE600, #FFE600);
    color: #0d1a40;
    border-color: #FFE600;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

/* Grid da Galeria */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item.hide {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Overlay do Item */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h4 {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.gallery-expand {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: #FFE600;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-expand {
    opacity: 1;
    transform: scale(1);
}

.gallery-expand:hover {
    background: #FFE600;
    color: #0d1a40;
    transform: scale(1.1);
}

/* ========================================================================
   LIGHTBOX - Modal para visualização ampliada
   ======================================================================== */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 1200px;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
}

.lightbox-caption {
    text-align: center;
    color: white;
    margin-top: 1.5rem;
}

.lightbox-caption h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.lightbox-caption p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Botões do Lightbox */
.lightbox-close,
.lightbox-nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
    font-size: 1.5rem;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: #FFE600;
    border-color: #FFE600;
    transform: scale(1.1);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Contador do Lightbox */
.lightbox-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Responsivo da Galeria */
@media (max-width: 768px) {
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }

    .lightbox-counter {
        bottom: 1rem;
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
}

/* ========================================================================
   GALERIA MOBILE — CARROSSEL ELEGANTE
   ======================================================================== */

.gallery-carousel-wrapper {
    display: none;
}

@media (max-width: 768px) {

    /* Esconde o grid original no mobile */
    .gallery-grid {
        display: none !important;
    }

    /* Mostra o carrossel */
    .gallery-carousel-wrapper {
        display: block;
        position: relative;
        margin-top: 1.5rem;
        border-radius: 20px;
        overflow: hidden;
    }

    /* Track deslizante */
    .gallery-carousel-track {
        display: flex;
        transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
    }

    /* Cada slide */
    .gallery-carousel-slide {
        flex: 0 0 100%;
        width: 100%;
        position: relative;
        aspect-ratio: 4/3;
        overflow: hidden;
        cursor: pointer;
    }

    .gallery-carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    /* Overlay sempre visível */
    .gallery-carousel-slide .gallery-overlay {
        opacity: 1;
        background: linear-gradient(
            to bottom,
            transparent 45%,
            rgba(0, 0, 0, 0.25) 65%,
            rgba(0, 0, 0, 0.82) 100%
        );
    }

    .gallery-carousel-slide .gallery-info h4 {
        font-size: 1rem;
        font-weight: 700;
    }

    .gallery-carousel-slide .gallery-info p {
        font-size: 0.8rem;
        opacity: 0.85;
    }

    /* Botão expandir sempre visível */
    .gallery-carousel-slide .gallery-expand {
        opacity: 1;
        transform: scale(1);
        width: 38px;
        height: 38px;
        font-size: 1rem;
        top: 0.75rem;
        right: 0.75rem;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(6px);
    }

    /* Setas laterais */
    .gallery-carousel-prev,
    .gallery-carousel-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.18);
        backdrop-filter: blur(8px);
        border: 1.5px solid rgba(255, 255, 255, 0.35);
        color: white;
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.25s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .gallery-carousel-prev { left: 0.75rem; }
    .gallery-carousel-next { right: 0.75rem; }

    .gallery-carousel-prev:active,
    .gallery-carousel-next:active {
        background: rgba(255, 230, 0, 0.8);
        border-color: #FFE600;
        color: #0d1a40;
        transform: translateY(-50%) scale(0.93);
    }

    /* Contador  "3 / 13" */
    .gallery-carousel-counter {
        position: absolute;
        top: 0.75rem;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(8px);
        color: white;
        font-size: 0.75rem;
        font-weight: 600;
        padding: 0.28rem 0.8rem;
        border-radius: 50px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        letter-spacing: 0.05em;
        z-index: 10;
        white-space: nowrap;
    }

    /* Dots */
    .gallery-carousel-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        margin-top: 1rem;
        flex-wrap: wrap;
        padding: 0 1rem;
    }

    .gallery-carousel-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #cbd5e1;
        cursor: pointer;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .gallery-carousel-dot.active {
        background: #FFE600;
        width: 22px;
        border-radius: 4px;
        box-shadow: 0 0 6px rgba(255, 230, 0, 0.55);
    }

    /* Filtros no mobile */
    .gallery-filters {
        gap: 0.4rem;
        margin: 1.5rem 0 1rem;
    }

    .filter-btn {
        padding: 0.55rem 1rem;
        font-size: 0.78rem;
    }
}

/* ====================================================================
   TABLET (768px - 1024px)
   ==================================================================== */

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-title .highlight {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .container {
        max-width: 960px;
        padding: 0 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title .highlight {
        font-size: 2.25rem;
    }

    .hero-title .highlight::after {
        width: 80px;
        height: 4px;
        bottom: -10px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* ========================================================================
   OTIMIZAÇÕES DE PERFORMANCE PARA IMAGENS
   ======================================================================== */

/* Previne layout shift com aspect-ratio nas imagens da galeria */
.gallery-item img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    will-change: transform;
    /* Sugestão de decode assíncrono para melhor performance */
    content-visibility: auto;
}

/* Suaviza carregamento de imagens lazy */
.gallery-item img[loading="lazy"] {
    opacity: 0;
    animation: fadeInImage 0.5s ease-in forwards;
}

@keyframes fadeInImage {
    to {
        opacity: 1;
    }
}

/* Otimiza renderização durante scroll */
.gallery-grid {
    contain: layout style paint;
}

/* Melhora performance do lightbox */
.lightbox {
    will-change: opacity;
    contain: layout style paint;
}

.lightbox-content img {
    will-change: transform;
}
/* ========================================================================
   CORREÇÕES RESPONSIVIDADE - ANTI OVERFLOW HORIZONTAL
   ======================================================================== */

/* Garante que nenhum elemento vaze para fora da tela */
section,
.hero,
.stats,
.brands,
.gallery-section,
.testimonials,
.final-cta-section,
.footer {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Hamburguer animado — estado "aberto" (X) */
.mobile-menu-btn.open span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.mobile-menu-btn.open span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Menu mobile aberto */
@media (max-width: 768px) {
    .nav-menu[style*="flex"] {
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }

    /* Imagens não devem vazar */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Hero benefits: força 1 coluna no mobile */
    .hero-benefits {
        grid-template-columns: 1fr;
    }

    /* Botões hero responsivos */
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
    }

    /* Trust badges responsivos */
    .hero-trust-badges {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* CTA stats responsivo */
    .cta-stats {
        overflow-x: hidden;
    }

    /* Particle no mobile - evitar overflow */
    .particle {
        max-width: 100vw;
    }
}