/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ===== VARIÁVEIS ===== */
:root {
    --azul-principal: #0f52c1;
    --azul-claro: #4a8af4;
    --azul-hover: #1a66f5;
    --azul-glass: rgba(15, 82, 193, 0.08);
    --azul-glow: rgba(74, 138, 244, 0.3);
    --verde-whatsapp: #22c55e;
    --verde-hover: #16a34a;
    --branco: #ffffff;
    --branco-fundo: #f7f9fc;
    --cinza-escuro: #0d1117;
    --cinza-medio: #64748b;
    --cinza-claro: #e2e8f0;
    --cinza-suave: #f1f5f9;
    --sombra: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.05);
    --sombra-media: 0 8px 24px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
    --sombra-hover: 0 24px 48px rgba(0,0,0,0.1), 0 8px 16px rgba(0,0,0,0.06);
    --sombra-azul: 0 8px 32px rgba(15, 82, 193, 0.22);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-pill: 999px;
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes floatY {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-6px); }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--azul-glow); }
    50%       { box-shadow: 0 0 0 12px transparent; }
}

@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes spinSlow {
    to { transform: rotate(360deg); }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.38s; }
.delay-4 { animation-delay: 0.52s; }
.delay-5 { animation-delay: 0.68s; }

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--branco-fundo);
    color: var(--cinza-escuro);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== TÍTULOS GLOBAIS ===== */
.section-title {
    
    font-size: 2.6rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--cinza-escuro);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.section-subtitle {
    text-align: center;
    color: var(--cinza-medio);
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 3.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ===== NAVBAR PREMIUM ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    border-bottom-color: var(--cinza-claro);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05), 0 4px 16px rgba(0,0,0,0.04);
}

/* Container interno — Grid 3 colunas simétricas (centro geométrico real) */
.nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 5%;
    height: 68px;
    max-width: 1280px;
    margin: 0 auto;
    transition: height 0.35s ease;
}

header.scrolled .nav-inner {
    height: 60px;
}

/* ── Logo (esquerda) ── */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
    justify-self: start;
}

.logo {
    height: 44px;
    width: auto;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 2px 6px rgba(15, 82, 193, 0.12));
}

.logo-container:hover .logo {
    transform: scale(1.06) rotate(-1deg);
}

.company-name { line-height: 1.15; }

.name-main {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--azul-principal);
    display: block;
    letter-spacing: -0.02em;
}

.name-sub {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--azul-claro);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: block;
}

/* ── Links centrais ── */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    justify-self: center;
}

.nav-link {
    position: relative;
    padding: 0.45rem 0.85rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--cinza-medio);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: color 0.22s ease, background 0.22s ease;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--azul-principal);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0.7;
}

.nav-link:hover {
    color: var(--azul-principal);
    background: var(--azul-glass);
}

.nav-link:hover::after {
    width: calc(100% - 1.7rem);
}

/* ── Botão CTA (direita) ── */
.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    white-space: nowrap;
    color: var(--azul-principal);
    background: transparent;
    border: 1.5px solid rgba(15, 82, 193, 0.35);
    transition: all 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    justify-self: end;
}

.btn-nav-cta i {
    font-size: 1rem;
    opacity: 0.85;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.btn-nav-cta:hover {
    background: var(--azul-principal);
    border-color: var(--azul-principal);
    color: var(--branco);
    box-shadow: var(--sombra-azul);
    transform: translateY(-1px);
}

.btn-nav-cta:hover i {
    opacity: 1;
    transform: scale(1.1);
}

/* ── Responsividade ── */
@media (max-width: 768px) {
    .nav-links { display: none; }

    /* Volta para flex no mobile — logo esquerda, botão direita */
    .nav-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 60px;
    }

    /* Botão vira círculo azul com ícone WhatsApp */
    .btn-nav-cta span { display: none; }

    .btn-nav-cta {
        padding: 0;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        justify-content: center;
        background: var(--azul-principal);
        border-color: var(--azul-principal);
        box-shadow: var(--sombra-azul);
        color: var(--branco);
        flex-shrink: 0;
    }

    .btn-nav-cta i {
        font-size: 1.25rem;
        opacity: 1;
        color: var(--branco);
    }

    .btn-nav-cta:hover {
        background: var(--azul-hover);
        border-color: var(--azul-hover);
        box-shadow: 0 6px 20px rgba(15, 82, 193, 0.4);
        transform: translateY(-1px);
    }

    .btn-nav-cta:hover i {
        color: var(--branco);
        transform: scale(1.1);
    }
}

@media (max-width: 480px) {
    .nav-inner { padding: 0 5%; height: 56px; }
    .logo { height: 38px; }
    .name-main { font-size: 1.2rem; }
    .name-sub { font-size: 0.63rem; }
}

/* ===== MAIN ===== */
main { margin-top: 68px; }

@media (max-width: 480px) {
    main { margin-top: 56px; }
}

/* ===== HERO ===== */
.hero {
    padding: 6rem 5%;
    background: var(--branco);
    position: relative;
    overflow: hidden;
}

/* Fundo decorativo sutil */
.hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 138, 244, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 82, 193, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Badge acima do título */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--azul-glass);
    color: var(--azul-principal);
    border: 1px solid rgba(15, 82, 193, 0.15);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--azul-claro);
    animation: glowPulse 2s infinite;
    box-shadow: 0 0 0 3px var(--azul-glow);
}

.hero h1 {
    
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--cinza-escuro);
    letter-spacing: -0.04em;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: var(--azul-principal);
    position: relative;
    display: inline-block;
}

/* Underline animado no highlight */
.highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--azul-principal), var(--azul-claro));
    border-radius: 2px;
    opacity: 0.4;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--cinza-medio);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
    font-weight: 400;
}

/* Botões */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background: var(--azul-principal);
    color: white;
    padding: 0.9rem 2.2rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--sombra-azul);
    border: none;
    cursor: pointer;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.btn-primary:hover {
    background: var(--azul-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(15, 82, 193, 0.35);
}

.btn-primary:active { transform: translateY(-1px); }

.btn-secondary {
    background: transparent;
    color: var(--azul-principal);
    padding: 0.9rem 2rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    transition: all 0.25s ease;
    border: 1.5px solid var(--cinza-claro);
    letter-spacing: -0.01em;
    background: var(--branco);
}

.btn-secondary:hover {
    background: var(--azul-glass);
    border-color: var(--azul-claro);
    transform: translateY(-2px);
    box-shadow: var(--sombra);
}

/* ── Badges de diferenciais ── */
.hero-features {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 2.5rem;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    border-radius: 9999px;
    background: var(--branco);
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 8px rgba(0,0,0,0.03);
    cursor: default;
    transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
    white-space: nowrap;
}

.feature-badge:hover {
    border-color: rgba(15, 82, 193, 0.18);
    box-shadow: 0 2px 12px rgba(15, 82, 193, 0.10);
    transform: translateY(-1px);
}

.feature-badge i {
    font-size: 0.78rem;
    color: var(--azul-principal);
    flex-shrink: 0;
}

.feature-badge span {
    font-size: 0.825rem;
    font-weight: 500;
    color: var(--cinza-escuro);
    letter-spacing: -0.01em;
    line-height: 1;
}

/* ===== MARCAS ===== */
.brands-section {
    padding: 6rem 5%;
    background: var(--branco-fundo);
    text-align: center;
    position: relative;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brands-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cinza-claro), transparent);
}

.brands-circles {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.brand-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    cursor: pointer;
}

.circle {
    width: 148px;
    height: 148px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--branco);
    border: 1.5px solid var(--cinza-claro);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 26px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--sombra);
}

.circle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand-circle span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cinza-medio);
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.brand-circle:hover .circle {
    border-color: var(--azul-claro);
    box-shadow: 0 12px 36px rgba(15, 82, 193, 0.18);
    transform: translateY(-6px);
}

.brand-circle:hover .circle img { transform: scale(1.08); }
.brand-circle:hover span { color: var(--azul-principal); }

/* Ajuste Motorola e Xiaomi */
.circle img[alt="Motorola"],
.circle img[alt="Xiaomi"] {
    max-width: 82%;
    max-height: 82%;
}

/* ===== SERVIÇOS ===== */
.servicos {
    padding: 6rem 5%;
    background: var(--branco);
    text-align: center;
    position: relative;
}

.servicos::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cinza-claro), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1160px;
    margin: 0 auto;
}

.service-item {
    background: var(--branco-fundo);
    padding: 2rem 1.75rem;
    border-radius: var(--radius-md);
    text-align: left;
    border: 1.5px solid var(--cinza-claro);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--azul-principal), var(--azul-claro));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: var(--sombra-hover);
    background: var(--branco);
}

.service-item:hover::before { opacity: 1; }

.service-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--azul-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Os ícones já vêm do HTML, então estilos via i direto */
.service-item i {
    font-size: 1.4rem;
    color: var(--azul-principal);
    margin-bottom: 1.25rem;
    display: block;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--azul-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-item:hover i {
    background: var(--azul-principal);
    color: white;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 16px rgba(15, 82, 193, 0.28);
}

.service-item h3 {
    
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
    color: var(--cinza-escuro);
}

.service-item p {
    color: var(--cinza-medio);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ===== LOCALIZAÇÃO ===== */
.location {
    padding: 6rem 5%;
    background: var(--branco-fundo);
    position: relative;
}

.location::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cinza-claro), transparent);
}

.location-card {
    max-width: 960px;
    margin: 0 auto;
    background: var(--branco);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--cinza-claro);
    box-shadow: var(--sombra-media);
    transition: box-shadow 0.3s ease;
}

.location-card:hover { box-shadow: var(--sombra-hover); }

.location-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--cinza-claro);
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--azul-claro);
    background: var(--azul-glass);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-item h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cinza-medio);
    margin-bottom: 0.3rem;
}

.info-item p {
    color: var(--cinza-escuro);
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 500;
}

.location-actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-map, .btn-whatsapp {
    padding: 0.75rem 1.6rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    transition: all 0.25s ease;
    letter-spacing: -0.01em;
}

.btn-map {
    background: var(--azul-principal);
    color: white;
    box-shadow: 0 4px 14px rgba(15, 82, 193, 0.25);
}

.btn-map:hover {
    background: var(--azul-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 82, 193, 0.35);
}

.btn-whatsapp {
    background: var(--verde-whatsapp);
    color: white;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.25);
}

.btn-whatsapp:hover {
    background: var(--verde-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);
}

.map-container {
    width: 100%;
    height: 320px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1.5px solid var(--cinza-claro);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    background: var(--verde-whatsapp);
    color: white;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.45);
    z-index: 99;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: floatY 3.5s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: var(--verde-hover);
    box-shadow: 0 8px 28px rgba(34, 197, 94, 0.55);
    animation: none;
}

/* ===== FOOTER ===== */
footer {
    background: var(--cinza-escuro);
    color: white;
    padding: 3rem 5% 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0; left: 5%; right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    text-align: center;
}

.footer-info h4 {
    
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
    color: white;
}

.footer-info p {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    color: #64748b;
    font-size: 1.1rem;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    text-decoration: none;
}

.footer-social a:hover {
    color: white;
    border-color: var(--azul-claro);
    background: rgba(74, 138, 244, 0.15);
    transform: translateY(-3px);
}

.footer-credit p {
    color: #334155;
    font-size: 0.8rem;
    letter-spacing: 0.01em;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-features {
        gap: 8px;
    }

    .feature-badge {
        padding: 6px 14px;
    }

    .circle { width: 118px; height: 118px; border-radius: 24px; padding: 22px; }
    .brands-circles { gap: 2rem; }
    .brand-circle span { font-size: 0.88rem; }
    .section-title { font-size: 2rem; }

    .service-item { text-align: left; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }

    .servicos { padding: 4rem 5%; }
    .location { padding: 4rem 5%; }
    .location-card { padding: 1.75rem; }
}

@media (max-width: 480px) {
    .logo { height: 36px; }
    .name-main { font-size: 1.2rem; }
    .name-sub { font-size: 0.65rem; }
    .hero { padding: 4rem 5%; }
    .hero h1 { font-size: 1.9rem; }

    .hero-features {
        gap: 8px;
        margin-top: 1.75rem;
    }

    .feature-badge {
        padding: 6px 13px;
        font-size: 0.8rem;
    }

    .feature-badge span {
        font-size: 0.8rem;
    }

    .services-grid { grid-template-columns: 1fr; }
    .map-container { height: 240px; }

    .section-title { font-size: 1.75rem; }

    .reviews-grid { grid-template-columns: 1fr; }
    .faq-list { padding: 0; }

    /* Marcas 2x2 */
    .brands-circles {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        gap: 1.75rem 1.25rem;
    }

    .circle { width: 130px; height: 130px; border-radius: 28px; padding: 24px; }
    .brand-circle span { font-size: 0.9rem; }
    .brands-section { padding: 4rem 5%; }
}

/* ===== AVALIAÇÕES ===== */
.reviews-section {
    padding: 6rem 5%;
    background: var(--branco);
    text-align: center;
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cinza-claro), transparent);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto 2.5rem;
}

.review-card {
    background: var(--branco-fundo);
    border: 1.5px solid var(--cinza-claro);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-card:hover {
    border-color: transparent;
    box-shadow: var(--sombra-hover);
    transform: translateY(-4px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--azul-principal);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-header strong {
    display: block;
    font-size: 0.95rem;
    color: var(--cinza-escuro);
    margin-bottom: 0.25rem;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars i {
    color: #f59e0b;
    font-size: 0.75rem;
}

.review-card p {
    color: var(--cinza-medio);
    font-size: 0.9rem;
    line-height: 1.7;
    flex: 1;
    font-style: italic;
}

.review-source {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cinza-medio);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.review-source i { font-size: 0.85rem; color: var(--azul-claro); }

.reviews-cta {
    display: flex;
    justify-content: center;
}

.btn-reviews {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: var(--azul-principal);
    border: 1.5px solid var(--azul-claro);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.btn-reviews:hover {
    background: var(--azul-glass);
    border-color: var(--azul-principal);
    transform: translateY(-2px);
    box-shadow: var(--sombra);
}

@media (max-width: 768px) {
    .reviews-grid { grid-template-columns: 1fr; }
}

/* ===== FAQ ===== */
.faq-section {
    padding: 6rem 5%;
    background: var(--branco-fundo);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cinza-claro), transparent);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--branco);
    border: 1.5px solid var(--cinza-claro);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item[open] {
    border-color: var(--azul-claro);
    box-shadow: 0 4px 16px rgba(15, 82, 193, 0.08);
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
    gap: 1rem;
    user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--cinza-escuro);
    text-align: left;
    line-height: 1.4;
}

.faq-item summary i {
    color: var(--azul-claro);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item[open] summary i {
    transform: rotate(180deg);
    color: var(--azul-principal);
}

.faq-item[open] summary span { color: var(--azul-principal); }

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    color: var(--cinza-medio);
    font-size: 0.9rem;
    line-height: 1.75;
    border-top: 1px solid var(--cinza-claro);
    margin-top: 0;
    padding-top: 1rem;
}

/* ===== CTA MOBILE FIXO ===== */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 98;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--cinza-claro);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-cta.visible { transform: translateY(0); }

.mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: var(--verde-whatsapp);
    color: white;
    padding: 0.9rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.35);
    transition: background 0.2s ease;
}

.mobile-cta a:hover { background: var(--verde-hover); }

@media (max-width: 768px) {
    .mobile-cta { display: block; }
    /* Empurra o float do WhatsApp pra não sobrepor o CTA */
    .whatsapp-float { display: none; }
}

/* ===== ANIMAÇÕES OTIMIZADAS PARA MOBILE ===== */
@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
    .fade-in-up { animation-duration: 0.5s; }
    .delay-1 { animation-delay: 0.08s; }
    .delay-2 { animation-delay: 0.16s; }
    .delay-3 { animation-delay: 0.24s; }
}