/* ===== Fonte Arboria via CDN ===== */
@import url('https://fonts.cdnfonts.com/css/arboria');

:root{
  --brand:#572fa2;
  --white:#ffffff;
  --bg:#0f0f14;
  --text:#e9e9ee;
  --muted:#bcbccd;
  --glass:rgba(15,15,20,.6);
  --shadow:0 10px 30px rgba(0,0,0,.25);
}

html{ scroll-behavior:smooth; }
*,*::before,*::after{ box-sizing:border-box; }
body{
  margin:0;
  font-family:'Arboria', Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; height:auto; }

.container{ width:min(1200px,92%); margin:0 auto; }

/* ===== HEADER ===== */
.header{
  position:sticky; top:0; z-index:1000;
  background:transparent;
  transition:background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.header.scrolled{
  background:var(--glass);
  backdrop-filter:saturate(140%) blur(10px);
  box-shadow:var(--shadow);
}

.nav{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:24px; }

/* Logo */
.brand__logo{ height:150px; width:auto; object-fit:contain; }

/* Menu desktop */
.menu{ display:none; align-items:center; gap:24px; }
.menu a{ color:var(--muted); font-weight:500; }
.menu a:hover, .menu a[aria-current="page"]{ color:var(--white); }

/* CTA WhatsApp */
.cta{
  display:inline-flex; align-items:center; gap:10px;
  background:var(--brand); color:var(--white);
  padding:10px 18px; border-radius:999px; font-weight:700;
  border:0; box-shadow:0 6px 18px rgba(87,47,162,.35);
  transition:transform .2s ease;
}
.cta:hover{ transform:translateY(-1px); }

/* Burger */
.burger{ background:transparent; border:0; color:var(--white); display:inline-flex; padding:8px; }
.burger svg{ width:28px; height:28px; }

/* Painel mobile */
.panel{
  position:fixed; inset:64px 0 auto 0; height:calc(100dvh - 64px);
  background:#111118; border-top:1px solid rgba(255,255,255,.06);
  transform:translateY(-8px); opacity:0; pointer-events:none;
  transition:opacity .25s ease;
}
.panel.open{ opacity:1; pointer-events:auto; }
.panel__inner{ padding:18px 4vw; display:grid; gap:16px; }
.panel__inner a{ color:var(--text); padding:12px 0; border-bottom:1px solid rgba(255,255,255,.06); }
.panel__cta{ margin-top:8px; }

/* Responsivo */
@media (min-width:992px){
  .menu{ display:flex; }
  .burger{ display:none; }
  .panel{ display:none; }
}

/* ================= HERO ================= */
.hero{
  position: relative;
  padding: clamp(72px, 10vw, 140px) 0 clamp(64px, 8vw, 120px);
  overflow: clip;
}
.hero__bg{
  position: absolute; inset: 0;
  background:
    radial-gradient(1000px 600px at 15% 10%, rgba(87,47,162,.35) 0%, transparent 55%),
    radial-gradient(900px 500px at 85% 20%, rgba(87,47,162,.20) 0%, transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0) 40%);
  pointer-events: none;
}
.hero__inner{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.hero__content{ max-width: 720px; }
.hero__eyebrow{
  display:inline-block;
  font-weight:600;
  color: var(--white);
  background: rgba(87,47,162,.18);
  border: 1px solid rgba(87,47,162,.35);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.hero__title{
  font-size: clamp(32px, 5.2vw, 56px);
  line-height: 1.05;
  letter-spacing: .2px;
  margin: 0 0 14px 0;
}
.hero__title span{
  background: linear-gradient(90deg, #b597ff, #ffffff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lead{
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 19px);
  margin: 0 0 18px 0;
}

.hero__bullets{
  display:grid; gap:10px; margin: 0 0 24px 0; padding:0; list-style:none;
}
.hero__bullets li{
  display:flex; align-items:center; gap:10px;
  color: var(--text);
}
.hero__bullets svg{
  width:20px; height:20px; flex:0 0 20px;
  fill: var(--brand);
  filter: drop-shadow(0 2px 8px rgba(87,47,162,.45));
}

.hero__ctas{ display:flex; align-items:center; gap:12px; margin-top: 6px; }
.btn{
  display:inline-flex; align-items:center; gap:10px;
  font-weight:700; border-radius: 999px; padding: 12px 18px; border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn svg{ width:18px; height:18px; }
.btn--primary{
  background: var(--brand); color: var(--white);
  box-shadow: 0 10px 30px rgba(87,47,162,.35);
}
.btn--primary:hover{ transform: translateY(-1px); }
.btn--ghost{
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,.22);
}
.btn--ghost:hover{ border-color: rgba(255,255,255,.42); transform: translateY(-1px); }

.hero__trust{
  display:flex; align-items:center; gap:10px;
  color: var(--muted); margin-top: 14px;
  font-size: 14px;
}
.badge{
  display:inline-block; padding: 4px 10px; border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.sep{ opacity:.5; }

/* Visual decorativo (leve, sem imagens pesadas) */
.hero__visual{
  position: relative; min-height: 320px; height: clamp(320px, 38vw, 540px);
}
.orb{
  position:absolute; border-radius:50%;
  filter: blur(18px);
  opacity:.75; transform: translateZ(0);
  animation: float 10s ease-in-out infinite alternate;
}
.orb--1{ width: 200px; height: 200px; right: 18%; top: 14%;
  background: radial-gradient(circle at 35% 35%, #b597ff, rgba(87,47,162,.4) 60%, transparent 70%); }
.orb--2{ width: 140px; height: 140px; left: 8%; bottom: 12%;
  background: radial-gradient(circle at 35% 35%, #ffffff, rgba(87,47,162,.35) 60%, transparent 70%); animation-duration: 12s; }

.grid{
  position:absolute; inset: 8% 6%; border-radius: 16px;
  background:
    linear-gradient(transparent 24px, rgba(255,255,255,.06) 25px) top/100% 25px,
    linear-gradient(90deg, transparent 24px, rgba(255,255,255,.06) 25px) left/25px 100%;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  backdrop-filter: blur(8px) saturate(130%);
}

/* Resposivo */
@media (max-width: 991px){
  .hero__inner{ grid-template-columns: 1fr; }
  .hero__visual{ order: -1; height: 300px; margin-bottom: 8px; }
  .hero__ctas{ flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce){
  .orb{ animation:none; }
}

@keyframes float{
  to { transform: translate3d(0,-10px,0) scale(1.03); }
}

/* ================= SERVICES ================= */
.services{
  position: relative;
  padding: clamp(64px, 8vw, 110px) 0;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border-top: 1px solid rgba(255,255,255,.06);
}
.services__header{
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 46px);
}
.eyebrow{
  display:inline-block;
  font-weight:600;
  color: var(--white);
  background: rgba(87,47,162,.18);
  border: 1px solid rgba(87,47,162,.35);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.services__header h2{
  margin: 6px 0 8px;
  font-size: clamp(26px, 3.6vw, 38px);
  line-height: 1.15;
}
.services__header h2 strong, .services__header h2 b { font-weight: 700; }
.services__lead{
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
}

.services__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 28px);
  margin-top: clamp(18px, 2.8vw, 28px);
}

/* CARD */
.card{
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  padding: clamp(18px, 2.6vw, 26px);
  box-shadow: 0 12px 30px rgba(0,0,0,.25), inset 0 0 0 1px rgba(255,255,255,.03);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card::after{
  content:"";
  position:absolute; inset:-1px;
  border-radius: inherit;
  background: radial-gradient(600px 200px at 20% -10%, rgba(87,47,162,.18), transparent 60%);
  pointer-events:none;
}
.card:hover{
  transform: translateY(-3px);
  border-color: rgba(87,47,162,.45);
  box-shadow: 0 16px 40px rgba(0,0,0,.32);
}

.card__icon{
  width: 46px; height: 46px;
  display:grid; place-items:center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(87,47,162,.75), rgba(87,47,162,.45));
  box-shadow: 0 10px 24px rgba(87,47,162,.35), inset 0 0 0 1px rgba(255,255,255,.12);
  margin-bottom: 14px;
}
.card__icon svg{ width: 24px; height: 24px; fill: currentColor; }

.card__title{
  margin: 4px 0 8px;
  font-size: clamp(18px, 2vw, 22px);
}
.card__text{
  color: var(--muted);
  margin: 0 0 12px 0;
}

.card__list{
  list-style: none; padding: 0; margin: 0 0 16px 0;
  display: grid; gap: 8px;
}
.card__list li{
  position: relative; padding-left: 18px; color: var(--text);
}
.card__list li::before{
  content: ""; position: absolute; left: 0; top: 9px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand); box-shadow: 0 0 0 3px rgba(87,47,162,.25);
}

.card__ctas{ display:flex; align-items:center; gap:10px; flex-wrap: wrap; }
.card .btn{ padding: 10px 16px; }

/* Responsivo */
@media (max-width: 1024px){
  .services__grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .services__grid{ grid-template-columns: 1fr; }
}

/* Destaque do termo dentro do h2 */
.services__header h2 strong.hl{
  background: linear-gradient(90deg, #b597ff, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;          /* torna o gradiente visível */
  font-weight: 700;
}

/* ================= VIDEOS ================= */
.videos{
  position: relative;
  padding: clamp(64px, 8vw, 110px) 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.videos__header{ text-align:center; margin-bottom: clamp(24px, 4vw, 42px); }
.videos__header h2{ margin: 6px 0 8px; font-size: clamp(26px, 3.4vw, 36px); }
.videos__lead{ color: var(--muted); max-width: 720px; margin: 0 auto; }

.videos__grid{
  display:grid; gap: clamp(14px, 2.4vw, 22px);
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px){ .videos__grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px){ .videos__grid{ grid-template-columns: 1fr; } }

.vid{ position:relative; }
.vid__btn{
  display:block; position:relative; width:100%; padding:0; border:0; background:transparent;
  text-align:left; cursor:pointer; border-radius: 16px; overflow:hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,.25), inset 0 0 0 1px rgba(255,255,255,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.vid__btn:hover{ transform: translateY(-2px); box-shadow: 0 16px 36px rgba(0,0,0,.35); }

.vid__thumb{ display:block; width:100%; height: clamp(200px, 24vw, 260px); object-fit: cover; filter: saturate(105%); }

.vid__play{
  position:absolute; inset:auto auto 18px 18px; width:54px; height:54px; border-radius:50%;
  background: radial-gradient(circle at 30% 30%, #ffffff, #b597ff 70%);
  box-shadow: 0 8px 16px rgba(87,47,162,.35);
}
.vid__play::before{
  content:""; position:absolute; left: 20px; top: 18px; width:0; height:0;
  border-left: 16px solid #572fa2; border-top: 10px solid transparent; border-bottom: 10px solid transparent;
}
.vid__caption{
  position:absolute; left: 18px; bottom: 18px; transform: translateY(64px);
  background: rgba(0,0,0,.45); color:#fff; font-weight:600; padding:6px 10px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .25s ease;
}
.vid__btn:hover .vid__caption{ transform: translateY(0); }

/* Lightbox */
.lightbox{
  position: fixed; inset: 0; display:none; z-index: 2000;
}
.lightbox[aria-hidden="false"]{ display:block; }
.lightbox__backdrop{
  position:absolute; inset:0; background: rgba(0,0,0,.6); backdrop-filter: blur(2px);
}
.lightbox__dialog{
  position: relative; width: min(1080px, 92%); margin: 8vh auto; background: rgba(17,17,24,.96);
  border-radius: 16px; border: 1px solid rgba(255,255,255,.08); box-shadow: 0 20px 60px rgba(0,0,0,.45);
}
.lightbox__close{
  position:absolute; top: 8px; right: 10px; border:0; background:transparent; color:#fff;
  font-size: 40px; line-height: 1; cursor:pointer; padding: 6px 10px;
}
.lightbox__player{
  aspect-ratio: 16/9; width: 100%; border-radius: 16px; overflow: hidden;
}
.lightbox__player iframe{
  width:100%; height:100%; border:0; display:block;
}

.videos__cta{ text-align:center; margin-top: clamp(18px, 3vw, 28px); }

/* ===== Gradiente premium para destaques ===== */
.hl-ink{
  background: linear-gradient(90deg,#b597ff, #ffffff 45%, #b597ff 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: inkflow 6s ease-in-out infinite;
  white-space: nowrap;
}
@keyframes inkflow{
  0%,100%{ filter: drop-shadow(0 0 0 rgba(87,47,162,0)); }
  50%{ filter: drop-shadow(0 4px 16px rgba(87,47,162,.35)); }
}

/* ================= TESTIMONIALS v2 ================= */
.testimonials{ position:relative; padding: clamp(68px,8vw,120px) 0; border-top:1px solid rgba(255,255,255,.06); }
.testimonials__header{ text-align:center; margin-bottom: clamp(28px,4vw,48px); }
.testimonials__header h2{ margin:6px 0 10px; font-size: clamp(28px,3.8vw,42px); }
.testimonials__lead{ color:var(--muted); max-width:760px; margin:0 auto; }

.testimonials__viewport{ position:relative; width:100%; margin:0 auto; max-width: 980px; }
.testimonials__track{ list-style:none; padding:0; margin:0; position:relative; min-height: 260px; }
.t-slide{ position:absolute; inset:0; opacity:0; pointer-events:none; transform: translateY(10px) scale(.995);
  transition: opacity .6s ease, transform .6s ease; }
.t-slide.is-active{ opacity:1; pointer-events:auto; transform: translateY(0) scale(1); }

/* Card com borda animada + vidro */
.t-card{
  position:relative; border-radius: 24px; padding: clamp(22px,3.4vw,32px);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  overflow:hidden; transform-style: preserve-3d;
}
.t-card::before{
  /* borda animada com conic gradient + máscara para parecer “neon” na borda */
  content:""; position:absolute; inset:-2px; border-radius: inherit; padding:2px;
  background: conic-gradient(from 0deg, #b597ff, #572fa2, #b597ff);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: spin 6s linear infinite;
}
@keyframes spin{ to { transform: rotate(1turn); } }
.t-card::after{
  content:""; position:absolute; inset:0; border-radius:inherit;
  background: radial-gradient(800px 240px at 15% 0%, rgba(87,47,162,.22), transparent 60%);
  pointer-events:none;
}
.t-quoteMark{
  position:absolute; left:22px; top:18px; width:28px; height:28px; color: rgba(255,255,255,.3);
  filter: drop-shadow(0 2px 8px rgba(87,47,162,.35));
}
.t-quote{ font-size: clamp(18px,2.1vw,22px); line-height:1.65; margin: 12px 0 18px; color: var(--text); }
.t-stars{ display:flex; gap:6px; margin-bottom: 10px; }
.t-stars svg{ width:18px; height:18px; fill: #b597ff; filter: drop-shadow(0 2px 8px rgba(87,47,162,.35)); }

.t-meta{ display:grid; grid-template-columns: 56px 1fr; gap:12px; align-items:center; }
.t-avatar{
  width:56px; height:56px; border-radius:50%; display:grid; place-items:center; font-weight:700; color:#fff;
  background: radial-gradient(circle at 35% 35%, #b597ff, rgba(87,47,162,.7) 60%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14), 0 12px 28px rgba(87,47,162,.35);
}
.t-author strong{ display:block; }
.t-author span{ color: var(--muted); font-size: 14px; }

/* Controles melhorados */
.t-controls{ position:absolute; inset:0; display:flex; align-items:center; justify-content:space-between; pointer-events:none; }
.t-prev,.t-next{
  pointer-events:auto; background: rgba(0,0,0,.45); color:#fff; border:1px solid rgba(255,255,255,.18);
  width:44px; height:44px; border-radius:50%; display:grid; place-items:center; cursor:pointer;
  backdrop-filter: blur(4px); transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.t-prev:hover,.t-next:hover{ transform: translateY(-1px); border-color: rgba(255,255,255,.35); background: rgba(0,0,0,.6); box-shadow: 0 8px 22px rgba(0,0,0,.35); }

/* Dots */
.t-dots{ display:flex; gap:10px; justify-content:center; margin-top:16px; }
.t-dot{ width:10px; height:10px; border-radius:50%; background: rgba(255,255,255,.28); border:1px solid rgba(255,255,255,.16); cursor:pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.t-dot.is-active{ background: var(--brand); border-color: rgba(255,255,255,.45); transform: scale(1.15); }

/* A11y visuals */
.visually-hidden{ position:absolute !important; clip: rect(1px,1px,1px,1px); padding:0!important; border:0!important; height:1px!important; width:1px!important; overflow:hidden; }

/* Motion prefs */
@media (prefers-reduced-motion: reduce){
  .t-slide{ transition:none; }
  .t-card::before{ animation: none; }
}

/* ================= CONTACT ================= */
.contact{
  position:relative; padding: clamp(68px,8vw,120px) 0; border-top:1px solid rgba(255,255,255,.06);
}
.contact__header{ text-align:center; margin-bottom: clamp(26px,4vw,46px); }
.contact__header h2{ margin:6px 0 10px; font-size: clamp(28px,3.6vw,40px); }
.contact__lead{ color:var(--muted); max-width:760px; margin:0 auto; }

.contact__grid{
  display:grid; grid-template-columns: 1.1fr .9fr; gap: clamp(20px,3.6vw,32px);
}
@media (max-width: 991px){ .contact__grid{ grid-template-columns: 1fr; } }

.contact__form{
  position:relative; padding: clamp(18px,3vw,26px);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.contact__form .hp{ position:absolute; left:-9999px; top:-9999px; opacity:0; }

.row{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px){ .row{ grid-template-columns: 1fr; } }

.field{ display:grid; gap: 6px; }
.field label{ font-weight:600; }
.field label span{ color:#ffb4b4; }
.field input, .field textarea, .field select{
  width:100%; padding: 12px 12px; border-radius: 12px;
  background:#111118; color: var(--text);
  border:1px solid rgba(255,255,255,.12);
  outline: none; transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea{ resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus{
  border-color: rgba(87,47,162,.6);
  box-shadow: 0 0 0 3px rgba(87,47,162,.25);
}

.check{ display:flex; align-items:flex-start; gap:10px; margin: 6px 0 10px; font-size: 14px; color:var(--muted); }
.check input{ margin-top: 3px; }
.check .req{ color:#ffb4b4; }

.contact__actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top: 8px; }
.contact__status{ min-height: 20px; margin-top: 6px; font-size: 14px; color: var(--muted); }

/* Info cards */
.contact__info{ display:grid; gap: 16px; }
.card.info{
  padding: 18px; border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
}
.card.info h3{ margin: 0 0 8px; }
.card.info ul{ margin:0; padding-left: 16px; }
.card.info .ticks{ list-style:none; padding:0; }
.card.info .ticks li{ position:relative; padding-left:18px; }
.card.info .ticks li::before{
  content:""; position:absolute; left:0; top:.6em; width:7px; height:7px; border-radius:50%;
  background: var(--brand); box-shadow: 0 0 0 3px rgba(87,47,162,.25);
}

/* Toast */
.toast{
  position: fixed; right: 18px; bottom: 18px; z-index: 3000;
  background: #12121a; color:#fff; border: 1px solid rgba(255,255,255,.12);
  padding: 12px 14px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,.35);
  opacity: 0; pointer-events:none; transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}
.toast.show{ opacity:1; transform: translateY(0); pointer-events:auto; }

/* ================= FOOTER ================= */
.footer{ margin-top: clamp(40px, 6vw, 80px); border-top:1px solid rgba(255,255,255,.06); }
.footer__grid{
  display:grid; grid-template-columns: 1.1fr .7fr .8fr; gap: clamp(16px,3vw,28px);
  padding: clamp(28px,4vw,42px) 0;
}
@media (max-width: 991px){ .footer__grid{ grid-template-columns: 1fr; } }

.footer__logo{ height:120px; width:auto; margin-bottom: 8px; }
.footer__brand p{ color: var(--muted); max-width: 460px; }
.social{ display:flex; gap:10px; margin-top: 10px; }
.social a{
  width:38px; height:38px; border-radius:50%; display:grid; place-items:center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.social a:hover{ transform: translateY(-1px); background: rgba(87,47,162,.25); border-color: rgba(255,255,255,.35); }
.social svg{ width:18px; height:18px; fill:#fff; }

.footer__nav{ display:grid; align-content:start; gap:8px; }
.footer__nav strong{ margin-bottom: 6px; }
.footer__nav a{ color: var(--muted); }
.footer__nav a:hover{ color: var(--white); }

.footer__cta{ display:grid; align-content:start; gap:8px; }
.footer__cta p{ color: var(--muted); }

.footer__bottom{
  border-top:1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
}
.footer__copy{
  display:flex; gap:12px; justify-content:space-between; align-items:center;
  padding: 12px 0; color: var(--muted);
}
.footer .link-min{ color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.footer .link-min:hover{ color: var(--white); }

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(7, 21, 42, .98);
  color: #fff;
  padding: 20px 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 -6px 30px rgba(0,0,0,.4);
  display: none;
  animation: slideUp .5s ease forwards;
}
.cookie-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.cookie-inner p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}
.cookie-inner a {
  color: #b597ff;
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ===== AUT0MAAI CHAT WIDGET ===== */
:root{
  --chat-brand: #572fa2;
  --chat-bg: #0e0e14;
  --chat-text: #e9e9f1;
  --chat-muted: #a9afc6;
  --chat-user: #1a1a22;
  --chat-bot: #151521;
}

.automaai-fab{
  position: fixed; right: 20px; bottom: 20px; z-index: 9998;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--chat-brand);
  color: #fff; box-shadow: 0 12px 26px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.18); cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s;
}
.automaai-fab:hover{ transform: translateY(-1px); box-shadow: 0 18px 34px rgba(0,0,0,.45); }
.automaai-fab .badge{
  position:absolute; right:-4px; top:-4px; background:#ff4d6d; color:#fff;
  border-radius:999px; font-size:11px; padding:2px 6px; border:1px solid rgba(255,255,255,.25);
}

.automaai-chat{
  position: fixed; right: 20px; bottom: 88px; z-index: 9999;
  width: min(380px, 92vw); height: 540px; max-height: calc(100vh - 120px);
  display:none; flex-direction: column; overflow:hidden;
  background: var(--chat-bg); color: var(--chat-text);
  border-radius: 18px; border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
}
@media (max-width: 520px){
  .automaai-chat{ right: 12px; bottom: 84px; width: calc(100vw - 24px); height: calc(100vh - 140px); }
}

/* header */
.automaai-chat__head{
  display:flex; align-items:center; gap:10px; padding: 10px 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.automaai-chat__brand{
  width:28px; height:28px; border-radius:8px; display:grid; place-items:center;
  background: rgba(87,47,162,.25); border:1px solid rgba(255,255,255,.14);
}
.automaai-chat__title{ font-weight:800; font-size:14px; line-height:1.1; }
.automaai-chat__sub{ color: var(--chat-muted); font-size:12px; }
.automaai-chat__close{
  margin-left:auto; width:36px; height:36px; border-radius:10px; display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.12); background: transparent; color:#fff; cursor:pointer;
}

/* body */
.automaai-chat__body{
  flex:1; overflow:auto; padding: 12px;
  display:flex; flex-direction: column; gap: 10px;
  scroll-behavior: smooth; background:
    radial-gradient(800px 420px at 80% -20%, rgba(87,47,162,.15), transparent 60%),
    radial-gradient(600px 320px at 0% 120%, rgba(87,47,162,.12), transparent 65%);
}
.automaai-msg{
  display:flex; gap:10px; align-items:flex-end; max-width: 90%;
}
.automaai-msg--user{ margin-left:auto; flex-direction: row-reverse; }
.automaai-bubble{
  padding: 9px 12px; border-radius: 12px; line-height:1.4; font-size:14px;
  border:1px solid rgba(255,255,255,.10); word-break: break-word;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.automaai-msg--bot .automaai-bubble{ background: var(--chat-bot); }
.automaai-msg--user .automaai-bubble{ background: var(--chat-user); }
.automaai-avatar{
  width:28px; height:28px; border-radius:50%; display:grid; place-items:center;
  background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); font-size:12px;
}

/* typing */
.automaai-typing{ display:flex; align-items:center; gap:6px; color: var(--chat-muted); font-size:12px; padding-left:36px; }
.dot{ width:6px; height:6px; border-radius:50%; background: var(--chat-muted); opacity:.5; animation: blip 1.2s infinite; }
.dot:nth-child(2){ animation-delay:.2s } .dot:nth-child(3){ animation-delay:.4s }
@keyframes blip { 0%,80%,100%{ transform:translateY(0); opacity:.4 } 40%{ transform:translateY(-3px); opacity:1 } }

/* footer */
.automaai-chat__foot{
  padding: 10px; border-top:1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.02);
  display:flex; gap:8px; align-items:flex-end;
}
.automaai-input{
  flex:1; resize:none; min-height:42px; max-height:120px; overflow:auto;
  background:#111118; border:1px solid rgba(255,255,255,.12); border-radius:12px;
  color:#fff; padding:10px 12px; outline:none;
}
.automaai-send{
  width:44px; height:44px; border-radius:12px; display:grid; place-items:center;
  background: var(--chat-brand); color:#fff; border:1px solid rgba(255,255,255,.18); cursor:pointer;
}

/* ===== Mobile header refinements ===== */
@media (max-width: 640px){
  /* aumenta a logo */
  .brand__logo{
    width: 150px;          /* ajuste fino aqui (ex.: 160/170px) */
    height: auto;
  }

  /* some com o CTA grande do topo no mobile */
  .header .actions .cta{
    display: none !important;
  }

  /* aproxima o burger da direita e melhora hit area */
  .burger{
    margin-left: 8px;
    width: 44px; height: 44px;
    border-radius: 12px;
  }

  /* garante que a barra não fique alta demais */
  .nav{
    min-height: 64px;
  }
}

/* ===== Ajuste botão "Falar no WhatsApp" dentro do menu mobile ===== */
.panel__cta {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.panel__cta .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 22px; /* aumenta o padding horizontal */
  border-radius: 32px;
  background-color: #572fa2;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(87,47,162,.45);
  border: 1px solid rgba(255,255,255,.12);
  transition: all .25s ease;
  white-space: nowrap; /* impede quebra do texto */
  width: auto;
  min-width: max-content; /* força o botão a abraçar o texto */
}

.panel__cta .cta:hover {
  background-color: #6b3de2;
  box-shadow: 0 8px 26px rgba(87,47,162,.55);
}

/* ===== Logo dentro do grid ===== */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__visual .hero-logo {
  position: absolute;
  width: min(380px, 80vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(87,47,162,0.4));
  animation: fadeIn 1.5s ease both;
  z-index: 3; /* garante que fique acima do grid e dos orbs */
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(.96); }
  to { opacity: 1; transform: scale(1); }
}
