/* ===========================
   AWC • Tema Claro (Light)
   Arquivo: style.light.css
   Paleta: Preto/Grafite (#111111), Cinzas Aço (#C7CCD1 / #8E949B), Amarelo AWC (#FFD23A)
=========================== */

/* ---------- Variáveis ---------- */
:root{
  /* Cores AWC */
  --brand: #111111;          /* texto principal / títulos */
  --brand-600: #2B2B2B;      /* hover/estados */
  --steel-100: #EEF1F4;      /* cinza claríssimo p/ superfícies */
  --steel-200: #E3E7EB;      /* bordas suaves */
  --steel-300: #C7CCD1;      /* linhas/bordas */
  --steel-500: #8E949B;      /* texto secundário */
  --accent: #FFD23A;         /* amarelo AWC */
  --accent-700: #E2B400;     /* hover do amarelo */

  /* Superfícies e efeito glass para tema claro */
  --surface: #FFFFFF;                              /* fundo base */
  --surface-muted: #F7F9FB;                        /* blocos / footer claro */
  --glass-bg: rgba(17,17,17,.04);                  /* glass leve no claro */
  --glass-border: rgba(17,17,17,.10);              /* borda sutil */
  --ring: rgba(17,17,17,.10);

  /* Tipografia */
  --text: var(--brand);
  --text-dim: var(--steel-500);

  /* Navbar (altura) */
  --header-bar: 64px;
  --header-pad: 24px; /* 12 + 12 */
  --header-h: calc(var(--header-bar) + var(--header-pad));
}

/* ---------- Reset/Base ---------- */
*{ box-sizing:border-box }
html, body{ height:100% }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background: var(--surface);
  min-height: 100svh;
}

/* Links padrão */
a{ color: inherit; }
a:focus-visible{ outline: 2px solid var(--accent); outline-offset: 2px; }
::selection{ background: #FFF1B8; color: #1A1A1A; }

/* ---------- Navbar (glass + hambúrguer) ---------- */
.site-header{ position: sticky; top: 20px; z-index: 50; background: rgba(255,255,255,.6); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.nav-wrap{ max-width:1100px; margin:auto; padding:12px 16px; }

.navbar{
  display:flex; align-items:center; justify-content:space-between;
  min-height: var(--header-bar);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 10px 14px;
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  backdrop-filter: blur(12px) saturate(120%);
  box-shadow: 0 6px 20px rgba(17,17,17,.06);
}

.brand{ display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--text); }
.brand__logo{
  display:grid; place-items:center; color:#1A1A1A; font-weight:800;
}
.brand__logo img{
  width: 65px;
}
.brand__name{ font-weight:700; letter-spacing:.2px; }

.menu-list{ display:flex; gap:14px; list-style:none; padding:0; margin:0; }
.menu-list a{
  color:var(--text); text-decoration:none;
  padding:8px 10px; border-radius:10px; transition: background .2s ease;
}
.menu-list a:hover{ background: rgba(17,17,17,.05); }

.cta{
  margin-left:8px; background: var(--accent); color:#1A1A1A !important;
  padding:9px 14px; border-radius:999px; font-weight:600;
  box-shadow: 0 4px 14px rgba(226,180,0,.35);
}
.cta:hover{ background: var(--accent-700); }

/* Hambúrguer */
.hamb{
  appearance:none; background:transparent; border:0; color:var(--text);
  width:44px; height:44px; border-radius:10px; display:none;
  align-items:center; justify-content:center; cursor:pointer;
}
.hamb:focus-visible{ outline:2px solid var(--accent); outline-offset:3px; }
.hamb__box{ position:relative; width:22px; height:14px; }
.hamb__line, .hamb__line::before, .hamb__line::after{
  content:""; position:absolute; left:0; width:100%; height:2px;
  background: var(--text); border-radius:2px;
  transition: transform .25s ease, opacity .2s ease;
}
.hamb__line{ top:50%; transform:translateY(-50%); }
.hamb__line::before{ top:-6px; }
.hamb__line::after{ top:6px; }

/* Mobile menu */
.drawer{ display:none; }
@media (max-width: 860px){
  .hamb{ display:flex; }
  .menu-list{ display:none; }

  /* === Drawer off-canvas (mobile only) === */
  .drawer{
    position:fixed;
    inset:0;
    top:0;
    right:0;
    width:100%;
    height:100dvh;
    z-index:120;
    pointer-events:none; /* inicialmente bloqueado até abrir */
  }

  /* backdrop (sombra clicável) */
  .drawer__backdrop{
    position:absolute;
    inset:0;
    background: rgba(0,0,0,0.45);
    opacity:0;
    transition: opacity .28s ease;
    pointer-events:none;
  }

  /* painel que desliza da direita */
  /* painel que desliza da direita */
  .drawer__panel{
    position:absolute;
    right:0;
    top:0;
    height:100%;
    width: min(420px, 92%);
    background: var(--surface);
    border-left: 1px solid rgba(0,0,0,0.06);
    box-shadow: -18px 40px 80px rgba(17,17,17,.12);
    
    /* transições */
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform .36s cubic-bezier(.2,.9,.2,1), opacity .25s ease, visibility 0s linear .25s;
    
    display:flex;
    flex-direction:column;
    padding:18px;
    gap:12px;
    overflow:auto;
    pointer-events:auto;
  }

  /* quando o menu abre */
  .navbar.open .drawer__panel{
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    transition: transform .36s cubic-bezier(.2,.9,.2,1), opacity .25s ease;
  }

  /* header interno do painel */
  .drawer__top{ display:flex; align-items:center; justify-content:space-between; gap:12px; }

  /* links verticais maiores */
  .drawer__inner{ display:flex; flex-direction:column; gap:8px; margin-top:6px; }
  .drawer__inner a{
    display:block; padding:12px 14px; border-radius:10px; text-decoration:none;
    color:var(--text); font-weight:700; background:transparent;
  }
  .drawer__inner a.cta{ background:var(--accent); color:#fff; }

  /* quando nav abre (ativo) */
  .navbar.open .drawer{
    pointer-events:auto;
    display: block;
  }
  .navbar.open .drawer__backdrop{ opacity:1; pointer-events:auto; }
  /* .navbar.open .drawer__panel{ transform: translateX(0); } */

  /* esconder menu-list desktop no mobile (mantém hamb) */
  .menu-list{ display:none !important; }

  /* remover estilo default do botão (evita bordas escuras) */
  .drawer__panel .hamb.close{
    background:transparent; border:0; font-size:20px; cursor:pointer;
  }

  /* foco acessível */
  .drawer__panel a:focus, .drawer__panel button:focus{ outline:2px solid var(--accent); outline-offset:3px; }

  .hero {
    min-height: calc(60svh - var(--header-h)) !important;
  }

}

@media (max-width: 520px){
  .art, .about-info__art{
    display: none !important
  }
  .actions{
    flex-wrap: nowrap !important;
  }

  .actions a {
    padding: 10px 10px !important;
  }

  .btn {
    padding: 10px 11px !important;
  }

  .services, .contact{
      margin: 0px auto !important;
  }

  .clientes_section {
    padding: 0px 30px !important;
  }

  .contact__form button {
    margin-top: 6px;
    justify-self: center !important;
    text-align: center;
    align-items: center;
  }
}

/* ---------- Hero ---------- */
.hero{ min-height: calc(100svh - var(--header-h)); display:grid; align-items:center; color: var(--text-dim); }
.grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:28px; align-items:center; max-width:1100px; margin:auto; padding:24px 16px; }
@media (max-width: 960px){ .grid{ grid-template-columns:1fr; gap:20px; } }
.eyebrow{ display:inline-flex; align-items:center; gap:8px; font-size:12px; letter-spacing:.12em; text-transform:uppercase; color: var(--steel-500); margin-bottom:8px; }
.eyebrow::before{ content:""; width:20px; height:2px; border-radius:2px; background: var(--accent); }
h1{ font-size:clamp(28px,3.2vw,44px); line-height:1.1; letter-spacing:.2px; color: var(--text); }
p{ margin:0; color:var(--text-dim); font-size:clamp(15px,1.2vw,18px); }
.actions{ display:flex; gap:10px; margin-top:16px; flex-wrap:wrap; }
.btn{ display:inline-flex; align-items:center; gap:8px; padding:12px 18px; border-radius:999px; font-weight:600; text-decoration:none; border:1px solid var(--glass-border); background: #FFFFFF; }
.btn:hover{ background: #F6F6F6; }
.btn.primary{ background: var(--accent); color:#1A1A1A; border-color: transparent; }
.btn.primary:hover{ background: var(--accent-700); }
.badges{ margin-top:14px; display:flex; gap:12px; flex-wrap:wrap; color: var(--steel-500); font-size:13px; }
.badge{ padding:6px 10px; border-radius:999px; background: var(--glass-bg); border:1px solid var(--glass-border); }
.art{ position:relative; border-radius:18px; overflow:hidden; box-shadow: 0 12px 26px rgba(17,17,17,.08); min-height:280px; background: var(--steel-100); }
.art img{ width:100%; height:100%; object-fit:cover; display:block; }
#img_painel_eletrico {
  height: 300px !important;
}
/* ===== Quem Somos (foco em pessoas/cultura) ===== */
.about{
  max-width:1100px;
  margin:80px auto;
  padding:24px 16px;
}
.about__wrap{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:28px;
}
@media (max-width: 960px){
  .about__wrap{ grid-template-columns:1fr; }
}

.about__lead h2 {
margin: 6px 0 30px;
font-size: clamp(22px, 2.6vw, 34px);
color: var(--text);
}

.about__lead p{
  color: var(--text-dim);
  line-height: 1.6;
  margin: 6px 0 14px;
}

/* valores (chips) – diferente dos bullets do .about-info */
.about__values{
  display:flex; flex-wrap:wrap; gap:10px;
  list-style:none; padding:0; margin: 10px 0 0;
}
.about__values li{
  padding:6px 10px; border-radius: 999px;
  background: var(--surface-muted);
  border: 1px solid var(--steel-200);
  font-size:12px; color: var(--text-dim);
}

/* cards da equipe (mantém sua base, só reforça o contraste) */
.team{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap:20px;
}
.member{
  background: var(--surface-muted);
  border:1px solid var(--steel-200);
  border-radius:14px; padding:18px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  box-shadow: 0 8px 20px rgba(17,17,17,.06);
}
.member:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(17,17,17,.10);
  border-color: var(--steel-300);
}
.member img{
  width:96px; height:96px; border-radius:50%;
  object-fit:cover; display:block;
  margin: 4px auto 10px;
  border: 2px solid var(--accent);
}
.member header{ text-align:center; }
.member h3{ margin:0; font-size:18px; color: var(--text); }
.member .role{ display:block; margin-top:2px; font-size:13px; color: var(--text-dim); }
.member .bio{ margin:10px 0 0; font-size:14px; line-height:1.5; color: var(--text-dim); text-align:center; }

/* ===== Sobre a empresa (about-info) ===== */
.about-info {
  padding: 56px 16px;
  background: var(--surface);
}

.about-info__wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
  grid-template-columns: 1.1fr .9fr;
}
@media (max-width: 960px) {
  .about-info__wrap { grid-template-columns: 1fr; }
}

.about-info__text h2 {
  margin: 6px 0 30px;
  font-size: clamp(22px, 2.6vw, 34px);
  color: var(--text);
}

.about-info__text p {
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 16px;
}

.about-info__bullets {
  margin: 12px 0 16px;
  padding: 0;
  list-style: none;
  color: var(--text);
}
.about-info__bullets li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
}
.about-info__bullets li::before {
  content: "";
  position: absolute;
  left:0; top: .6em;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

/* KPIs */
.about-info__kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin: 30px 0;
}
@media (max-width: 640px) {
  .about-info__kpis { grid-template-columns: 1fr 1fr; }
}
.kpi {
  background: var(--surface-muted);
  border: 1px solid var(--steel-200);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(17,17,17,.06);
}
.kpi strong {
  display:block;
  font-size: 22px;
  color: var(--text);
}
.kpi span {
  color: var(--text-dim);
  font-size: 13px;
}

/* Trust badges */
.about-info__trust {
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin: 8px 0 30px;
}
.badge-soft {
  padding:6px 10px;
  border-radius: 999px;
  background: var(--surface-muted);
  border: 1px solid var(--steel-200);
  color: var(--text-dim);
  font-size: 12px;
}

/* Imagem lateral */
.about-info__art {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--steel-200);
  background: var(--steel-100);
  box-shadow: 0 12px 26px rgba(17,17,17,.08);
}
.about-info__art img {
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* ---------- Serviços ---------- */
.services{ max-width:1100px; margin:80px auto; padding:24px; text-align:center; }
.services h2{ font-size:32px; margin:8px 0 12px; color: var(--text); }
.services__intro{ max-width:720px; margin:0 auto 32px; color: var(--text-dim); font-size:16px; line-height:1.6; }
.services__grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap:20px; }
.service{ background: var(--surface-muted); border:1px solid var(--steel-200); border-radius:14px; padding:20px; text-align:left; transition: transform .2s ease, box-shadow .2s ease; }
.service:hover{ transform: translateY(-4px); box-shadow: 0 10px 24px rgba(17,17,17,.10); }
.service img{ width:48px; height:48px; margin-bottom:12px; }
.service h3{ margin:0 0 6px; font-size:18px; color: var(--text); }
.service p{ margin:0; font-size:14px; line-height:1.5; color: var(--text-dim); }

/* ---------- Clientes ---------- */
section[aria-label=\"Clientes\"]{ margin-top: 24px; }
.clients{ width:min(1100px,100%); margin:60px auto; background: var(--surface-muted); border:1px solid var(--steel-200); border-radius:16px; box-shadow: 0 8px 20px rgba(17,17,17,.08); padding:18px; text-align:center; }
.clients .eyebrow{ display:inline-flex; align-items:center; gap:8px; font-size:12px; letter-spacing:.12em; text-transform:uppercase; color: var(--text-dim); margin-bottom:16px; margin-left:6px; }
.clients .eyebrow::before{ content:\"\"; width:20px; height:2px; border-radius:2px; background: var(--accent); }
.clients__viewport{ position:relative; overflow:hidden; width:100%; margin-top:10px; border-radius:12px; border:1px solid var(--steel-200); background: var(--surface); }
.clients__track{ display:flex; align-items:center; gap:48px; padding:16px 24px; will-change: transform; }
.clients__item{ flex:0 0 auto; display:grid; place-items:center; height:72px; min-width:160px; }
.clients__item img{ max-height:52px; max-width:160px; width:auto; height:auto; opacity:.95; filter: grayscale(100%) contrast(1.05); transition: filter .2s ease, opacity .2s ease; }
.clients__item img:hover{ filter:none; opacity:1; }
@media (prefers-reduced-motion: reduce){ .clients__viewport{ overflow:auto; } }

/* ---------- Contato ---------- */
/* ===== Contato (refinado) ===== */
.contact{
  max-width:1100px;
  margin:80px auto;
  padding:24px 16px;
}
.contact__wrap{
  display:grid;
  grid-template-columns: 1.05fr .95fr; /* info à esquerda, form à direita */
  gap:32px;
}
@media (max-width: 860px){
  .contact__wrap{ grid-template-columns:1fr; }
}

.contact__info .eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; letter-spacing:.12em; text-transform:uppercase;
  color: var(--text-dim);
}
.contact__info .eyebrow::before{
  content:""; width:20px; height:2px; border-radius:2px; background: var(--accent);
}
.contact__info h2{
  margin:6px 0 8px;
  font-size: clamp(22px, 2.6vw, 34px);
  color: var(--text);
}
.contact__intro{
  color: var(--text-dim);
  margin-bottom:16px;
  line-height:1.6;
}

/* Grid de cards glass (endereço/telefone/email) */
/* Cards de contato */
.contact__cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:12px;
}
@media (max-width: 640px){
  .contact__cards{ grid-template-columns:1fr; }
}

/* Força o e-mail a ocupar as 2 colunas do grid */
.contact-card--full{
  grid-column: 1 / -1;
}

.contact-card{
  display:flex;
  gap:12px;
  align-items:flex-start;
  background: var(--glass-bg);
  border:1px solid var(--glass-border);
  border-radius:14px;
  padding:14px;
  box-shadow: 0 8px 20px rgba(17,17,17,.06);
}

.contact-card__icon{
  flex:0 0 44px;
  width:44px; height:44px;
  display:grid; place-items:center;
  border-radius:10px;
  background: var(--surface-muted);
  border:1px solid var(--steel-200);
  overflow:hidden;
}
.contact-card__icon img{
  width:60%;
  height:60%;
  object-fit:contain;
}

.contact-card__body h3{
  margin:0 0 2px;
  font-size:14px;
  color: var(--text);
}
.contact-card__body p{
  margin:0;
  font-size:14px;
  color: var(--text-dim);
  line-height:1.5;
}
.contact-card__body a{
  color: var(--brand-600);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-card a{
  color: var(--brand-600); text-decoration: underline; text-underline-offset: 3px;
}

/* Formulário mantém à direita */
.contact__form{ display:grid; gap:14px; }
.field{ display:flex; flex-direction:column; }
.field label{ margin-bottom:4px; font-size:14px; color: var(--text-dim); }
.field input, .field textarea{
  border:1px solid var(--steel-300);
  border-radius:10px;
  padding:10px 12px;
  background:#fff; color: var(--text);
  font-size:15px; outline:none;
}
.field input:focus, .field textarea:focus{
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,210,58,.35);
}
.contact__form button{ justify-self:start; margin-top:6px; }


/* ---------- Google Maps ---------- */
.map{ max-width:1100px; margin:24px auto 80px; padding: 0 24px; }
.map__wrap h2{ font-size:24px; margin:0 0 12px; color: var(--text); }
.map__frame{ position:relative; width:100%; border-radius:16px; overflow:hidden; background: var(--surface-muted); border:1px solid var(--steel-200); box-shadow: 0 8px 20px rgba(17,17,17,.08); aspect-ratio: 16 / 9; }
.map__frame iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }

/* ---------- Rodapé ---------- */
.site-footer{ background: var(--surface-muted); padding: 40px 24px 20px; color: var(--text-dim); border-top: 1px solid var(--steel-200); }
.footer__wrap{ max-width:1100px; margin:auto; display:grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap:32px; }
.footer__brand h3{ margin:8px 0 6px; font-size:20px; color: var(--text); }
.footer__brand p{ font-size:14px; line-height:1.5; }
.footer__nav h4, .footer__contact h4{ font-size:16px; margin-bottom:8px; color: var(--text); }
.footer__nav ul, .footer__contact ul{ list-style:none; padding:0; margin:0; }
.footer__nav li, .footer__contact li{ margin-bottom:6px; font-size:14px; }
.footer__nav a, .footer__contact a{ color: var(--text-dim); text-decoration:none; }
.footer__nav a:hover, .footer__contact a:hover{ color: var(--brand-600); }
.footer__social{ margin-top:10px; display:flex; gap:10px; }
.footer__copy{ margin-top:24px; text-align:center; font-size:13px; color: var(--text-dim); }

/* Ajuste nos cards de portfólio */
.case__thumb {
  width: 100%;
  height: 200px;              /* altura fixa ou ajustável */
  overflow: hidden;           /* corta excesso da imagem */
  background: transparent;    /* remove fundo branco */
}

.case__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* cobre toda a área */
  display: block;
}
.swal2-popup {
  border-radius: 16px !important;
  backdrop-filter: blur(10px);
}

.swal2-title {
  color: var(--text);
}

.swal2-html-container {
  color: var(--text-dim);
}

/* =================================================================
   BOTÃO FLUTUANTE DO WHATSAPP
   ================================================================= */

.whatsapp-float-button {
    /* --- Posicionamento Fixo --- */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;

    /* --- Estilo da "Bolinha" --- */
    width: 60px;
    height: 60px;
    background-color: transparent;
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    
    /* --- Estilo do Ícone --- */
    color: #25D366;
    font-size: 36px;

    /* --- Centralização do Ícone --- */
    display: flex;
    justify-content: center;
    align-items: center;

    /* --- Animação Suave --- */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efeito ao passar o mouse por cima */
.whatsapp-float-button:hover {
    transform: scale(1.1);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
}

a:-webkit-any-link {
    text-decoration: none;
}

/* =================================================================
   ESTILOS DA PÁGINA DE POLÍTICA DE PRIVACIDADE
   ================================================================= */
/* ===== Política de Privacidade ===== */
.privacy-policy-container {
  max-width: 1100px;
  margin: 80px auto;
  padding: 24px;
}

.privacy-policy-container {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 16px;
  padding: 40px 32px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.privacy-policy-container h1 {
  font-size: 32px;
  color: var(--text);
  margin-bottom: 16px;
  text-align: left;
}

.privacy-policy-container h3 {
  margin-top: 32px;
  font-size: 20px;
}

.privacy-policy-container p,
.privacy-policy-container li {
  color: var(--text-dim);
  line-height: 1.6;
  margin-top: 8px;
  font-size: 16px;
}

.privacy-policy-container ul {
  padding-left: 20px;
  margin-top: 8px;
}

.privacy-policy-container a {
  color: var(--accent);
  text-decoration: none;
  transition: color .2s ease;
}

.privacy-policy-container a:hover {
  color: #1368c4;
}

.privacy-policy-container p:last-child {
  margin-bottom: 0;
}

.privacy-policy-container .last-update {
  margin-top: 32px;
  font-size: 14px;
  color: #777;
  text-align: right;
}

/* ===== Página Legal (Termos de Serviço) ===== */

.legal-page {
  max-width: 1100px;
  margin: 80px auto;
  padding: 24px;
}

.legal-content {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 16px;
  padding: 40px 32px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.legal-content h1 {
  font-size: 32px;
  color: var(--text);
  margin-bottom: 16px;
}

.legal-content h2 {
  margin-top: 32px;
  font-size: 20px;
}

.legal-content p, .legal-content li {
  color: var(--text-dim);
  line-height: 1.6;
  margin-top: 8px;
  font-size: 16px;
}

.legal-content ul {
  padding-left: 20px;
  margin-top: 8px;
}

.legal-content .last-update {
  margin-top: 32px;
  font-size: 14px;
  color: #777;
}

/* ===== Carrossel (Slide de Imagens) ===== */
.slide-gallery-title {
  display: block;
  text-align: center;
  margin: 80px auto 24px auto;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
}

.slide-gallery-title::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  margin-right: 8px;
  vertical-align: middle;
}

/* ===== Título principal (se quiser incluir h2) ===== */
.slide-gallery h2 {
  text-align: center;
  font-size: clamp(24px, 2.8vw, 36px);
  color: var(--text);
  margin-top: -12px;
  margin-bottom: 28px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* ===== Espaçamento e responsividade ===== */
@media (max-width: 768px) {
  .slide-gallery-title,
  .eyebrow {
    margin: 60px auto 20px;
    font-size: 13px;
  }
  .slide-gallery h2 {
    font-size: 22px;
  }
}

.slide-gallery {
  position: relative;
  margin: 35px auto;
  max-width: 1100px;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.slide-container {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slide-track {
  display: flex;
  width: calc(250px * 10);
  animation: scroll 25s linear infinite;
}

.slide-card {
  flex: 0 0 auto;
  width: 300px;
  margin: 20px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slide-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.slide-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
}

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

/* Responsivo */
@media (max-width: 1154px) {
  .slide-gallery {
    margin: 30px 80px;
  }
}

@media (max-width: 900px) {
  .slide-card { width: 250px; margin: 16px; }
  .slide-card img { height: 160px; }
}

@media (max-width: 600px) {
  .slide-card { width: 200px; margin: 12px; }
  .slide-card img { height: 140px; }
}

/* Centraliza apenas o eyebrow dentro da seção do slide */
.slide-gallery + .eyebrow,
.slide-gallery ~ .eyebrow,
.slide-gallery-container .eyebrow,
.slide-gallery .eyebrow,
.eyebrow[data-align="center"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  margin: 80px auto 16px auto;
}

/* Linha decorativa do eyebrow centralizado */
.slide-gallery + .eyebrow::before,
.slide-gallery .eyebrow::before,
.eyebrow[data-align="center"]::before {
  content: "";
  width: 40px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  margin-right: 8px;
}
