/* =========================================================
   index.css — OSCAR INDICA (ICE PREMIUM • EDITORIAL)
   Página pública (/pt, /en, /es)
   COMPLETO + AJUSTADO
   + HERO mais vivo (menos “embranquecido”)
   + Posição da caixa do Hero (left|center|right)
========================================================= */

/* =========================
   FONTES PREMIUM
========================= */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Manrope:wght@400;500;600;700;800&display=swap');

/* =========================
   THEME (ICE / LIGHT)
========================= */
:root{
  --bg:#f6f9fc;
  --bg2:#eef5fb;

  --panel:rgba(255,255,255,.78);
  --panel-strong:rgba(255,255,255,.92);
  --line:rgba(15, 23, 42, .10);

  --text:#0b1220;
  --muted:rgba(11,18,32,.62);

  --accent:#18BFD6;

  --danger:#ff5b6b;
  --ok:#21c17a;
  --warn:#ffb020;

  --radius:24px;
  --radius-sm:14px;
  --shadow: 0 20px 50px rgba(2,6,23,.10);
  --shadow-soft: 0 12px 30px rgba(2,6,23,.08);

  --font-sans:"Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-display:"Fraunces", ui-serif, Georgia, serif;

  --footer-bg:#070A10;
  --footer-line:rgba(255,255,255,.12);
  --footer-text:rgba(255,255,255,.88);
  --footer-muted:rgba(255,255,255,.60);

  --focus:0 0 0 6px rgba(24,191,214,.16);
}

/* =========================
   BASE
========================= */
*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}

body{
  margin:0;
  background:
    radial-gradient(circle at 15% -10%, rgba(24,191,214,.14), transparent 55%),
    radial-gradient(circle at 95% 5%, rgba(15,23,42,.06), transparent 55%),
    linear-gradient(180deg, var(--bg2), var(--bg));
  color:var(--text);
  font-family:var(--font-sans);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

a{color:inherit;text-decoration:none}
a:hover{text-decoration:underline}

.wrap{width:min(1200px,92%);margin:0 auto}

:focus-visible{
  outline:2px solid rgba(24,191,214,.85);
  outline-offset:3px;
  border-radius:12px;
}

/* util */
.muted{color:var(--muted)}
.hr{height:1px;background:rgba(15,23,42,.10)}
.spacer{height:30px}

/* =========================
   TOPBAR
========================= */
.top{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}

/* ✅ altura para logo maior */
.topin{
  height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:0 2px;
}

/* BRAND */
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.10em;
}

/* ✅ logo topo */
.brand img{
  height:72px;
  width:auto;
  display:block;
  max-width:340px;
  object-fit:contain;
}

.nav{
  display:flex;
  gap:10px;
  align-items:center;
}

/* pill */
.pill{
  padding:10px 14px;
  border:1px solid var(--line);
  border-radius:12px;
  background:rgba(255,255,255,.68);
  transition:background .18s ease, border-color .18s ease, transform .18s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  user-select:none;
}
.pill:hover{
  background:#fff;
  border-color:rgba(15,23,42,.16);
  transform:translateY(-1px);
  text-decoration:none;
}
.pill--accent{
  border-color:rgba(24,191,214,.55);
  background:rgba(24,191,214,.14);
}
.pill--accent:hover{
  border-color:rgba(24,191,214,.75);
  background:rgba(24,191,214,.18);
}

/* =========================
   Seletor de idioma (sem JS)
========================= */
.lang{position:relative}
.lang details{position:relative}
.lang summary{
  list-style:none;
  cursor:pointer;
  user-select:none;
}
.lang summary::-webkit-details-marker{display:none}
.lang summary.pill{display:flex;align-items:center;gap:8px}

.langMenu{
  position:absolute;
  right:0;
  margin-top:10px;
  min-width:180px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  overflow:hidden;
  box-shadow:0 18px 40px rgba(2,6,23,.12);
  z-index:60;
}

.langMenu a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 12px;
  border-bottom:1px solid rgba(15,23,42,.08);
  transition:background .18s ease;
}
.langMenu a:last-child{border-bottom:none}
.langMenu a:hover{background:rgba(15,23,42,.04);text-decoration:none}

.badge{
  font-size:12px;
  color:rgba(11,18,32,.70);
  border:1px solid rgba(15,23,42,.14);
  background:rgba(255,255,255,.78);
  padding:3px 8px;
  border-radius:999px;
}

/* =========================
   BANNER (msg)
========================= */
.banner{
  margin:12px 0 0;
  border:1px solid var(--line);
  background:rgba(255,255,255,.82);
  border-radius:16px;
  padding:12px 14px;
  color:rgba(11,18,32,.88);
  box-shadow:var(--shadow-soft);
}

/* =========================
   HERO FULL WIDTH
   ✅ Mais vivo:
   - reduz o “embranquecimento” do overlay (::before)
   - aumenta saturação/contraste do bg
   - adiciona uma leve vinheta para profundidade
========================= */
.heroFull{
  width:100%;
  min-height:72vh;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  border-bottom:1px solid var(--line);
  background:#0b1220; /* fallback */
}

/* Overlay do hero (antes estava muito branco) */
.heroFull::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 10%, rgba(255,255,255,.18), transparent 62%),
    radial-gradient(circle at 90% 70%, rgba(24,191,214,.22), transparent 60%),
    linear-gradient(90deg, rgba(255,255,255,.02), rgba(255,255,255,.18));
  pointer-events:none;
  z-index:1;
}

/* Vinheta suave para dar “cinema” e tirar cara lavada */
.heroFull::after{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(circle at 50% 40%, rgba(0,0,0,0) 35%, rgba(0,0,0,.18) 100%);
  pointer-events:none;
  z-index:1;
}

/* imagem */
.heroBg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.04);
  /* ✅ MAIS VIVO (o ponto principal) */
  filter:saturate(1.28) contrast(1.10) brightness(0.98);
  z-index:0;
}

/* vídeo */
.heroBgVideo{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.04);
  /* ✅ MAIS VIVO (vídeo igual ao bg) */
  filter:saturate(1.28) contrast(1.10) brightness(0.98);
  z-index:0;
}

.heroInner{
  position:relative;
  z-index:2;
  width:min(1200px,92%);
  margin:0 auto;
  padding:54px 0;
  display:grid;
  grid-template-columns: 1fr 520px; /* default right */
  gap:24px;
  align-items:center;
}

.heroBox{
  grid-column:2;
  width:100%;
  max-width:520px;
  justify-self:end;
  padding:30px;
  border-radius:var(--radius);
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.heroBox h1{
  margin:0;
  font-family:var(--font-display);
  font-size:44px;
  line-height:1.03;
  letter-spacing:-.02em;
  color:var(--text);
}
.heroBox p{margin:14px 0 0}

.actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}

.btn{
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.12);
  background:rgba(255,255,255,.86);
  color:var(--text);
  transition:transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  user-select:none;
}
.btn:hover{
  background:#fff;
  transform:translateY(-1px);
  box-shadow:0 10px 22px rgba(2,6,23,.08);
  text-decoration:none;
}
.btn:active{transform:translateY(0)}
.btn--accent{
  border-color:rgba(24,191,214,.55);
  background:rgba(24,191,214,.16);
}
.btn--accent:hover{
  border-color:rgba(24,191,214,.75);
  background:rgba(24,191,214,.22);
}

.pillNote{
  margin-top:14px;
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(24,191,214,.45);
  background:rgba(24,191,214,.12);
  color:rgba(11,18,32,.78);
  font-weight:800;
  font-size:12px;
}

/* =========================
   HERO BOX POSITION (left / center / right)
========================================================= */
.heroPos--right .heroInner{ grid-template-columns: 1fr 520px; }
.heroPos--right .heroBox{ grid-column:2; justify-self:end; }

.heroPos--left .heroInner{ grid-template-columns: 520px 1fr; }
.heroPos--left .heroBox{ grid-column:1; justify-self:start; }

.heroPos--center .heroInner{ grid-template-columns: 1fr; }
.heroPos--center .heroBox{
  grid-column:auto;
  justify-self:center;
  max-width:560px;
}

/* =========================
   SECTION TITLE
========================= */
.section{
  margin:34px 0 14px;
  display:flex;
  align-items:center;
  gap:14px;
}
.section h2{
  margin:0;
  font-family:var(--font-display);
  font-size:20px;
  font-weight:700;
  letter-spacing:.02em;
  text-transform:none;
  color:rgba(11,18,32,.92);
}
.line{height:1px;flex:1;background:rgba(15,23,42,.10)}

/* =========================
   DESTINOS 9:16 (CARDS)
========================= */
.carousel{position:relative}

.row{
  display:flex;
  gap:16px;
  overflow:auto;
  padding:2px 44px 18px 2px;
  scroll-snap-type:x mandatory;
  scrollbar-color: rgba(2,6,23,.18) transparent;
}
.row::-webkit-scrollbar{height:10px}
.row::-webkit-scrollbar-thumb{background:rgba(2,6,23,.14);border-radius:999px}

.card{
  flex:0 0 230px;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.78);
  border-radius:22px;
  overflow:hidden;
  scroll-snap-align:start;
  position:relative;
  box-shadow:0 12px 28px rgba(2,6,23,.08);
  transition:transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
  will-change:transform;
}
.card:hover{
  transform:translateY(-4px);
  background:rgba(255,255,255,.92);
  border-color:rgba(15,23,42,.16);
  box-shadow:0 22px 46px rgba(2,6,23,.12);
  text-decoration:none;
}

.thumb{
  aspect-ratio: 9 / 16;
  width:100%;
  background:rgba(255,255,255,.70);
  position:relative;
}
.thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform:scale(1.01);
  transition:transform .35s ease;
}
.card:hover .thumb img{transform:scale(1.06)}

.overlay{
  position:absolute;
  left:0;right:0;bottom:0;
  padding:12px 12px 11px;
  background:linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(2,6,23,.72) 70%);
}
.title{
  font-weight:800;
  letter-spacing:-.01em;
  color:#fff;
}
.meta{
  margin-top:6px;
  font-size:12px;
  color:rgba(255,255,255,.84);
  display:flex;
  justify-content:space-between;
  gap:8px;
}

.arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:38px;height:38px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.12);
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  user-select:none;
  transition:background .18s ease, transform .18s ease, box-shadow .18s ease;
  box-shadow:0 12px 28px rgba(2,6,23,.10);
}
.arrow:hover{
  background:#fff;
  transform:translateY(-50%) scale(1.03);
}
.arrow.left{left:8px}
.arrow.right{right:8px}

/* =========================
   SEÇÕES NOVAS (Stats / About / Plans / FAQ)
========================= */
.panel{
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.78);
  border-radius:22px;
  box-shadow:0 18px 40px rgba(2,6,23,.10);
}
.pad{padding:18px}

.stats{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:14px;
  margin-top:16px;
}
.stat{
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.84);
}
.stat .k{
  font-size:26px;
  font-weight:900;
  letter-spacing:-.02em;
}
.stat .l{
  margin-top:6px;
  color:rgba(11,18,32,.62);
  font-size:13px;
  font-weight:700;
}

/* About */
.about{
  display:grid;
  grid-template-columns: minmax(0, 520px) 1fr;
  gap:16px;
  align-items:center;
}

.aboutPhoto{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.88);
  max-width:520px;
  aspect-ratio: 4 / 3;
}
.aboutPhoto img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.aboutText h3{
  margin:0;
  font-size:20px;
  font-weight:900;
  letter-spacing:-.01em;
}
.aboutText p{
  margin:10px 0 0;
  line-height:1.6;
  color:rgba(11,18,32,.80);
}

/* Plans */
.plans{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:14px;
}
.plan{
  padding:18px;
  border-radius:20px;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.86);
}
.plan .t{font-weight:900}
.plan .p{
  font-size:26px;
  font-weight:900;
  margin-top:6px;
  letter-spacing:-.02em;
}
.plan .d{
  color:rgba(11,18,32,.62);
  font-weight:700;
  margin-top:6px;
  font-size:13px;
}
.plan .cta{margin-top:12px;display:flex;gap:10px;flex-wrap:wrap}

/* FAQ */
.faq details{
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.84);
  border-radius:18px;
  padding:12px 14px;
  box-shadow:0 12px 28px rgba(2,6,23,.08);
}
.faq details + details{margin-top:10px}
.faq summary{
  cursor:pointer;
  font-weight:900;
  user-select:none;
  list-style:none;
}
.faq summary::-webkit-details-marker{display:none}
.faq p{
  margin:10px 0 0;
  color:rgba(11,18,32,.78);
  line-height:1.55;
}

/* =========================
   PARTNERS
========================= */
.partners{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
  margin:16px 0 8px;
}
@media(max-width:1100px){ .partners{grid-template-columns:repeat(3,1fr)} }
@media(max-width:800px){ .partners{grid-template-columns:repeat(2,1fr)} }
@media(max-width:480px){ .partners{grid-template-columns:1fr} }

.partner{
  border:none;
  background:rgba(255,255,255,.88);
  border-radius:22px;
  padding:18px;
  box-shadow:0 18px 40px rgba(2,6,23,.10);
  transition:transform .22s ease, box-shadow .22s ease;
}
.partner:hover{
  transform:translateY(-4px);
  box-shadow:0 28px 60px rgba(2,6,23,.14);
  text-decoration:none;
}

.partner__logo{
  height:96px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:none;
  background:
    radial-gradient(circle at 20% 10%, rgba(24,191,214,.16), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(245,248,252,.88));
  border-radius:18px;
  overflow:hidden;
  box-shadow: inset 0 0 0 1px rgba(15,23,42,.06);
}
.partner__logo img{
  width:86%;
  height:86%;
  object-fit:contain;
  display:block;
  filter:contrast(1.03) saturate(1.03);
}

.partner__name{
  margin-top:14px;
  font-family:var(--font-display);
  font-size:18px;
  font-weight:700;
  color:rgba(11,18,32,.92);
}
.partner__area{
  margin-top:6px;
  font-size:13px;
  color:rgba(11,18,32,.60);
}

/* =========================
   FOOTER (dark premium)
   ✅ versão “real” do seu HTML (footerLogoRow + img.footerLogo)
========================= */
.footer{
  margin-top:40px;
  border-top:1px solid var(--footer-line);
  background:var(--footer-bg);
  color:var(--footer-text);
}

.footerIn{
  padding:22px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

.footerBrand{
  display:flex;
  flex-direction:column;
  gap:10px;
  max-width:560px;
}

.footerLogoRow{
  display:flex;
  align-items:center;
}
img.footerLogo{
  height:110px;
  width:auto;
  max-width:100%;
  display:block;
  filter:drop-shadow(0 10px 22px rgba(0,0,0,.30));
}

.footerBrand .muted{color:var(--footer-muted)}

.footerLinks{
  display:flex;
  gap:8px;
  align-items:center;
  flex-wrap:wrap;
}

.social{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 12px;
  border-radius:13px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  color:var(--footer-text);
  transition:background .18s ease, transform .18s ease;
}
.social:hover{
  background:rgba(255,255,255,.12);
  transform:translateY(-1px);
  text-decoration:none;
}

.copy{
  width:100%;
  color:var(--footer-muted);
  font-size:12px;
  margin-top:10px;
}

/* =========================
   COOKIE BAR
========================= */
.cookieBar{
  position:fixed;
  left:14px; right:14px; bottom:14px;
  z-index:9999;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(7,10,16,.86);
  color:rgba(255,255,255,.92);
  padding:14px;
  display:none;
  box-shadow:0 20px 55px rgba(0,0,0,.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.cookieBar .row{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.cookieBar .txt{
  max-width:820px;
  color:rgba(255,255,255,.82);
  font-size:13px;
  line-height:1.45;
}
.cookieBar .btns{display:flex;gap:10px;flex-wrap:wrap}
.cookieBtn{
  padding:10px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  color:#fff;
  font-weight:900;
  cursor:pointer;
}
.cookieBtn.primary{
  border-color:rgba(24,191,214,.55);
  background:rgba(24,191,214,.20);
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:980px){
  .stats{grid-template-columns:repeat(2,1fr)}
  .about{grid-template-columns:1fr}
  .plans{grid-template-columns:1fr}
  .aboutPhoto{max-width:100%}
}

@media(max-width:900px){
  .topin{height:84px}
  .brand img{height:60px;max-width:280px}

  .heroFull{min-height:62vh}

  /* mobile/tablet: hero sempre 1 coluna e box central */
  .heroInner{
    grid-template-columns:1fr !important;
    padding:26px 0 34px;
  }
  .heroBox{
    grid-column:auto !important;
    justify-self:center !important;
    max-width:560px;
    padding:22px;
  }
  .heroBox h1{font-size:30px}

  .actions .btn{width:100%;text-align:center}

  .row{padding-right:14px}
  .arrow{display:none}
  .card{flex-basis:200px}

  img.footerLogo{height:96px}
}

@media(max-width:420px){
  .topin{height:76px}
  .brand img{height:52px;max-width:240px}

  .heroBox h1{font-size:26px}
  .heroBox{padding:18px;border-radius:20px}

  img.footerLogo{height:82px}
}

/* Menos animação se o usuário pedir */
@media (prefers-reduced-motion: reduce){
  *{transition:none !important}
  html{scroll-behavior:auto}
}

.miniNote{
  margin:14px 0 0;
  font-size:12px;
  line-height:1.45;
  color:rgba(11,18,32,.62);
  border-top:1px solid rgba(15,23,42,.10);
  padding-top:12px;
}