/* =========================================================
   SUA VOZ PODE — STYLE.CSS ORGANIZADO
   Paleta: preto + laranja + branco
   ========================================================= */

/* =========================================================
   1. RESET E VARIÁVEIS
   Edite as cores principais aqui.
   ========================================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-text: #f7f2ed;
  --color-bg: #050403;
  --color-bg-secondary: #0b0807;
  --color-bg-card-hover: #120a07;
  --color-muted: #b8aaa2;
  --color-muted-light: #d8c6bd;

  --color-accent: #ff5a12;
  --color-accent-dark: #c73708;
  --color-accent-soft: #8f2d0c;

  --color-dark-text: #080503;
  --color-line: rgba(255, 90, 18, 0.22);

  --font-body: "DM Sans", sans-serif;
  --font-title: "Playfair Display", serif;

  --header-height: 88px;
  --page-padding: 5vw;
  --section-padding: 115px 5vw;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background:
    radial-gradient(circle at 80% 8%, rgba(255, 90, 18, 0.10), transparent 25%),
    var(--color-bg);
  overflow-x: hidden;
}

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

/* =========================================================
   2. HEADER / NAVEGAÇÃO
   ========================================================= */
.header {
  height: var(--header-height);
  padding: 0 var(--page-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;

  position: sticky;
  top: 0;
  z-index: 50;

  background: rgba(5, 4, 3, 0.92);
  border-bottom: 1px solid rgba(255, 90, 18, 0.20);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
  
}

/* Logo / marca */
.brand,
.podcast-logo {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
}

.podcast-logo {
  gap: 12px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 0.92;
}

.brand-copy strong {
  font-family: var(--font-title);
  font-size: 16px;
  letter-spacing: 0.04em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--color-accent);
  font-size: 10px;
  letter-spacing: 0.35em;
}

/* Logo com microfone */
.logo-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;

  border: 1px solid var(--color-accent);
  border-radius: 6px;
  background: rgba(255, 90, 18, 0.06);
  box-shadow: 0 0 22px rgba(255, 90, 18, 0.14);
}

.logo-icon svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-icon .wave {
  stroke-width: 1.8;
  opacity: 0.7;
}

.podcast-logo .brand-copy strong {
  color: var(--color-text);
  font-size: 17px;
}

.podcast-logo .brand-copy small {
  color: var(--color-accent);
  font-weight: 800;
}

/* Navegação */
.nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
  font-weight: 600;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--color-accent);
  transition: 0.3s;
}

.nav a:hover::after {
  right: 0;
}

/* Menu mobile */
.menu-btn {
  display: none;
  width: 34px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  height: 1px;
  margin: 7px 0;
  background: var(--color-text);
}

/* =========================================================
   3. BOTÕES E LINKS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 24px;
  border: 1px solid var(--color-accent);
  background: var(--color-accent);
  color: #090503;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;

  box-shadow: 0 10px 35px rgba(255, 90, 18, 0.15);
  transition: 0.25s;
}

.btn:hover {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.btn-small {
  padding: 12px 18px;
}

.btn-dark {
  min-width: 220px;
  background: var(--color-accent);
  color: var(--color-dark-text);
}

.text-link {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--color-accent);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 700;
}

.text-link span {
  margin-left: 7px;
}

/* =========================================================
   4. TEXTOS GERAIS / TÍTULOS
   ========================================================= */
.eyebrow,
.section-tag {
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.hero h1,
.section h2 {
  font-family: var(--font-title);
  font-size: clamp(58px, 7vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.hero h1 em,
.section h2 em {
  color: var(--color-accent);
  font-weight: 600;
}

/* =========================================================
   5. HERO / PRIMEIRA DOBRA
   ========================================================= */
.hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 5vw;
  padding: 5.7vw var(--page-padding) 5vw;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: 4%;
  top: 10%;

  border-radius: 50%;
  background: rgba(255, 90, 18, 0.08);
  filter: blur(80px);
  pointer-events: none;
}

.hero h1 {
  margin: 25px 0 32px;
}

.hero-content > p {
  max-width: 610px;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 58px;
  color: var(--color-muted);
  font-size: 12px;
}

.hero-note .line {
  width: 75px;
  height: 1px;
  background: var(--color-accent);
}

/* Card visual do hero */
.hero-visual {
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  width: min(500px, 100%);
  aspect-ratio: 0.83;
  padding: 48px;
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 90, 18, 0.10), transparent 42%),
    #090605;
  border: 1px solid rgba(255, 90, 18, 0.42);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.55),
    0 0 55px rgba(255, 90, 18, 0.08);
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -105px;
  right: -95px;

  border: 1px solid rgba(255, 90, 18, 0.28);
  border-radius: 50%;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 285px;
  height: 285px;
  top: 70px;
  left: 50%;

  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 80px rgba(255, 90, 18, 0.42);
  opacity: 0.92;
  transform: translateX(-50%);
}

/* Microfone e ondas */
.mic-visual {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
  transform: translateY(-70px);
}

.mic {
  z-index: 3;
  font-size: 112px;
  filter: grayscale(1);
  transform: rotate(-8deg);
}

.sound {
  position: absolute;
  border: 1px solid rgba(255, 238, 228, 0.36);
  border-radius: 50%;
}

.sound-1 { width: 165px; height: 165px; }
.sound-2 { width: 235px; height: 235px; }
.sound-3 { width: 315px; height: 315px; }

/* Mini logo dentro do card */
.hero-mini-logo {
  position: absolute;
  left: 44px;
  top: 40px;
  z-index: 5;

  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--color-accent);
}

.hero-mini-logo svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 2.6;
  stroke-linecap: round;
}

.hero-mini-logo span {
  font-family: var(--font-title);
  font-size: 13px;
  line-height: 1.05;
  letter-spacing: 0.05em;
}

.hero-mini-logo b {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.episode-badge {
  margin-bottom: 18px;
  position: relative;
  z-index: 4;
  color: #ff7a3d;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.hero-card h2 {
  position: relative;
  z-index: 4;
  font-family: var(--font-title);
  font-size: 42px;
  line-height: 1.03;
}

.hero-card > p {
  margin-top: 16px;
  position: relative;
  z-index: 4;
  color: var(--color-muted-light);
  font-size: 13px;
}

/* =========================================================
   6. FAIXA DE DESTAQUE
   ========================================================= */
.statement {
  padding: 31px var(--page-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;

  color: var(--color-dark-text);
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
  box-shadow: 0 0 45px rgba(255, 90, 18, 0.12);
}

.statement p {
  font-family: var(--font-title);
  font-size: 28px;
  font-style: italic;
}

.statement span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

/* =========================================================
   7. SEÇÕES — CONFIGURAÇÃO GERAL
   ========================================================= */
.section {
  padding: var(--section-padding);
}

/* =========================================================
   8. SOBRE
   ========================================================= */
.about {
  background: var(--color-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 8vw;
  margin-top: 45px;
}

.about-title h2 {
  font-size: clamp(48px, 5vw, 80px);
}

.about-copy {
  padding-top: 12px;
}

.about-copy p {
  margin-bottom: 24px;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.9;
}

.about-copy strong {
  color: var(--color-text);
}

/* =========================================================
   9. EPISÓDIOS / CONTEÚDOS
   ========================================================= */
.episodes {
  background: var(--color-bg-secondary);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.section-head h2 {
  margin-top: 24px;
  font-size: clamp(48px, 5vw, 80px);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 62px;
  background: rgba(255, 90, 18, 0.25);
}

.episode-card {
  min-height: 440px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  position: relative;

  background: var(--color-bg-secondary);
  border-top: 1px solid rgba(255, 90, 18, 0.10);
  transition: 0.28s;
}

.episode-card:hover {
  background: var(--color-bg-card-hover);
  box-shadow:
    inset 0 3px 0 var(--color-accent),
    0 18px 50px rgba(0, 0, 0, 0.35);
  transform: translateY(-5px);
}

.card-number {
  color: #8e7770;
  font-family: var(--font-title);
  font-size: 12px;
}

.card-icon {
  margin: 62px 0 28px;
  color: var(--color-accent);
  font-size: 39px;
}

.episode-card > span {
  color: var(--color-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.episode-card h3 {
  margin: 15px 0;
  color: var(--color-text);
  font-family: var(--font-title);
  font-size: 28px;
  line-height: 1.15;
}

.episode-card p {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.7;
}

.episode-card a {
  margin-top: auto;
  padding-top: 25px;
  font-size: 13px;
  font-weight: 700;
}

/* =========================================================
   10. PROPÓSITO
   ========================================================= */
.purpose {
  padding-top: 0;
  background: var(--color-bg-secondary);
}

.purpose-panel {
  padding: 75px 6vw;
  color: var(--color-dark-text);
  background:
    radial-gradient(circle at 86% 20%, rgba(255, 90, 18, 0.17), transparent 30%),
    linear-gradient(135deg, #080504, #110805);
  border: 1px solid rgba(255, 90, 18, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

/* Mantido laranja para preservar o visual atual */
.section-tag.light {
  color: var(--color-accent);
}

.purpose-kicker {
  margin: 60px 0 15px;
  color: var(--color-accent);
  font-size: 11px;
  letter-spacing: 0.22em;
}

.purpose-panel h2 {
  font-size: clamp(50px, 6vw, 95px);
  color: var(--color-text);
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
  margin-top: 75px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 90, 18, 0.25);
}

.purpose-grid strong {
  color: var(--color-accent);
  font-family: var(--font-title);
}

.purpose-grid p {
  margin-top: 16px;
  color: #c4aea4;
  font-size: 14px;
  line-height: 1.7;
}

/* =========================================================
   11. CTA / CONTATO
   ========================================================= */
.cta {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  align-items: end;
  gap: 8vw;
  background: var(--color-bg);
}

.cta h2 {
  margin: 25px 0;
  font-size: clamp(52px, 6vw, 88px);
}

.cta-copy > p {
  max-width: 670px;
  color: var(--color-muted);
  line-height: 1.8;
}

.cta-actions {
  text-align: right;
}

.cta-actions p {
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 11px;
  letter-spacing: 0.12em;
}

/* =========================================================
   12. FOOTER
   ========================================================= */
footer {
  min-height: 150px;
  padding: 35px var(--page-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  background: var(--color-bg);
  border-top: 1px solid var(--color-line);
}

.footer-brand {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
}

.footer-brand em {
  color: var(--color-accent);
  font-style: normal;
}

footer p {
  color: var(--color-muted);
  font-size: 11px;
}

/* Crédito Codex Agency */
.codex-credit a {
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: opacity 0.2s ease;
}

.codex-credit a:hover {
  opacity: 0.72;
}

/* =========================================================
   13. ANIMAÇÕES
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.13s;
}

.delay-2 {
  transition-delay: 0.24s;
}

/* =========================================================
   14. RESPONSIVO — TABLET / MOBILE ATÉ 900px
   ========================================================= */
@media (max-width: 900px) {
  .desktop-cta,
  .nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav.open {
    display: flex;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 22px;
    padding: 28px var(--page-padding);
    background: #080605;
    border-bottom: 1px solid rgba(255, 90, 18, 0.25);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .hero-visual {
    min-height: 0;
    margin-top: 25px;
  }

  .hero-card {
    max-width: 600px;
  }

  .about-grid,
  .cta {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .episode-card {
    min-height: 330px;
  }

  .card-icon {
    margin: 35px 0 22px;
  }

  .purpose-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-actions {
    text-align: left;
  }

  footer {
    flex-wrap: wrap;
  }
}

/* =========================================================
   15. RESPONSIVO — CELULAR ATÉ 560px
   ========================================================= */
@media (max-width: 560px) {
  :root {
    --header-height: 76px;
  }

  .header {
    height: var(--header-height);
  }

  .nav.open {
    top: var(--header-height);
  }

  .logo-icon {
    width: 42px;
    height: 42px;
  }

  .logo-icon svg {
    width: 30px;
    height: 30px;
  }

  .hero {
    min-height: 0;
    gap: 20px;
    padding: 55px 22px 70px;
  }

  .hero h1 {
    font-size: 55px;
  }

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

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-note {
    margin-top: 42px;
  }

  .hero-card {
    padding: 30px;
    aspect-ratio: 0.78;
  }

  .hero-card h2 {
    font-size: 33px;
  }

  .hero-mini-logo {
    left: 28px;
    top: 27px;
  }

  .mic {
    font-size: 90px;
  }

  .statement {
    padding: 24px 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .statement p {
    font-size: 23px;
  }

  .section {
    padding: 85px 22px;
  }

  .about-title h2,
  .section-head h2,
  .cta h2 {
    font-size: 48px;
  }

  .episode-card {
    padding: 30px;
  }

  .purpose {
    padding-top: 0;
  }

  .purpose-panel {
    padding: 55px 28px;
  }

  .purpose-panel h2 {
    font-size: 47px;
  }

  footer {
    padding: 34px 22px;
    align-items: flex-start;
    flex-direction: column;
  }
}
