/* RESET BÁSICO */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-dark: #101010;
  --bg-page: #f6f2e7;
  --bg-card: #ffffff;
  --bg-soft: #fbf7ed;
  --accent-gold: #d9b748;
  --accent-gold-soft: #f4e2a2;
  --text-main: #111111;
  --text-muted: #6b6b6b;
  --border-soft: #ece3d3;
  --radius-lg: 18px;
  --radius-md: 14px;
  --shadow-soft: 0 22px 80px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 18px 40px rgba(0, 0, 0, 0.10);
}

html,
body {
  height: 100%;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-page);
  color: var(--text-main);
  line-height: 1.7;
}

/* CONTÊINER GENÉRICO */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}

/* ================= HEADER ================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 42px;
  display: block;
}

/* NAV */
.header-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

/* links e dropdown */
.nav-link,
.dropdown-toggle {
  font-family: "Poppins", sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

/* sublinhado animado */
.nav-link::after,
.dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-gold);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.dropdown-toggle:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.dropdown-toggle:hover,
.nav-link.active {
  color: var(--accent-gold);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.chevron {
  font-size: 0.7rem;
  margin-left: 4px;
  display: inline-block;
  transition: transform 0.25s ease;
}

.dropdown-menu {
  position: absolute;
  top: 32px;
  left: 0;
  min-width: 190px;
  background: #181818;
  border-radius: 10px;
  padding: 10px 0;
  display: none;
  flex-direction: column;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.04);
  z-index: 1000;
}

.dropdown-menu a {
  color: #f5f5f5;
  font-size: 0.95rem;
  padding: 9px 18px;
  text-decoration: none;
  display: block;
  border-radius: 6px;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a.active-sub {
  background: rgba(217, 183, 72, 0.14);
  color: var(--accent-gold);
  transform: translateX(2px);
}

.nav-dropdown:hover .dropdown-menu {
  display: flex;
}

.nav-dropdown:hover .chevron {
  transform: rotate(180deg);
}

/* Hamburguer (desktop: escondido) */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
}

.mobile-menu-btn span {
  width: 26px;
  height: 2px;
  background: #ffffff;
  display: block;
  border-radius: 3px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

/* Botão X (só mobile) */
.mobile-close-btn {
  display: none;
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 26px;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  color: #ffffff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .mobile-menu-btn {
    display: flex;
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    max-width: 360px;
    height: 100vh;
    background: #101010;
    flex-direction: column;
    align-items: flex-start;
    padding: 70px 32px 40px;
    gap: 24px;
    transition: right 0.35s ease;
    box-shadow: -6px 0 20px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
  }

  .header-nav.open {
    right: 0;
  }

  .mobile-close-btn {
    display: block;
  }

  .nav-link,
  .dropdown-toggle {
    font-size: 1.05rem;
    width: 100%;
  }

  /* dropdown como acordeão */
  .nav-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown-toggle.active + .dropdown-menu {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0 0 0 10px;
  }

  .dropdown-menu a {
    padding-left: 12px;
  }
}

/* ================= MAIN CONTENT ================= */

.podcast-main {
  background: #1a1a1a;
  min-height: 100vh;
  padding-top: 0;
}

/* Hero Section */
.podcast-hero {
    background: #1a1a1a;
    position: relative;
    height: calc(100vh - 140px); /* hero de pantalla completa debajo del header */
    padding: 0;
    overflow: hidden; /* por si la imagen se sale un poco */
  }
  
  /* el wrapper ahora ocupa todo el hero */
  .hero-logo-wrapper {
    position: absolute;
    inset: 0;           /* top:0; right:0; bottom:0; left:0; */
    max-width: none;
    width: 100%;
    height: 100%;
    padding: 0;
  }
  
  /* la imagen rellena todo el hero */
  .hero-logo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;  /* hace que la imagen ocupe todo sin deformarse */
  }
  

/* Introducción */
.intro-section {
  padding: 80px 0 60px;
  background: #1a1a1a;
}

.intro-box {
  border: 2px solid var(--accent-gold);
  border-radius: 16px;
  padding: 40px 32px;
  max-width: 900px;
  margin: 0 auto;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ffffff;
  text-align: left;
  margin: 0;
  font-weight: 300;
}

.intro-highlight {
  color: var(--accent-gold);
  font-weight: 600;
}

/* Mais do que um projeto */
.more-than-project {
  padding: 60px 0;
  background: #1a1a1a;
}

.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.text-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--accent-gold);
  line-height: 1.3;
  margin: 0;
}

.section-title.large {
  font-size: 3rem;
}

.section-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #ffffff;
  margin: 0;
  font-weight: 300;
}

.section-text strong {
  color: var(--accent-gold);
  font-weight: 600;
}

/* Quote Box */
.quote-box {
  background: transparent;
  border: 2px solid var(--accent-gold);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 40px;
}

.quote-icon {
  font-size: 4rem;
  color: var(--accent-gold);
  font-family: "Playfair Display", serif;
  line-height: 1;
  margin-bottom: -20px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.quote-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ffffff;
  margin: 0;
  font-weight: 300;
}

.quote-text strong {
  font-weight: 600;
  color: var(--accent-gold);
}

/* Como tudo começou */
.how-it-started {
  padding: 80px 0;
  background: #1a1a1a;
}

.how-it-started .section-title {
  margin-bottom: 32px;
  text-transform: uppercase;
  font-size: 2.2rem;
}

.highlight-gold {
  color: var(--accent-gold);
  font-weight: 600;
}

/* Podcast Section */
.podcast-section {
  padding: 80px 0;
  background: #1a1a1a;
}

.theme-pills {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.pill-item {
  width: 100%;
  max-width: 280px;
  border: 2px solid var(--accent-gold);
  border-radius: 12px;
  padding: 16px 24px;
  background: transparent;
  transition: all 0.3s ease;
}

.pill-item span {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 300;
  display: block;
}

.pill-item strong {
  color: var(--accent-gold);
  font-weight: 600;
}

.pill-item:hover {
  background: rgba(217, 183, 72, 0.1);
  transform: translateX(4px);
}

/* Final Statement */
.final-statement {
  padding: 60px 0 80px;
  background: #1a1a1a;
  text-align: center;
}

.statement-box {
  border: 2px solid var(--accent-gold);
  border-radius: 16px;
  padding: 40px 32px;
  max-width: 900px;
  margin: 0 auto;
}

.statement-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #ffffff;
  margin: 0;
  font-weight: 300;
  text-align: center;
}

/* Community Section */
.community-section {
  padding: 80px 0 120px;
  background: #1a1a1a;
}

.community-section .section-title {
  margin-bottom: 24px;
  text-align: center;
}

.community-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #ffffff;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  font-weight: 300;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #2a2a2a;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 16px;
}

.gallery-overlay h4 {
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  padding: 0 20px;
  margin: 0;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ================= RESPONSIVE CONTENT ================= */

@media (max-width: 900px) {
    .podcast-hero {
      height: calc(100vh - 120px); /* antes: min-height */
    }
  
    .hero-logo-wrapper {
      padding: 0; /* para que no meta bordes negros, opcional pero queda mejor */
    }

  .intro-section {
    padding: 60px 0 40px;
  }

  .intro-box {
    padding: 32px 24px;
    margin: 0 20px;
  }

  .intro-text {
    font-size: 1rem;
  }

  .section-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-title.large {
    font-size: 2.2rem;
  }

  .section-text {
    font-size: 1rem;
  }

  .quote-box {
    padding: 32px 24px;
  }

  .quote-icon {
    font-size: 3rem;
  }

  .quote-text {
    font-size: 1rem;
  }

  .theme-pills {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .pill {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .more-than-project,
  .how-it-started,
  .podcast-section,
  .final-statement,
  .community-section {
    padding: 50px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 20px;
  }

  .community-intro {
    font-size: 1rem;
    padding: 0 20px;
    margin-bottom: 40px;
  }

  .statement-text {
    font-size: 1rem;
    padding: 0 20px;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-title.large {
    font-size: 2rem;
  }
}

/* ================= FOOTER ================= */

.ev-footer {
  background: #f0e8d3;
  padding: 60px 0 30px;
  font-size: 0.95rem;
}

.ev-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
}

.ev-footer-logo {
  display: block;
  max-width: 190px;
  height: auto;
  margin: 0 0 12px;
}

.ev-footer-text {
  margin: 0;
  max-width: 360px;
  color: #444;
  line-height: 1.7;
}

.ev-footer-title {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  color: #555;
}

.ev-footer-links,
.ev-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ev-footer-links li,
.ev-footer-contact li {
  margin-bottom: 8px;
}

.ev-footer-links a {
  text-decoration: none;
  color: #333;
  transition: transform 0.2s ease, color 0.2s ease;
}

.ev-footer-links a:hover {
  color: var(--accent-gold);
  transform: translateX(3px);
}

.ev-footer-contact li {
  color: #333;
}

.ev-footer-bottom {
  text-align: center;
  margin-top: 30px;
  color: #666;
}

.ev-footer-bottom strong {
  color: #333;
}

/* Footer Responsive */
@media (max-width: 640px) {
  .ev-footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .ev-footer-text {
    margin: 0 auto;
  }
}

/* ================= BOTÓN WHATSAPP FLOTANTE ================= */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.45);
  text-decoration: none;
  z-index: 1000;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.6);
}

@media (max-width: 640px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 20px;
    bottom: 20px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

