/* ============================================================
   PRODUZ PODCAST STUDIOS — estilos específicos da página
   (usa os tokens / nav / footer / botões de style.css)
============================================================ */

:root {
  --pod-magenta: #C4267A;
  --pod-violet:  #6A2C9E;
  --pod-glow:    linear-gradient(100deg, var(--orange) 0%, var(--pod-magenta) 55%, var(--pod-violet) 100%);
}

/* logo do podcast no nav */
.nav__logo-podcast { height: 38px; width: auto; display: block; }

/* estrutura de apoio: par de imagens (controle + camarim menor) */
.pod-estrutura-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}
.pod-estrutura-imgs__wide { grid-column: 1 / -1; }
.pod-estrutura-imgs figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
}
.pod-estrutura-imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pod-estrutura-imgs__wide img { max-height: 300px; }
.pod-estrutura-imgs figure:not(.pod-estrutura-imgs__wide) img { max-height: 220px; }

/* ============================================================
   FACHADA / ONDE ESTAMOS
============================================================ */
.pod-fachada__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.pod-fachada__img {
  border-radius: 10px;
  overflow: hidden;
}
.pod-fachada__img img { width: 100%; display: block; }
.pod-fachada__addr {
  font-size: 17px;
  color: var(--gray-lt);
  line-height: 1.7;
  margin: 8px 0 24px;
}
.pod-fachada__addr strong { color: var(--white); }

.nav__back {
  font-size: 12px !important;
  color: var(--gray-mid) !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav__back:hover { color: var(--white) !important; }

/* ============================================================
   HERO
============================================================ */
.pod-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.pod-hero__bg { position: absolute; inset: 0; z-index: 0; }
.pod-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.pod-hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(196,38,122,0.28) 0%, transparent 55%),
    linear-gradient(120deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.6) 55%, rgba(10,10,10,0.35) 100%);
}
.pod-hero__content { position: relative; z-index: 1; padding-top: 72px; }

.pod-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.pod-hero__eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--pod-glow);
}

.pod-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7.5vw, 104px);
  line-height: 0.98;
  color: var(--white);
  margin-bottom: 22px;
}
.pod-hero__headline em {
  font-style: normal;
  background: var(--pod-glow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pod-hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  margin-bottom: 38px;
  line-height: 1.55;
}
.pod-hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.btn--podcast {
  background: var(--pod-glow);
  color: var(--white);
  border: none;
}
.btn--podcast:hover { filter: brightness(1.08); }

/* ============================================================
   SECTIONS base
============================================================ */
.pod-section { padding: 100px 0; }
.pod-section--dark  { background: var(--black); }
.pod-section--panel { background: var(--dark); }

.pod-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.pod-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 28px;
}

/* ============================================================
   SOBRE
============================================================ */
.pod-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.pod-about__text p {
  color: var(--gray-lt);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.pod-about__img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.pod-about__img img { width: 100%; display: block; }
.pod-about__img::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 80px rgba(196,38,122,0.25);
  pointer-events: none;
}
.pod-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.35);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

/* ============================================================
   ESTRUTURA — feature grid
============================================================ */
.pod-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.pod-feature {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  transition: border-color var(--transition), transform var(--transition);
}
.pod-feature:hover {
  border-color: rgba(255,107,0,0.5);
  transform: translateY(-4px);
}
.pod-feature__icon {
  font-size: 26px;
  margin-bottom: 14px;
  display: block;
}
.pod-feature h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.pod-feature p {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   CENÁRIOS (formatos)
============================================================ */
.pod-formats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}
.pod-format {
  margin: 0;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.pod-format img {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.pod-format:hover img { transform: scale(1.04); }
.pod-format figcaption {
  position: absolute;
  left: 0; bottom: 0; right: 0;
  padding: 28px 20px 16px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
}
.pod-formats__note {
  margin: 24px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 15px;
  color: var(--gray-lt);
  line-height: 1.65;
}

/* ============================================================
   LED trio
============================================================ */
.pod-led {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pod-led figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
}
.pod-led img {
  width: 100%;
  display: block;
  aspect-ratio: 21/9;
  object-fit: cover;
}

/* ============================================================
   SPECS (tecnologia)
============================================================ */
.pod-specs { display: flex; flex-direction: column; gap: 22px; }
.pod-spec { display: flex; gap: 16px; align-items: flex-start; }
.pod-spec__icon { font-size: 24px; line-height: 1.2; flex-shrink: 0; }
.pod-spec strong { display: block; color: var(--white); font-size: 16px; margin-bottom: 4px; }
.pod-spec span { font-size: 14px; color: var(--gray-mid); line-height: 1.55; }

/* ============================================================
   CHECKLIST
============================================================ */
.pod-checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.pod-checklist li {
  position: relative;
  padding-left: 32px;
  color: var(--gray-lt);
  font-size: 15px;
  line-height: 1.5;
}
.pod-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0; top: -1px;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.4);
  border-radius: 50%;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
}

/* ============================================================
   EDIÇÃO CARD
============================================================ */
.pod-edit-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 920px;
  margin: 28px auto 0;
  background: var(--card-bg);
  border: 1px solid rgba(255,107,0,0.35);
  border-radius: 12px;
  padding: 26px 30px;
}
.pod-edit-card strong { display: block; color: var(--white); font-size: 17px; margin-bottom: 6px; }
.pod-edit-card span { font-size: 14px; color: var(--gray-mid); line-height: 1.55; max-width: 520px; display: block; }
.pod-edit-card__price { text-align: right; flex-shrink: 0; }
.pod-edit-card__value {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  color: var(--orange);
}
.pod-edit-card__value small { font-size: 16px; color: var(--gray-mid); }
.pod-edit-card__label { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-mid); }

/* ============================================================
   GALERIA
============================================================ */
.pod-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
  margin-top: 8px;
}
.pod-gallery figure {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin: 0;
}
.pod-gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.pod-gallery figure:hover img { transform: scale(1.06); }
.pod-gallery .span-2 { grid-column: span 2; }
.pod-gallery .row-2 { grid-row: span 2; }

/* ============================================================
   SERVIÇOS
============================================================ */
.pod-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.pod-step {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px 24px;
}
.pod-step__num {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  background: var(--pod-glow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.pod-step h4 { font-size: 16px; color: var(--white); margin-bottom: 6px; }
.pod-step p { font-size: 14px; color: var(--gray-mid); line-height: 1.55; margin: 0; }

/* ============================================================
   PREÇOS
============================================================ */
.pod-pricing {
  max-width: 920px;
  margin: 8px auto 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--card-bg);
}
.pod-pricing__row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
}
.pod-pricing__row + .pod-pricing__row { border-top: 1px solid var(--border); }
.pod-pricing__cell {
  padding: 22px 20px;
  border-right: 1px solid var(--border);
}
.pod-pricing__cell:last-child { border-right: none; }
.pod-pricing__row--head .pod-pricing__cell {
  background: rgba(255,107,0,0.08);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
}
.pod-pricing__row--head .pod-pricing__cell small {
  display: block;
  color: var(--gray-mid);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: none;
  margin-top: 2px;
}
.pod-pricing__type {
  font-weight: 700;
  color: var(--white);
  font-size: 15px;
}
.pod-pricing__type small { display: block; color: var(--gray-mid); font-weight: 400; font-size: 12px; margin-top: 2px; }
.pod-pricing__val { font-size: 18px; font-weight: 700; color: var(--white); }
.pod-pricing__val small { display: block; color: var(--gray-mid); font-weight: 400; font-size: 12px; margin-top: 2px; }
.pod-pricing__val--hl { color: #2ea84a; }
.pod-pricing__note {
  text-align: center;
  font-size: 13px;
  color: var(--gray-mid);
  margin-top: 18px;
}

/* ============================================================
   ECOSSISTEMA
============================================================ */
.pod-eco {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}
.pod-eco__card {
  flex: 1 1 240px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: 6px;
  padding: 22px 24px;
}
.pod-eco__card strong { display: block; color: var(--white); font-size: 16px; margin-bottom: 4px; }
.pod-eco__card span { font-size: 14px; color: var(--gray-mid); line-height: 1.5; }

/* ============================================================
   CTA FINAL
============================================================ */
.pod-cta {
  position: relative;
  padding: 110px 0;
  background:
    linear-gradient(rgba(10,10,10,0.86), rgba(10,10,10,0.92)),
    url("../img/podcast/cta-bg.jpg") center/cover;
  text-align: center;
}
.pod-cta__headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 18px;
}
.pod-cta__sub {
  font-size: 17px;
  color: var(--gray-lt);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.pod-cta__info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 30px;
  font-size: 14px;
  color: var(--gray-lt);
}
.pod-cta__info a { color: var(--orange); }
.pod-cta__info span { display: inline-flex; align-items: center; gap: 7px; }

/* ============================================================
   RESPONSIVO
============================================================ */
@media (max-width: 900px) {
  .pod-about__grid { grid-template-columns: 1fr; gap: 40px; }
  .pod-features { grid-template-columns: repeat(2, 1fr); }
  .pod-steps { grid-template-columns: repeat(2, 1fr) !important; }
  .pod-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .pod-gallery .span-2 { grid-column: span 2; }
  .pod-formats { grid-template-columns: 1fr; }
  .pod-fachada__grid { grid-template-columns: 1fr; gap: 32px; }
  .pod-estrutura-imgs img { max-height: 280px; }
  /* na seção de tecnologia, imagem abaixo do texto no mobile */
  #tecnologia .pod-about__grid { direction: ltr; }
  #tecnologia .pod-about__img { order: 2; }
}
@media (max-width: 560px) {
  .pod-section { padding: 70px 0; }
  .pod-features, .pod-steps { grid-template-columns: 1fr !important; }
  .pod-pricing__row { grid-template-columns: 1fr 1fr; }
  .pod-pricing__cell:nth-child(3), .pod-pricing__cell:nth-child(4) { border-top: 1px solid var(--border); }
  .pod-pricing__row--head { display: none; }
  .nav__logo-sub { display: none; }
  .pod-edit-card { flex-direction: column; align-items: flex-start; }
  .pod-edit-card__price { text-align: left; }
}
