*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Urbanist", sans-serif;
}

html, body {
  touch-action: manipulation;
  -ms-touch-action: manipulation;
  overflow-x: hidden;
}

body{
    background-color: #F5F3EE;
}

.interface{
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4%;
}

/* Estilo do header */

    header .btn-contato button, .hero-site button{
        font-size: 18px;
        background-color: transparent;
        color: #000;
        cursor: pointer;
        transition: 0.5s;
        border-radius: 13px;
    }


header{
    width: 100%;
    padding: 6px 0;
    position: fixed;
    top: 0;
    transition: 0.5s;
    z-index: 1300;
        background-color: #F5F3EE;
    padding: 10px 0;
    box-shadow: 0 0 10px #000000a1;
    
}

header .interface{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img{
max-width: 100px;
cursor: pointer;
}


/* estilo menu dinamico */
header .logo img.logo-preta{
    display: none;
    cursor: pointer;
}

 header.rolar .logo img.logo-preta{ 
        display: block;
    cursor: pointer;
}

header.rolar .logo img.logo-branca{
        display: none;
    cursor: pointer;
}

header.rolar{
    background-color: #F5F3EE;
    padding: 10px 0;
    box-shadow: 0 0 10px #000000a1;
}

header.rolar .menu-desktop nav ul li a{
    color: #000;
}

header.rolar .btn-contato button{
    color: #000;
}

header.rolar .btn-contato button:hover{
transform: scale(1.05);
}

header.rolar .logo .logo-branca{
    cursor: pointer;
}
*/

/* --------------------------- */

header .menu-desktop nav ul{
list-style-type: none;
}

header .menu-desktop nav ul li{
display: inline-block;
margin: 0 40px;
}

    header .menu-desktop nav ul li a{
        color: #000;
        text-decoration: none;
        display: inline-block;
        transition: 0.2s;
    }

    .menu-desktop nav a:hover{
transform: scale(1.05);
    }
    header .btn-contato button{
        width: 30px;
        height: 30px;
        padding: 0 10px;
        border: none;
    }


    header .btn-contato button:hover, .hero-site button:hover{
        background-color: transparent;
    transform: scale(1.05);
    }

    header .logo:hover{
         transform: scale(1.05);
    }

    header.rolar .logo:hover{
         transform: scale(1.05);
    }
/* ---------------- HEADER MOBILE ---------------- */
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #F5F3EE;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    backdrop-filter: blur(0px);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.mobile-header .interface-mob {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-mobile {
    max-height: 40px;
}
/* ---------------- BOTÃO HAMBURGER ---------------- */
.menu-btn {
    position: relative;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    z-index: 1001;
}

.menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #000;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.logo-mobile {
    content: url('https://imagedelivery.net/byoCLdsSBwTViI2_vNwS4A/02157828-d323-40da-94bf-4147a5057900/public');
}

.mobile-header.scrolled .menu-btn span {
    background-color: #333; 
}

.mobile-header.scrolled .logo-mobile {
    content: url('https://imagedelivery.net/byoCLdsSBwTViI2_vNwS4A/02157828-d323-40da-94bf-4147a5057900/public'); 
}

.menu-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -8px);
}

/* HEADER SÓLIDO AO SCROLL */
.mobile-header.scrolled {
    background-color: #F5F3EE;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* ---------------- MENU OFF-CANVAS LATERAL DIREITA ---------------- */
.offcanvas-menu {
    position: fixed;
    top: 60px; 
    right: -50%; 
    width: 35%; 
    height: calc(100vh - 60px); 
    background-color: #ffffff; 
    transition: right 0.4s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.offcanvas-menu .menu-overlay {
    position: fixed;
    top: 60px;
    left: 0;
    width: 65%;
    height: calc(100% - 60px);
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.offcanvas-menu.open {
    right: 0;
}

.offcanvas-menu.open .menu-overlay {
    opacity: 1;
    pointer-events: auto;
}

.menu-content {
    width: 100%;
    height: 100%;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.menu-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 40px; 
}

.menu-content ul li a {
    text-decoration: none;
    color: #000;
    font-size: 28px; 
    font-weight: bold;
    transition: color 0.2s ease;
}

.menu-content ul li a:hover {
    color: #777;
}

@media (max-width: 840px) {
    .menu-desktop {
        display: none;
    }
    .mobile-header {
        display: flex;
    }
    .logo {
      display: none;
    }
    .logo-mob {
      display: block;
    }
}

@media (min-width: 841px) {
    .menu-desktop {
        display: block;
    }
    .mobile-header {
        display: none;
    }
    .logo {
      display: block;
    }
    .logo-mob {
      display: none;
    }
}

@media (max-width: 600px) {
.offcanvas-menu {
    position: fixed;
    top: 60px; 
    right: -50%; 
    width: 45%; 
    height: calc(100vh - 60px); 
    background-color: #ffffff; 
    transition: right 0.4s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}
}

@media (max-width: 500px) {
.offcanvas-menu {
    position: fixed;
    top: 60px; 
    right: -80%; 
    width: 55%; 
    height: calc(100vh - 60px); 
    background-color: #ffffff; 
    transition: right 0.4s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}
}

@media (max-width: 389px) {
.offcanvas-menu {
    position: fixed;
    top: 60px; 
    right: -80%; 
    width: 60%; 
    height: calc(100vh - 60px); 
    background-color: #ffffff; 
    transition: right 0.4s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}
}

@media (max-width: 355px) {
.offcanvas-menu {
    position: fixed;
    top: 60px; 
    right: -80%; 
    width: 65%; 
    height: calc(100vh - 60px); 
    background-color: #ffffff; 
    transition: right 0.4s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}
}

.offcanvas-footer {
  display: flex;
  flex-direction: column;
  height: 100%; 
  padding: 20px;
}

.offcanvas-footer .top-footer {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.offcanvas-footer .top-footer button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #000;
  background-color: transparent;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.offcanvas-footer .top-footer button:hover {
  background-color: #000;
  color: #fff;
  transform: scale(1.1);
}


.offcanvas-footer .bottom-footer {
  text-align: center;
  font-size: 0.9rem;
  color: #555;
}


body.no-overflow{
    overflow: hidden;
}


     /* estilo do rodape */

     footer{
        background-color: #F5F3EE;
        width: 100%;
        text-align: center;
        padding: 30px 0;
     }

     footer .top-footer button{
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: none;
        background-color: #000;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
        margin: 0 10px;
        transition: 0.5s;
        margin-bottom: 10px;
     }

      footer .top-footer button:hover{
        background-color: transparent;
        color: #000;
        border: solid 2px #000;
      }

footer .midle-footer{
    color: #000;
    margin-bottom: 10px;
}


      footer .bottom-footer p{
        color: #000;
    margin-top: 10px;
    font-size: 12px;
      }

      footer .bottom-footer {
        border-top: 2px solid #000;
      }


/* HERO */

.podcast-hero{

display:grid;

grid-template-columns:1fr 1fr;

/* define altura REAL da section */
height:99.9vh;

/* impede crescer demais */
max-height:900px;

overflow:hidden;

}



/* TEXTO */

.hero-text{

padding:80px;

display:flex;

flex-direction:column;

justify-content:center;

/* importante para acompanhar altura */
height:100%;

}



.small-title{

letter-spacing:4px;

font-size:12px;

margin-bottom:40px;

}



.hero-text h1{

font-size:46px;

line-height:1;

max-width:600px;

margin-bottom:40px;

}



.hero-text p{

max-width:520px;

line-height:1.8;

color:#666;

}



.btn{

margin-top:60px;

color:black;

text-decoration:none;

}



/* IMAGEM */

.hero-video{

height:100%;

overflow:hidden;

}



/* imagem acompanha exatamente a section */

.hero-video img{

display:block;

width:100%;

height:100%;

/* preenche sem deformar */
object-fit:cover;

/* opcional: centraliza corte */
object-position:center;

}



/* RESPONSIVO */

@media(max-width:900px){

.podcast-hero{

grid-template-columns:1fr;

height:auto;

}


.hero-text{

padding:70px 30px;

}


.hero-video{

height:60vh;

}

}

.play{

position:absolute;

top:50%;

left:50%;

transform:
translate(-50%,-50%);

width:90px;

height:90px;

background:white;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

cursor:pointer;

}



/* DESTAQUE */

.featured {
  background: #090909;
  color: white;

  padding: clamp(60px, 8vw, 120px);

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;

  /* altura controlada e estável */
  height: 90vh;
  max-height: 900px;

  

  align-items: stretch;
  overflow: hidden;
}

/* TEXTO */

.featured h2 {
  font-size: clamp(36px, 4vw, 33px);
  margin-top: 20px;
  margin-bottom: 30px;
}

.featured-info h2 span {
    padding: 12px 20px;
  border: 0px solid #333;
  font-size: 0.4em;
}

.featured p {
  color: #aaa;
  line-height: 1.8;
}

.tags {
  margin-top: 40px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tags span {
  padding: 12px 20px;
  border: 1px solid #333;
  border-radius: 999px;
  font-size: 13px;
}

/* VÍDEO CONTAINER */
.featured-video {
  height: 100%;
  width: 100%;
  display: flex;
  overflow: hidden;
  border-radius: 24px;
}

/* iframe REALMENTE preenchendo tudo */
.featured-video iframe {
  width: 100%;
  height: 100%;

  border: 0;
  display: block;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .featured {
    grid-template-columns: 1fr;

    height: auto;
    max-height: none;

    gap: 40px;
  }

  .featured-video {
    height: 55vh;
  }

  .featured-video iframe {
    height: 100%;
  }
}



/* EPISÓDIOS */

.episodes {
  padding: clamp(60px, 8vw, 120px);
}

/* HEADER */
.episodes-header h2 {
  font-size: clamp(42px, 6vw, 72px);
  margin-bottom: 70px;
  line-height: 1;
}

/* GRID */
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;

  /* 🔥 deixa todos os cards com mesma altura */
  align-items: stretch;
}

/* CARD */
.episode {
  border-top: 1px solid #ddd;
  padding-top: 30px;

  display: flex;
  flex-direction: column;

  /* 🔥 todos ficam com altura igual */
  height: 100%;

  /* substitui margin bagunçada */
  gap: 14px;
}

/* EP NUMBER */
.episode span {
  font-size: 14px;
  color: #888;
  letter-spacing: 2px;
}

/* TITLE */
.episode h3 {
  margin: 20px 0 15px;
  font-size: clamp(19px, 2.5vw, 14px);
}

/* TEXT */
.episode p {
  color: #666;
  line-height: 1.6;

  /* 🔥 reserva espaço igual */
  min-height: 55px;
}



/* VÍDEO */
.video-wrapper {
  position: relative;

  width: 100%;
  aspect-ratio: 16 / 9;

  overflow: hidden;
  border-radius: 14px;

  
  margin-top: auto;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;

  border: none;
  display: block;
}


@media (max-width: 1024px) {

  /* HERO */
  .podcast-hero {
    grid-template-columns: 1fr;
    height: auto;
  }

  .hero-text {
    padding: 60px 40px;
  }

  .hero-video {
    height: 55vh;
  }

  /* FEATURED */
  .featured {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
    gap: 40px;
  }

  .featured-video {
    height: 55vh;
  }

  /* EPISODES */
  .episodes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}


@media (max-width: 768px) {

  /* HERO */
  .hero-text {
    padding: 50px 25px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .hero-video {
    height: 50vh;
  }

  /* FEATURED */
  .featured {
    padding: 60px 25px;
  }

  .featured-video {
    height: 45vh;
  }

  /* EPISODES */
  .episodes-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .episodes-header h2 {
    font-size: 36px;
  }
}

@media (max-width: 480px) {

  .hero-text h1 {
    font-size: 26px;
  }

  .hero-text {
    padding: 40px 20px;
  }

  .featured h2 {
    font-size: 28px;
  }

  .episodes-header h2 {
    font-size: 28px;
  }

  .tags span {
    font-size: 11px;
    padding: 10px 14px;
  }
}


