/* ============================================================================
   POA.TI - CSS v4 - Layout Claro (estilo ihut)
   Cor principal: #3AABCF | Escuro: #0D2137 | Fundo: #FFFFFF / #F5FAFC
   Fonte: Sora
   ============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');

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

:root {
    --azul:        #3AABCF;
    --azul-hover:  #2993b8;
    --azul-claro:  #e6f6fb;
    --azul-medio:  #b8e4f3;
    --escuro:      #0D2137;
    --escuro-soft: #1a3a54;
    --texto:       #1e3445;
    --texto-suave: #5a7082;
    --borda:       #d0eaf5;
    --branco:      #ffffff;
    --bg:          #f5fafc;
    --bg-alt:      #edf6fb;
    --radius:      10px;
    --sombra:      0 2px 14px rgba(58,171,207,0.10);
    --sombra-h:    0 6px 28px rgba(58,171,207,0.20);
    --trans:       all 0.27s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: 'Sora', sans-serif; color: var(--texto); line-height: 1.7; background: var(--branco); -webkit-font-smoothing: antialiased; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

h1,h2,h3,h4 { font-family: 'Sora', sans-serif; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; color: var(--branco); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 700; color: var(--escuro); }
h3 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 0.96rem; line-height: 1.8; margin-bottom: 1rem; }

a { color: var(--azul); text-decoration: none; transition: var(--trans); }
a:hover { color: var(--azul-hover); }

/* Botoes */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.82rem 1.9rem; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.88rem; letter-spacing: 0.04em; border: none; border-radius: 50px; cursor: pointer; transition: var(--trans); text-decoration: none; white-space: nowrap; }
.btn-primary { background: var(--azul); color: var(--branco); box-shadow: 0 3px 14px rgba(58,171,207,0.32); }
.btn-primary:hover { background: var(--azul-hover); color: var(--branco); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(58,171,207,0.42); }
.btn-whatsapp { background: #25D366; color: var(--branco); width: 100%; justify-content: center; margin-top: 1rem; box-shadow: 0 3px 12px rgba(37,211,102,0.28); }
.btn-whatsapp:hover { background: #1da853; color: var(--branco); transform: translateY(-2px); }

/* ?? Navbar ?? */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(13,33,55,0.97); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid rgba(58,171,207,0.15); transition: var(--trans); }
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.28); }
.navbar .container { display: flex; align-items: center; padding-top: 0.85rem; padding-bottom: 0.85rem; gap: 1rem; }
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 38px; width: auto; }
.navbar-menu { display: flex; list-style: none; gap: 2rem; align-items: center; flex: 1; justify-content: center; margin: 0; padding: 0; }
.nav-link { color: rgba(255,255,255,0.82); font-weight: 500; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; position: relative; transition: var(--trans); }
.nav-link:hover { color: var(--azul); }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--azul); border-radius: 2px; transition: width 0.3s; }
.nav-link:hover::after { width: 100%; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; flex-shrink: 0; }
.mobile-toggle span { width: 24px; height: 2px; background: var(--branco); border-radius: 2px; transition: var(--trans); display: block; }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .navbar-menu { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: rgba(13,33,55,0.99); max-height: 0; overflow: hidden; transition: max-height 0.35s; justify-content: flex-start; }
    .navbar-menu.active { max-height: 500px; }
    .navbar-menu li { width: 100%; }
    .nav-link { display: block; padding: 0.9rem 28px; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .nav-link::after { display: none; }
}

/* ?? Hero com Video ??????????????????????????????????????????????? */
.hero {
    position: relative;
    height: 100vh; min-height: 580px;
    margin-top: 62px;
    overflow: hidden;
    display: flex; align-items: center; justify-content: flex-start;
}

.hero-video-wrap {
    position: absolute; inset: 0; z-index: 0;
    background: var(--escuro);
}

.hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
    will-change: opacity;
}
.hero-video.active { opacity: 1; }

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        105deg,
        rgba(13,33,55,0.82) 0%,
        rgba(13,33,55,0.55) 55%,
        rgba(58,171,207,0.15) 100%
    );
    z-index: 1;
}

/* Linha decorativa lateral esquerda */
.hero::before {
    content: '';
    position: absolute; left: 0; top: 15%; bottom: 15%;
    width: 4px;
    background: linear-gradient(to bottom, transparent, var(--azul), transparent);
    z-index: 5;
    opacity: 0.7;
}

.hero-content {
    position: relative; z-index: 10;
    padding: 0 5%;
    max-width: 700px;
    text-align: left;
}

.hero-eyebrow {
    display: inline-block;
    background: var(--azul);
    color: var(--branco);
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    padding: 0.32rem 1rem; border-radius: 50px;
    margin-bottom: 1.4rem;
    animation: slideUp 0.6s ease 0.05s both;
}

.hero-content h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 800; color: var(--branco);
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    animation: slideUp 0.6s ease 0.15s both;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.82);
    font-weight: 300;
    max-width: 480px;
    animation: slideUp 0.6s ease 0.25s both;
    margin: 0;
}

@keyframes slideUp {
    from { opacity:0; transform:translateY(22px); }
    to   { opacity:1; transform:translateY(0); }
}

/* Dots */
.hero-controls {
    position: absolute; bottom: 36px; left: 5%;
    display: flex; gap: 8px; z-index: 20;
}
.hero-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none; cursor: pointer; transition: var(--trans);
}
.hero-dot.active { background: var(--azul); width: 28px; border-radius: 4px; }

/* CTA */
.hero-cta {
    position: absolute; bottom: 28px; right: 5%;
    z-index: 20;
    background: var(--azul); color: var(--branco);
    padding: 0.9rem 2.2rem; border-radius: 50px;
    font-weight: 600; font-size: 0.82rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    box-shadow: 0 4px 22px rgba(58,171,207,0.45);
    transition: var(--trans); white-space: nowrap;
}
.hero-cta:hover {
    background: var(--azul-hover); color: var(--branco);
    transform: translateY(-2px);
}

/* Barra de progresso do video */
.hero-progress {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: rgba(255,255,255,0.1);
    z-index: 20;
}
.hero-progress-bar {
    height: 100%; width: 0%;
    background: var(--azul);
    transition: none;
}

@media (max-width: 768px) {
    .hero-content { padding: 0 7%; }
    .hero-cta { bottom: 22px; right: 50%; transform: translateX(50%); }
    .hero-cta:hover { transform: translateX(50%) translateY(-2px); }
    .hero-controls { left: 50%; transform: translateX(-50%); bottom: 70px; }
    .hero::before { display: none; }
}
@media (max-width: 480px) {
    .hero { margin-top: 58px; }
    .hero-content h1 { font-size: 2rem; }
}

/* ?? Secoes base ?? */
section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 2.8rem; }
.section-header.light h2 { color: var(--branco); }
.section-header.light .section-label { background: rgba(255,255,255,0.15); color: var(--branco); }
.section-label { display: inline-block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--azul); margin-bottom: 0.7rem; background: var(--azul-claro); padding: 0.28rem 0.9rem; border-radius: 50px; }
.section-divider { width: 44px; height: 3px; background: var(--azul); margin: 0.8rem auto; border-radius: 2px; }

/* ?? Servicos - fundo claro ?? */
.services { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.4rem; margin-bottom: 2.5rem; }
.service-card { background: var(--branco); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--borda); transition: var(--trans); box-shadow: var(--sombra); }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--sombra-h); border-color: var(--azul); }
.service-header { background: var(--azul); padding: 1.4rem 1.8rem; display: flex; align-items: center; gap: 1rem; }
.service-icon { width: 42px; height: 42px; background: rgba(255,255,255,0.18); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.service-icon svg { width: 22px; height: 22px; fill: none; stroke: white; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-header h3 { color: var(--branco); margin: 0; }
.service-body { padding: 1.4rem 1.8rem; }
.service-body p { color: var(--texto-suave); font-size: 0.9rem; margin-bottom: 0.85rem; }
.service-list { list-style: none; }
.service-list li { display: flex; align-items: center; gap: 0.6rem; color: var(--texto); font-size: 0.86rem; margin-bottom: 0.38rem; font-weight: 500; }
.service-list li::before { content: ''; width: 5px; height: 5px; background: var(--azul); border-radius: 50%; flex-shrink: 0; }
.section-cta { text-align: center; margin-top: 0.5rem; }

/* ?? Sobre - fundo azul claro (nao escuro!) ?? */
.about { background: var(--azul); }
.about .section-header.light h2 { color: var(--branco); }
.about-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.4rem; margin-bottom: 2.8rem; }
.about-card { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); border-radius: var(--radius); padding: 2rem; transition: var(--trans); }
.about-card:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.4); }
.about-card h3 { color: var(--branco); margin-bottom: 0.7rem; }
.about-card p { color: rgba(255,255,255,0.88); line-height: 1.8; margin: 0; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; text-align: center; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 2.8rem; }
.stat { padding: 1.2rem; }
.stat-number { font-size: 2.8rem; font-weight: 800; color: var(--branco); margin-bottom: 0.3rem; letter-spacing: -0.03em; }
.stat-label { color: rgba(255,255,255,0.7); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }

/* ?? Clientes - fundo branco ?? */
.clients { background: var(--bg); }
.clients-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; }
.client-card { background: var(--branco); box-shadow: 0 1px 6px rgba(58,171,207,0.07); border-radius: 8px; padding: 1rem; display: flex; align-items: center; justify-content: center; min-height: 100px; border: 1px solid var(--borda); transition: var(--trans); cursor: pointer; position: relative; z-index: 1; }
.client-card:hover { border-color: var(--azul); box-shadow: 0 3px 16px rgba(58,171,207,0.16); transform: translateY(-3px); z-index: 10; }
.client-logo { max-height: 64px; max-width: 90%; width: 100%; object-fit: contain; filter: grayscale(100%) opacity(0.65); transition: var(--trans); }
.client-card:hover .client-logo { filter: grayscale(0%) opacity(1); }
.client-tooltip { position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%); background: var(--escuro); color: var(--branco); padding: 0.35rem 0.85rem; border-radius: 6px; font-size: 0.7rem; font-weight: 500; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.client-card:hover .client-tooltip { opacity: 1; }
.client-tooltip small { display: block; font-size: 0.62rem; color: rgba(255,255,255,0.5); margin-top: 1px; font-weight: 400; }
.client-name-fallback { display: none; font-size: 0.75rem; font-weight: 700; color: var(--azul); text-align: center; padding: 0.5rem; }

/* ?? Contato - fundo claro ?? */
.contact { background: var(--bg); }
.contact .section-header h2 { color: var(--escuro); }
.contact .section-label { background: var(--azul-claro); color: var(--azul); }
.contact .section-divider { background: var(--azul); }
.contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 0.85rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; background: var(--branco); border: 1px solid var(--borda); border-radius: 8px; padding: 1rem 1.2rem; transition: var(--trans); box-shadow: var(--sombra); }
.contact-item:hover { border-color: var(--azul); box-shadow: var(--sombra-h); }
.contact-icon-wrap { flex-shrink: 0; width: 36px; height: 36px; background: var(--azul); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.contact-icon-wrap svg { width: 18px; height: 18px; fill: none; stroke: white; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--texto-suave); margin: 0 0 0.2rem; font-weight: 600; }
.contact-value { color: var(--texto); font-weight: 500; font-size: 0.92rem; margin: 0; }
a.contact-value:hover { color: var(--azul); }
.contact-map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--borda); position: relative; min-height: 380px; display: block; text-decoration: none; box-shadow: var(--sombra); transition: var(--trans); }
.contact-map-wrap:hover { box-shadow: var(--sombra-h); }
.contact-map-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.map-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%); display: flex; flex-direction: column; align-items: center; }
.map-pin-dot { width: 18px; height: 18px; background: var(--azul); border: 3px solid white; border-radius: 50%; box-shadow: 0 2px 8px rgba(0,0,0,0.35); animation: pinPulse 2s ease-in-out infinite; }
@keyframes pinPulse { 0%,100% { box-shadow: 0 2px 8px rgba(0,0,0,0.35), 0 0 0 0 rgba(58,171,207,0.4); } 50% { box-shadow: 0 2px 8px rgba(0,0,0,0.35), 0 0 0 10px rgba(58,171,207,0); } }
.map-pin-line { width: 2px; height: 14px; background: var(--azul); }
.map-label { background: var(--branco); color: var(--escuro); font-size: 0.78rem; font-weight: 600; padding: 0.5rem 0.9rem; border-radius: 6px; margin-top: 6px; box-shadow: 0 3px 12px rgba(0,0,0,0.18); white-space: nowrap; text-align: center; border-left: 3px solid var(--azul); }
.map-label span { display: block; color: var(--texto-suave); font-weight: 400; font-size: 0.7rem; margin-top: 1px; }
@media (max-width: 768px) { .contact-content { grid-template-columns: 1fr; } .contact-map-wrap { min-height: 260px; } }

/* ?? Footer - escuro ?? */
.footer { background: var(--escuro); color: var(--branco); padding: 2.5rem 0; border-top: 1px solid rgba(58,171,207,0.1); }
.footer-content { display: flex; justify-content: space-between; align-items: center; gap: 2rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-logo { height: 36px; width: auto; margin-bottom: 6px; }
.footer-brand p { color: rgba(255,255,255,0.38); font-size: 0.8rem; margin: 0; }
.footer-social { display: flex; gap: 0.7rem; }
.social-link { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45); font-size: 0.8rem; transition: var(--trans); text-decoration: none; }
.social-link svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.social-link:hover { background: var(--azul); border-color: var(--azul); color: var(--branco); transform: translateY(-2px); }
.footer-bottom { text-align: center; color: rgba(255,255,255,0.22); font-size: 0.76rem; }
@media (max-width: 768px) { .footer-content { flex-direction: column; text-align: center; } .footer-social { justify-content: center; } }

/* ?? Responsivo ?? */
@media (max-width: 768px) { section { padding: 3.5rem 0; } .hero-cta { bottom: 50px; } .services-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .hero { margin-top: 58px; } .stats { grid-template-columns: 1fr; } .clients-grid { grid-template-columns: repeat(2, 1fr); } }

/* ?? Animacoes ?? */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
.fade-in-up { animation: fadeInUp 0.55s ease-out both; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }
a:focus, button:focus { outline: 2px solid var(--azul); outline-offset: 3px; border-radius: 4px; }

/* ?? Avaliacoes Google ??????????????????????????????????????????????? */
.reviews { background: var(--bg); }

.reviews-rating-summary {
    display: flex; align-items: center; justify-content: center;
    gap: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap;
}
.rating-number { font-size: 3.5rem; font-weight: 800; color: var(--escuro); letter-spacing: -0.04em; line-height: 1; }
.rating-stars-wrap { display: flex; flex-direction: column; gap: 0.3rem; }
.rating-stars { display: flex; gap: 3px; }
.star { font-size: 1.4rem; color: #F5BE00; }
.star.half { position: relative; color: #e0e0e0; }
.star.half::before { content: '?'; position: absolute; left: 0; color: #F5BE00; width: 50%; overflow: hidden; }
.rating-count { font-size: 0.78rem; color: var(--texto-suave); font-weight: 500; }
.rating-google-logo { display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; font-weight: 600; color: var(--texto-suave); }
.rating-google-logo svg { width: 20px; height: 20px; }

.reviews-carousel-wrap {
    position: relative; overflow: hidden;
    margin: 0 -10px;
    padding: 10px 10px 20px;
}
.reviews-carousel {
    display: flex; gap: 1.2rem;
    transition: transform 0.45s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.review-card {
    background: var(--branco); border-radius: var(--radius);
    border: 1px solid var(--borda); padding: 1.5rem;
    min-width: calc(33.333% - 0.8rem);
    box-shadow: var(--sombra); flex-shrink: 0;
    transition: var(--trans); position: relative;
}
.review-card:hover { box-shadow: var(--sombra-h); border-color: var(--azul); transform: translateY(-3px); }
.review-header { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 0.85rem; }
.review-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--azul); color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem; flex-shrink: 0; overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-author { font-weight: 600; font-size: 0.88rem; color: var(--escuro); }
.review-date { font-size: 0.72rem; color: var(--texto-suave); margin-top: 1px; }
.review-stars { display: flex; gap: 2px; margin-bottom: 0.7rem; }
.review-stars .star { font-size: 1rem; }
.review-text { font-size: 0.86rem; color: var(--texto-suave); line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.review-google-icon { position: absolute; top: 1.2rem; right: 1.2rem; opacity: 0.18; }
.review-google-icon svg { width: 20px; height: 20px; }

.reviews-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--branco); border: 1px solid var(--borda);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    cursor: pointer; font-size: 1rem; color: var(--escuro);
    display: flex; align-items: center; justify-content: center;
    transition: var(--trans); z-index: 10;
}
.reviews-nav:hover { background: var(--azul); color: white; border-color: var(--azul); }
.reviews-nav.prev { left: -5px; }
.reviews-nav.next { right: -5px; }

.reviews-dots { display: flex; justify-content: center; gap: 7px; margin-top: 1.2rem; }
.reviews-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--azul-medio); border: none; cursor: pointer; transition: var(--trans); }
.reviews-dot.active { background: var(--azul); width: 22px; border-radius: 4px; }

.reviews-footer { text-align: center; margin-top: 1.8rem; }
.btn-outline-blue {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.78rem 1.8rem; border-radius: 50px;
    border: 2px solid var(--azul); color: var(--azul);
    font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.85rem;
    background: transparent; transition: var(--trans); text-decoration: none;
}
.btn-outline-blue:hover { background: var(--azul); color: white; }

.reviews-loading { text-align: center; padding: 3rem; color: var(--texto-suave); font-size: 0.9rem; }
.reviews-error { text-align: center; padding: 2rem; }

@media (max-width: 900px) { .review-card { min-width: calc(50% - 0.6rem); } }
@media (max-width: 560px) { .review-card { min-width: calc(100% - 0rem); } }

/* ?? Fornecedores e Parceiros ???????????????????????????????????????? */
.partners { background: var(--bg); }

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
}
.partner-card {
    background: var(--branco); box-shadow: 0 1px 6px rgba(58,171,207,0.07); border: 1px solid var(--borda);
    border-radius: 10px; padding: 1.25rem 1rem;
    display: flex; align-items: center; justify-content: center;
    min-height: 90px; transition: var(--trans); cursor: default;
}
.partner-card:hover {
    border-color: var(--azul);
    box-shadow: 0 3px 16px rgba(58,171,207,0.15);
    transform: translateY(-2px);
}
.partner-logo {
    max-height: 50px; max-width: 100%; width: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: var(--trans);
}
.partner-card:hover .partner-logo { filter: grayscale(0%) opacity(1); }

/* ?? Cookie Consent LGPD/GDPR ??????????????????????????????????????? */
.cookie-consent {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: var(--escuro);
    border-top: 3px solid var(--azul);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
    padding: 1.2rem 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.cookie-consent.visible { transform: translateY(0); }
.cookie-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 28px;
    display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 260px; }
.cookie-text strong { color: var(--branco); font-size: 0.95rem; display: block; margin-bottom: 0.3rem; }
.cookie-text p { color: rgba(255,255,255,0.7); font-size: 0.8rem; line-height: 1.6; margin: 0; }
.cookie-text a { color: var(--azul); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn {
    padding: 0.62rem 1.3rem; border-radius: 50px;
    font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.82rem;
    cursor: pointer; transition: var(--trans); border: 2px solid transparent; white-space: nowrap;
}
.cookie-btn-primary { background: var(--azul); color: white; border-color: var(--azul); }
.cookie-btn-primary:hover { background: var(--azul-hover); border-color: var(--azul-hover); }
.cookie-btn-outline { background: transparent; color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.3); }
.cookie-btn-outline:hover { border-color: white; color: white; }

/* ?? Privacy Modal ??????????????????????????????????????????????????? */
.privacy-modal { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.privacy-modal[hidden] { display: none; }
.privacy-modal-overlay { position: absolute; inset: 0; background: rgba(13,33,55,0.75); backdrop-filter: blur(4px); cursor: pointer; }
.privacy-modal-box {
    position: relative; background: var(--branco); border-radius: 14px;
    width: 100%; max-width: 720px; max-height: 88vh;
    overflow: hidden; display: flex; flex-direction: column;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.privacy-modal-close {
    position: absolute; top: 1rem; right: 1rem;
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--bg); border: 1px solid var(--borda);
    cursor: pointer; font-size: 0.9rem; color: var(--texto-suave);
    display: flex; align-items: center; justify-content: center;
    transition: var(--trans); z-index: 1;
}
.privacy-modal-close:hover { background: var(--azul); color: white; border-color: var(--azul); }
.privacy-modal-content {
    padding: 2rem 2.5rem 2.5rem;
    overflow-y: auto; flex: 1;
    scrollbar-width: thin; scrollbar-color: var(--borda) transparent;
}
.privacy-modal-content h2 { color: var(--escuro); font-size: 1.5rem; margin-bottom: 0.3rem; }
.privacy-updated { font-size: 0.78rem; color: var(--texto-suave); margin-bottom: 1.5rem; }
.privacy-modal-content h3 { color: var(--azul); font-size: 0.95rem; margin: 1.4rem 0 0.5rem; text-transform: uppercase; letter-spacing: 0.06em; }
.privacy-modal-content p { font-size: 0.88rem; color: var(--texto-suave); line-height: 1.75; margin-bottom: 0.75rem; }
.privacy-modal-content ul { margin: 0.5rem 0 0.75rem 1.2rem; }
.privacy-modal-content ul li { font-size: 0.88rem; color: var(--texto-suave); line-height: 1.7; margin-bottom: 0.3rem; }
.privacy-modal-content a { color: var(--azul); }
.privacy-modal-content em { font-style: italic; color: var(--texto-suave); font-size: 0.82rem; }

@media (max-width: 640px) {
    .cookie-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .cookie-actions { width: 100%; }
    .cookie-btn { flex: 1; text-align: center; justify-content: center; }
    .privacy-modal-content { padding: 1.5rem; }
}



/* ?? Seletor de Idioma ??????????????????????????????????????????????? */
.lang-selector {
    display: flex !important;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
    border: 1px solid rgba(58,171,207,0.3);
    border-radius: 50px;
    padding: 3px;
    background: rgba(255,255,255,0.05);
}
.lang-btn {
    display: flex; align-items: center; gap: 4px;
    padding: 0.28rem 0.65rem; border-radius: 50px;
    background: transparent; border: none;
    color: rgba(255,255,255,0.6);
    font-family: 'Sora', sans-serif; font-size: 0.72rem; font-weight: 600;
    cursor: pointer; transition: var(--trans); white-space: nowrap;
}
.lang-btn:hover { color: white; background: rgba(255,255,255,0.1); }
.lang-btn.active { background: var(--azul); color: white; }
.lang-flag { font-size: 0.9rem; line-height: 1; }
.lang-code { font-size: 0.68rem; }
@media (max-width: 768px) {
    .lang-selector { margin-left: auto; }
}

/* ?? Cards de Servico Expansiveis ???????????????????????????????????? */
.service-card { cursor: pointer; }
.service-expand-btn {
    display: flex; align-items: center; gap: 0.4rem;
    margin-top: 1rem; padding: 0;
    background: none; border: none;
    color: var(--azul); font-family: 'Sora', sans-serif;
    font-size: 0.78rem; font-weight: 600;
    cursor: pointer; transition: var(--trans);
}
.service-expand-btn:hover { color: var(--azul-hover); }
.service-expand-btn svg { width: 14px; height: 14px; transition: transform 0.3s ease; flex-shrink: 0; }
.service-card.expanded .service-expand-btn svg { transform: rotate(180deg); }
.service-details { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(.4,0,.2,1), opacity 0.3s ease; opacity: 0; }
.service-card.expanded .service-details { max-height: 600px; opacity: 1; }
.service-details-inner { padding-top: 1rem; border-top: 1px solid var(--borda); margin-top: 1rem; }
.service-details-inner ul { list-style: none; margin: 0; }
.service-details-inner ul li { display: flex; align-items: flex-start; gap: 0.5rem; color: var(--texto-suave); font-size: 0.83rem; line-height: 1.5; padding: 0.28rem 0; border-bottom: 1px solid rgba(58,171,207,0.06); }
.service-details-inner ul li:last-child { border-bottom: none; }
.service-details-inner ul li::before { content: '?'; color: var(--azul); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.service-cta-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1rem; color: white; background: var(--azul); border-radius: 50px; padding: 0.5rem 1.1rem; font-size: 0.78rem; font-weight: 600; text-decoration: none; transition: var(--trans); }
.service-cta-link:hover { background: var(--azul-hover); color: white; }
