/* ======================================================================
   TOPXNET — Locação de Computadores
   Visual claro e moderno, nas cores oficiais da marca (extraídas da
   logo/identidade TOPXNET): azul #14508f → #2e86de em gradiente, com
   laranja #c9600a de destaque. Tipografia Plus Jakarta Sans + Inter.

   COMO ACHAR AS COISAS NESTE ARQUIVO:
   O arquivo segue a mesma ordem das seções do Index.html (procure pelos
   títulos "---------- Nome da Seção ----------" abaixo, Ctrl+F ajuda):
     Utilitários -> Botões -> Header -> Hero -> Vantagens -> Catálogo
     -> Planos -> Depoimentos -> FAQ -> Contato -> Footer
     -> Responsivo (ajustes para celular/tablet, sempre por último)

   PARA MUDAR AS CORES OU FONTES DE TODO O SITE, edite só as variáveis
   do bloco :root logo abaixo — elas se espalham automaticamente por
   todo o CSS (não precisa editar cor em cada seção separadamente).
   ====================================================================== */

:root {
    --bg: #ffffff;                              /* fundo geral da página */
    --bg-alt: #f5f8fc;                          /* fundo das seções "alternadas" (cinza clarinho) */
    --surface: #ffffff;                         /* fundo dos cartões */
    --surface-2: #eef3fa;                       /* fundo de áreas de destaque dentro de cartões */
    --border: rgba(13, 46, 89, 0.09);           /* linha/borda bem sutil */
    --border-strong: rgba(13, 46, 89, 0.18);    /* linha/borda mais visível */
    --text: #0e1c2f;                            /* cor do texto principal (títulos) */
    --text-muted: #5b6b82;                      /* cor do texto secundário (parágrafos) */
    --blue: #e8850f;                            /* azul escuro da marca */
    --blue-light: #e8850f;                      /* azul claro da marca */
    --blue-soft: rgba(20, 80, 143, 0.08);       /* azul bem fraquinho, pra fundos */
    --orange: #c9600a;                          /* laranja da marca (usado em selos e eyebrows) */
    --orange-soft: rgba(201, 96, 10, 0.1);      /* laranja bem fraquinho, pra fundos */
    --grad-primary: linear-gradient(135deg, #14508f 0%, #2e86de 100%); /* gradiente dos botões azuis */
    --grad-orange: linear-gradient(135deg, #c9600a 0%, #e8850f 100%); /* gradiente laranja (selo de SLA na foto do hero) */
    --grad-text: linear-gradient(135deg, #0e3d70 0%, #1a5aa0 100%);    /* gradiente do texto em destaque (<em>) */
    --grid-line: rgba(20, 80, 143, 0.07);       /* pontinhos decorativos de fundo do hero */
    --radius-pill: 999px;                       /* cantos 100% arredondados (botões, selos) */
    --radius-md: 18px;                          /* cantos arredondados médios (cartões pequenos) */
    --radius-lg: 26px;                          /* cantos arredondados grandes (cartões grandes, foto do hero) */
    --font-display: 'Plus Jakarta Sans', 'Segoe UI', sans-serif; /* fonte dos títulos (h1, h2, h3...) */
    --font-body: 'Inter', 'Segoe UI', sans-serif;                /* fonte do texto corrido */
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text-muted);
    font-family: var(--font-body);
    line-height: 1.65;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--text);
    line-height: 1.15;
    letter-spacing: -0.015em;
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background: var(--blue-light);
    color: #ffffff;
}

/* ---------- Utilitários ---------- */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
}

.eyebrow.is-boxed {
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-pill);
    padding: 7px 16px;
    color: var(--blue);
    background: var(--surface);
}

.section-header {
    max-width: 640px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 14px;
}

.section-header p {
    font-size: 16px;
}

em {
    font-style: normal;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

section {
    padding: 50px 8%;
}

/* ---------- Botões ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15.5px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: var(--grad-primary);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(20, 80, 143, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(201, 96, 10, 0.3);
}

.btn-outline {
    background: var(--surface);
    color: var(--text);
    border-color: var(--border-strong);
}

.btn-outline:hover {
    transform: translateY(-2px);
    background: var(--bg-alt);
    border-color: var(--blue);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ---------- Header ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 8%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-bottom: 1px solid var(--border);
}

.site-header.no-blur {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--bg);
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 32px;
    width: auto;
}

.site-nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.site-nav ul li a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.site-nav ul li a:hover {
    color: var(--blue);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-shrink: 0;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
}

.header-phone svg {
    width: 16px;
    height: 16px;
    color: var(--blue);
    flex-shrink: 0;
}

.nav-toggle,
.nav-close {
    display: none;
}

/* ---------- Hero ---------- */

.hero {
    position: relative;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 110px 8% 90px;
    overflow: hidden;
    background-image: radial-gradient(var(--grid-line) 1px, transparent 1px);
    background-size: 28px 28px;
    background-position: -14px -14px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -220px;
    left: -160px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: rgba(20, 80, 143, 0.14);
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -140px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: rgba(201, 96, 10, 0.12);
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
}

.hero-text {
    position: relative;
    z-index: 1;
    max-width: 620px;
    flex-shrink: 0;
    text-align: center;
}

.hero-text h1 {
    font-size: 44px;
    margin-bottom: 20px;
}

.hero-slide p {
    font-size: 16.5px;
    max-width: 520px;
    margin: 0 auto 32px;
    color: var(--text-muted);
}

/* ---------- Carrossel do hero (texto) ---------- */
/* .hero-carousel troca 3 blocos de texto (.hero-slide) sozinho, ver assets/js/site.js.
   O min-height real é calculado e aplicado por JavaScript (mede a altura de cada slide
   e usa a maior), porque os 3 textos têm tamanhos diferentes e quebram em quantidades de
   linhas diferentes -- por isso não dá pra travar um valor fixo aqui no CSS sem correr o
   risco de cortar texto ou sobrepor as bolinhas de navegação quando o texto mudar.
   Este valor abaixo é só uma reserva mínima para o instante antes do JS calcular. */
.hero-carousel {
    position: relative;
    min-height: 60px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide-badge {
    min-height: 34px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: var(--border-strong);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
    width: 26px;
    background: var(--grad-primary);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 44px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.hero-stats div strong {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 28px;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-stats div span {
    font-size: 13px;
    color: var(--text-muted);
}

.hero-visual {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
}

/* Moldura da foto: define o tamanho (aspect-ratio) e serve de referência de posição
   pro selo de SLA (.hero-badge), que fica ancorado nela -- assim ele não se move
   quando a fileira de chips abaixo muda de altura (1 ou 2 linhas). O recorte
   arredondado de verdade fica em .hero-visual-clip, um passo adiante. */
.hero-visual-frame {
    position: relative;
    aspect-ratio: 16 / 9;      /* Mesma proporção do vídeo do YouTube do 1º slide, pra ele preencher o quadro inteiro sem tarjas pretas */
}

/* Cantos arredondados, borda e sombra -- por dentro dela as fotos (.hero-visual-slide)
   se revezam junto com o texto do carrossel ao lado. */
.hero-visual-clip {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 40px 90px rgba(15, 23, 42, 0.16);
}

.hero-visual-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.hero-visual-slide.is-active {
    opacity: 1;
    z-index: 1;
}

.hero-visual-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-visual-slide iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.hero-chip-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 14px 18px;
    margin-top: -8px;
    font-size: 11.5px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.hero-chip-row .live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2ecc71;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.2);
    margin-right: 4px;
}

.hero-chip-row .live-label {
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-right: 6px;
}

.hero-chip-row .chip {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 4px 10px;
    color: var(--text-muted);
    white-space: nowrap;
}

.hero-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    background: var(--grad-orange);
    color: #ffffff;
    border-radius: var(--radius-md);
    padding: 14px 20px;
    box-shadow: 0 20px 40px rgba(237, 109, 5, 0.763);
}

.hero-badge strong {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 24px;
    line-height: 1.2;
}

.hero-badge em {
    display: block;
    background: none;
    -webkit-text-fill-color: unset;
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
}

/* ---------- Vantagens ---------- */
/* .section-alt é o fundo cinza-clarinho usado em 3 seções da página:
   Vantagens e Depoimentos (não é exclusivo de uma só). */

.section-alt {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.icon-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.icon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(20, 80, 143, 0.12);
}

.icon-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: var(--grad-primary);
    color: #ffffff;
    margin-bottom: 18px;
}

.icon-chip svg {
    width: 21px;
    height: 21px;
}

.icon-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16.5px;
    margin-bottom: 8px;
}

.icon-card p {
    font-size: 14px;
}

.advantages-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* ---------- Promoção da semana ---------- */
/* 2 cartões de oferta (.promo-card): foto (.promo-media) + selo laranja "PROMOÇÃO DA SEMANA!"
   (.promo-badge) grudado nela, depois o corpo (.promo-body) com título, preço, texto e
   ficha técnica (.promo-specs). Segue o mesmo padrão visual dos cartões do Catálogo
   (.catalog-media / .catalog-badge), só que com o selo e a borda em laranja. */

.catalog-group-header {
    text-align: center;
    margin-bottom: 24px;
}

.catalog-group-header .eyebrow {
    margin-bottom: 0;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-bottom: 40px;
}

.catalog-toggle {
    display: flex;
    justify-content: center;
}

.catalog-toggle .btn svg {
    transition: transform 0.2s ease;
}

.catalog-toggle .btn[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.promo-card {
    position: relative;
    background: var(--surface);
    border: 1px solid rgba(201, 96, 10, 0.28);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(201, 96, 10, 0.16);
}

.promo-media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--surface-2);
}

.promo-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-block;
    background: var(--grad-orange);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    box-shadow: 0 10px 22px rgba(201, 96, 10, 0.3);
}

.promo-body {
    padding: 28px 28px 30px;
}

.promo-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    color: var(--text);
    margin-bottom: 6px;
}

.promo-price {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 24px;
    color: var(--orange);
    margin-bottom: 10px;
}

.promo-price span {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
}

.promo-body > p:not(.promo-price) {
    font-size: 14.5px;
    margin-bottom: 20px;
}

.promo-specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.promo-specs li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 14px;
    color: var(--text);
}

.promo-specs li svg {
    width: 15px;
    height: 15px;
    margin-top: 2px;
    color: var(--orange);
    flex-shrink: 0;
}

/* ---------- Catálogo ---------- */

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    /* Fica aqui (não como margin-bottom no botão "Veja mais") porque esse bloco só
       existe no layout quando o catálogo está aberto -- assim não sobra espaço
       vazio embaixo do botão quando ele está fechado. */
    margin-top: 40px;
}

.catalog-grid[hidden] {
    display: none;
}

.catalog-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.catalog-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.1);
}

.catalog-media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--surface-2);
}

.catalog-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Painel com ícone usado quando um cartão do catálogo não tem foto ainda
   (hoje todos os 4 cartões já têm foto real, então esta classe não está
   em uso em nenhum lugar do Index.html no momento — fica aqui disponível
   caso algum cartão volte a precisar de um placeholder). */
.catalog-media.is-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 20%, rgba(20, 80, 143, 0.14), transparent 60%), var(--surface-2);
}

.catalog-media.is-placeholder svg {
    width: 72px;
    height: 72px;
    color: var(--blue);
    opacity: 0.4;
}

.catalog-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(201, 96, 10, 0.3);
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
}

.catalog-body {
    padding: 28px 28px 30px;
}

.catalog-body h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 19px;
    color: var(--text);
    margin-bottom: 10px;
}

.catalog-body > p {
    font-size: 14.5px;
    margin-bottom: 18px;
}

.catalog-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 22px;
}

.catalog-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    color: var(--text);
}

.catalog-list li svg {
    width: 15px;
    height: 15px;
    color: var(--blue);
    flex-shrink: 0;
}

/* ---------- Planos ---------- */

#equipamentos {
    padding-bottom: 50px;
}

#planos {
    padding-top: 50px;
}

.plans-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.plan {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 34px 30px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.plan.is-featured {
    border-color: var(--blue-light);
    box-shadow: 0 24px 60px rgba(20, 80, 143, 0.18);
}

.plan-tag {
    position: absolute;
    top: -13px;
    right: 28px;
    background: var(--grad-primary);
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
}

.plan-window {
    font-size: 12.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.plan h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    color: var(--text);
    margin-bottom: 14px;
}

.plan-price {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 30px;
    color: var(--text);
    margin-bottom: 4px;
}

.plan-price span {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
}

.plan-desc {
    font-size: 14px;
    margin: 12px 0 22px;
}

.plan-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 26px;
    flex-grow: 1;
}

.plan-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 14px;
    color: var(--text);
}

.plan-list li svg {
    width: 15px;
    height: 15px;
    margin-top: 2px;
    color: var(--blue);
    flex-shrink: 0;
}

/* ---------- Depoimentos ---------- */

.testimonial-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.testimonial {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px 28px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.stars {
    display: flex;
    gap: 3px;
    color: var(--orange);
    margin-bottom: 18px;
}

.stars svg {
    width: 15px;
    height: 15px;
}

.testimonial p {
    font-size: 14.5px;
    color: var(--text);
    margin-bottom: 22px;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14.5px;
    color: var(--text);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ---------- FAQ ---------- */

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0 24px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    transition: border-color 0.2s ease;
}

.faq-item:hover {
    border-color: var(--border-strong);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--text);
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--blue);
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-item p {
    font-size: 14.5px;
    padding: 0 32px 22px 0;
}

/* ---------- Contato ---------- */

/* Seção vira uma faixa de foto em tela cheia (sem padding do <section>, a
   foto cobre 100% da largura/altura) com filtro escuro e o conteúdo
   (título, texto e botão) sobreposto por cima -- estilo "banner institucional". */
#contato {
    padding: 0;
}

.contact-banner {
    position: relative;
    width: 100%;
    min-height: 560px;
    overflow: hidden;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-banner img:not(.contact-banner-logo) {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 100%;
    display: block;
}

.contact-banner-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 14, 26, 0.52) 0%, rgba(8, 14, 26, 0.68) 100%);
}

.contact-banner-logo {
    position: absolute;
    top: 28px;
    right: 8%;
    height: 26px;
    width: auto;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-pill);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.contact-banner-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    text-align: center;
    padding: 110px 8%;
}

.contact-banner-content h2 {
    font-size: 68px;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.contact-banner-content h2 em {
    background: linear-gradient(135deg, #ff7a1a 0%, #ff9d3d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: #ff7a1a;
}

.contact-banner-content > p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 36px;
    color: #ffffff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* Botão "Solicitar contato via WhatsApp" com gradiente verde e selo do ícone
   à esquerda, mais um brilho suave ao redor -- reaproveitado em qualquer CTA
   que leve pro WhatsApp (banner de contato e seção "Nosso diferencial"). */
.btn-whatsapp {
    background: linear-gradient(90deg, #1f8a3d 0%, #8bc34a 100%);
    box-shadow: 0 0 48px rgba(139, 195, 74, 0.45), 0 14px 32px rgba(0, 0, 0, 0.35);
    padding: 10px 36px 10px 10px;
    font-size: 18px;
    gap: 12px;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 56px rgba(139, 195, 74, 0.55), 0 18px 38px rgba(0, 0, 0, 0.4);
}

.whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    flex-shrink: 0;
}

.whatsapp-icon svg {
    width: 19px;
    height: 19px;
}

/* ---------- Footer ---------- */

.site-footer {
    padding: 64px 8% 32px;
    border-top: 1px solid var(--border);
    background: var(--bg-alt);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 44px;
}

.site-footer .logo img {
    height: 26px;
    margin-bottom: 18px;
}

.footer-brand p {
    font-size: 14px;
    max-width: 320px;
    margin-bottom: 22px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-pill);
    padding: 8px 16px;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--surface);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-col ul li {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-col ul li a {
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: var(--blue);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.footer-bottom p,
.footer-bottom a {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom a:hover {
    color: var(--blue);
}

/* ---------- Responsivo ---------- */

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
    }

    .hero-text {
        max-width: 100%;
    }

    .icon-grid,
    .catalog-grid,
    .plans-row,
    .testimonial-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 6%;
    }

    .site-header {
        padding: 14px 5%;
        gap: 10px;
    }

    .logo img {
        height: 24px;
    }

    .header-actions {
        gap: 10px;
    }

    .header-actions .btn-primary {
        padding: 10px 16px;
        font-size: 13.5px;
    }

    .site-nav {
        position: fixed;
        inset: 0;
        top: 0;
        background: var(--bg);
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 1500;
        padding: 40px;
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav ul {
        flex-direction: column;
        gap: 30px;
    }

    .site-nav ul li a {
        font-size: 22px;
        color: var(--text);
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 22px;
        right: 6%;
        background: none;
        border: none;
        color: var(--text);
        font-size: 26px;
        cursor: pointer;
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        background: var(--surface);
        border: 1px solid var(--border-strong);
        border-radius: 10px;
        color: var(--text);
        font-size: 18px;
        cursor: pointer;
    }

    .header-phone {
        display: none;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .icon-grid,
    .promo-grid,
    .catalog-grid,
    .plans-row,
    .testimonial-row {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .contact-banner {
        min-height: 460px;
    }

    .contact-banner-content {
        padding: 90px 6%;
    }

    .contact-banner-content h2 {
        font-size: 40px;
    }

    .contact-banner-content > p {
        font-size: 16px;
    }

    .btn-whatsapp {
        font-size: 15.5px;
        padding: 8px 26px 8px 8px;
    }

    .whatsapp-icon {
        width: 34px;
        height: 34px;
    }

    .contact-banner-logo {
        top: 16px;
        right: 6%;
        height: 20px;
        padding: 6px 11px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .social-links {
        justify-content: center;
    }
}
/* Cole no final do seu arquivo CSS */

.btn-block {
    width: auto;
    padding: 14px 32px;
}
