/* ===== Leo Derobi – identidade: azul elétrico de palco sobre azul-noite ===== */
:root {
  --bg: #050a1e;
  --bg-2: #0a1230;
  --surface: #0e1840;
  --azul: #4f8fe6;
  --azul-claro: #8fc0f2;
  --texto: #e8eef8;
  --texto-suave: #a9b7d0;
  --whats: #25d366;
  --raio: 14px;
  --fonte: "Helvetica Neue", Arial, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--fonte);
  background: var(--bg);
  color: var(--texto);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.container { width: min(1120px, 92%); margin-inline: auto; }
.container-narrow { width: min(760px, 92%); }
.center { text-align: center; }

h1, h2, h3 { line-height: 1.15; letter-spacing: .02em; text-transform: uppercase; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 1.2rem; }
h3 { font-size: 1.15rem; margin-bottom: .8rem; }

a { color: var(--azul-claro); }

/* ===== Header ===== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: rgba(5, 10, 30, .82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(143, 192, 242, .12);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 64px; }
.nav-brand { display: flex; align-items: center; text-decoration: none; }
.nav-brand img { width: auto; height: 40px; }
.nav-menu { display: flex; gap: 1.6rem; list-style: none; align-items: center; }
.nav-menu a {
  color: var(--texto-suave); text-decoration: none; font-size: .92rem;
  letter-spacing: .06em; text-transform: uppercase; transition: color .2s;
}
.nav-menu a:hover, .nav-menu a:focus { color: var(--azul-claro); }
.nav-cta {
  background: var(--azul); color: #fff !important;
  padding: .5rem 1.1rem; border-radius: 999px; font-weight: 700;
}
.nav-cta:hover { background: var(--azul-claro); color: var(--bg) !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--texto); transition: .25s; }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 92svh;
  display: flex; align-items: flex-end;
  overflow: hidden; isolation: isolate;
}
.hero-bg, .hero-bg img, .hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%; z-index: -2;
}
/* Vídeo 16:9: em telas largas, o hero acompanha a proporção do
   vídeo ao redimensionar, evitando cortar o nome escrito no telão.
   Em telas estreitas (celular), fica a foto vertical. */
.hero-video { object-position: center center; display: none; }
.hero-logo {
  width: min(420px, 70vw); height: auto; margin-bottom: 1.2rem;
  filter: drop-shadow(0 4px 24px rgba(5,10,30,.6));
  transition: opacity .4s ease;
}
/* Vídeo tocando: o telão já mostra o nome, logo sobreposto some.
   Mantém o espaço reservado para o conteúdo não pular. */
.hero.com-video .hero-logo { opacity: 0; visibility: hidden; }

@media (min-width: 700px) {
  .hero { min-height: 0; height: min(92svh, max(56.25vw, 480px)); }
  .hero-video { display: block; }
  .hero-content { padding: 5.5rem 0 2.6rem; }
  .hero-logo { width: min(360px, 32vw); margin-bottom: .9rem; }
  .hero-quote { margin: 1rem 0 1.4rem; }
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(5,10,30,.35) 0%, rgba(5,10,30,.55) 55%, var(--bg) 100%);
}
.hero-content { padding: 7rem 0 4.5rem; }
.hero-kicker {
  color: var(--azul-claro); text-transform: uppercase;
  letter-spacing: .22em; font-size: .85rem; margin-bottom: .8rem;
}
.hero h1 { font-size: 1rem; }
.hero-sub {
  display: block; font-size: clamp(1.05rem, 2.6vw, 1.5rem);
  font-weight: 500; color: var(--texto);
  text-transform: none; letter-spacing: .01em; max-width: 42ch;
  text-shadow: 0 2px 12px rgba(5,10,30,.8);
}
.hero-quote { font-style: italic; color: var(--azul-claro); margin: 1.4rem 0 2rem; font-size: 1.05rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.center-actions { justify-content: center; margin-top: 2rem; }

/* ===== Botões ===== */
.btn {
  display: inline-block; text-decoration: none; font-weight: 700;
  padding: .85rem 1.8rem; border-radius: 999px; letter-spacing: .04em;
  transition: transform .15s, background .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--azul); color: #fff; box-shadow: 0 6px 24px rgba(79,143,230,.35); }
.btn-primary:hover { background: var(--azul-claro); color: var(--bg); }
.btn-ghost { border: 1.5px solid rgba(143,192,242,.5); color: var(--texto); }
.btn-ghost:hover { border-color: var(--azul-claro); color: var(--azul-claro); }
.btn-lg { padding: 1.05rem 2.4rem; font-size: 1.05rem; }

/* ===== Seções ===== */
.section { padding: 5.5rem 0; }
.section-dark { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.section-kicker {
  color: var(--azul); text-transform: uppercase; letter-spacing: .22em;
  font-size: .8rem; font-weight: 700; margin-bottom: .6rem;
}
.section-kicker.center { text-align: center; }

.grid-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}

/* Sobre */
.sobre-foto { max-width: 420px; margin-inline: auto; }
.sobre-foto img {
  border-radius: var(--raio);
  box-shadow: 0 20px 60px rgba(79,143,230,.22);
}
.sobre-texto p { margin-bottom: 1rem; color: var(--texto-suave); }
.sobre-texto strong { color: var(--texto); }
.sobre-texto blockquote {
  border-left: 3px solid var(--azul); padding-left: 1.2rem; margin-top: 1.6rem;
}
.sobre-texto blockquote p { font-style: italic; color: var(--azul-claro); }

/* Compare */
.compare { margin-top: 2.5rem; align-items: stretch; }
.compare-card {
  background: var(--surface); border-radius: var(--raio); padding: 2rem;
  border: 1px solid rgba(143,192,242,.12);
}
.compare-card h3 em { font-style: normal; color: var(--azul-claro); }
.compare-sim { border-color: rgba(79,143,230,.45); }
.compare-card ul { list-style: none; }
.compare-card li {
  padding: .55rem 0 .55rem 1.8rem; position: relative; color: var(--texto-suave);
  border-bottom: 1px solid rgba(143,192,242,.08);
}
.compare-card li:last-child { border-bottom: 0; }
.compare-sim li::before { content: "✓"; position: absolute; left: 0; color: var(--azul); }

/* Áudios de amostra */
.audios-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem; margin: 2.5rem auto; max-width: 760px;
}
.audio-card {
  background: var(--surface); border: 1px solid rgba(143,192,242,.15);
  border-radius: var(--raio); padding: 1.2rem;
}
.audio-card figcaption {
  color: var(--azul-claro); font-weight: 700; font-size: .92rem;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: .8rem;
}
.audio-card audio { width: 100%; }
@media (max-width: 700px) { .audios-grid { grid-template-columns: 1fr; } }

/* Faixa de marcas (autoridade) */
.section-marcas {
  padding: 2.6rem 0;
  background: var(--bg-2);
  border-bottom: 1px solid rgba(143,192,242,.1);
}
.marcas-titulo {
  text-align: center; color: var(--azul); text-transform: uppercase;
  letter-spacing: .22em; font-size: .8rem; font-weight: 700; margin-bottom: 1.6rem;
}
.marcas-logos {
  list-style: none; display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center; gap: 1rem 1.2rem;
}
/* Pílulas brancas arredondadas, como no material do artista */
.marcas-logos li {
  background: #fff; border-radius: 999px;
  padding: .8rem 1.6rem;
  display: flex; align-items: center; justify-content: center;
  min-height: 64px;
  box-shadow: 0 4px 18px rgba(5,10,30,.35);
}
.marcas-logos img {
  height: 34px; width: auto; max-width: 150px; object-fit: contain;
}

/* Galeria */
.galeria-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem; margin-top: 2.5rem; align-items: start;
}
/* Todas as células compartilham a mesma proporção vertical (9/16),
   assim os Shorts das laterais ficam do mesmo tamanho da foto do meio. */
.galeria-grid figure {
  overflow: hidden; border-radius: var(--raio);
  aspect-ratio: 9 / 16; margin: 0;
}
.galeria-grid img {
  border-radius: var(--raio); width: 100%; height: 100%; object-fit: cover;
  transition: transform .3s;
}
.galeria-grid picture { display: block; width: 100%; height: 100%; }
.galeria-grid figure:hover img { transform: scale(1.04); }

/* YouTube Shorts na galeria: vídeo vertical preenchendo a célula */
.galeria-embed { position: relative; width: 100%; height: 100%; background: #000; }
.galeria-embed iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

/* Depoimentos em texto */
.depoimentos-titulo { margin: 3.5rem 0 0; font-size: 1.3rem; }
.depoimentos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem; margin-top: 1.8rem; align-items: stretch;
}
.depoimento {
  margin: 0; background: var(--surface);
  border: 1px solid rgba(143,192,242,.15); border-radius: var(--raio);
  padding: 1.8rem; display: flex; flex-direction: column;
}
.depoimento p {
  color: var(--texto-suave); font-style: italic;
  font-size: .95rem; flex: 1;
}
.depoimento footer {
  margin-top: 1.2rem; color: var(--azul-claro); font-weight: 700;
  font-size: .8rem; text-transform: uppercase; letter-spacing: .12em;
}
.depoimento footer::before { content: "— "; }
@media (max-width: 880px) { .depoimentos-grid { grid-template-columns: 1fr; } }

/* Vídeos */
.videos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem; margin-top: 2.5rem;
}
.video-embed {
  position: relative; aspect-ratio: 16 / 9;
  border-radius: var(--raio); overflow: hidden; background: #000;
  border: 1px solid rgba(143,192,242,.15);
}
.video-embed iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.video-card figcaption {
  margin-top: .7rem; text-align: center; color: var(--texto-suave);
  font-size: .9rem; letter-spacing: .06em; text-transform: uppercase;
}


/* Pacotes */
.pacotes-intro {
  max-width: 62ch; margin: 0 auto 1rem; text-align: center; color: var(--texto-suave);
}
.pacotes-intro strong { color: var(--azul-claro); }
.pacotes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem; margin-top: 2.5rem; align-items: stretch;
}
.pacote {
  background: var(--surface); border-radius: var(--raio); padding: 2.2rem 1.8rem;
  border: 1px solid rgba(143,192,242,.12);
  display: flex; flex-direction: column;
}
.pacote h3 { font-size: 1.5rem; color: var(--azul-claro); }
.pacote-para { color: var(--texto-suave); font-size: .92rem; margin-bottom: 1.2rem; }
.pacote ul { list-style: none; flex: 1; }
.pacote li {
  padding: .6rem 0 .6rem 1.6rem; position: relative;
  color: var(--texto-suave); font-size: .95rem;
  border-bottom: 1px solid rgba(143,192,242,.08);
}
.pacote li::before { content: "♪"; position: absolute; left: 0; color: var(--azul); }
.pacote li strong { color: var(--texto); }
.pacote .btn { text-align: center; }
.pacotes-obs {
  margin-top: 2rem; text-align: center; color: var(--texto-suave); font-size: .85rem;
}

/* FAQ */
.faq-item {
  background: var(--surface); border: 1px solid rgba(143,192,242,.12);
  border-radius: var(--raio); margin-top: 1rem; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; padding: 1.1rem 1.4rem; font-weight: 700;
  list-style: none; position: relative; padding-right: 3rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 1.4rem; top: 50%;
  transform: translateY(-50%); color: var(--azul); font-size: 1.4rem; transition: transform .2s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { padding: 0 1.4rem 1.2rem; color: var(--texto-suave); }

/* Contato */
.section-contato {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(79,143,230,.22), transparent 60%),
    var(--bg-2);
}
.section-contato p { max-width: 56ch; margin-inline: auto; color: var(--texto-suave); }

/* Footer */
.site-footer {
  border-top: 1px solid rgba(143,192,242,.12);
  padding: 3rem 0; text-align: center; color: var(--texto-suave); font-size: .92rem;
}
.footer-logo { width: 160px; height: auto; margin: 0 auto .8rem; }
.footer-copy { margin-top: 1rem; font-size: .8rem; opacity: .7; }

/* WhatsApp flutuante */
.whats-flutuante {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--whats); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: transform .15s;
}
.whats-flutuante:hover { transform: scale(1.08); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visivel { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===== Responsivo ===== */
@media (max-width: 880px) {
  .grid-2, .pacotes-grid, .videos-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: 64px 0 auto 0;
    background: rgba(5,10,30,.97); flex-direction: column;
    padding: 1.6rem; gap: 1.2rem; text-align: center;
    transform: translateY(-130%); transition: transform .3s ease;
    border-bottom: 1px solid rgba(143,192,242,.15);
  }
  .nav-menu.aberto { transform: none; }
  .galeria-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .section { padding: 4rem 0; }
}
