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

body {
 font-family: 'Poppins', sans-serif;
 background-color: #FDF7E7;
 color: #521207;
 line-height: 1.2;
}
body{
  max-width: 1280px;
  margin: 0 auto;
  background: transparent;
}
html{
  background-color: #FDF7E7;
}

.container {
 max-width: 1322px;
 margin: 0 auto;
 padding: 0 20px;
}

.main-nav {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 background-color: #FDF7E7;
 box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
 padding: 15px;
 display: flex;
 justify-content: flex-end;
 align-items: center;
 gap: 30px;
 z-index: 100;
}

.hamburger {
 display: none;
 flex-direction: column;
 justify-content: space-around;
 width: 30px;
 height: 25px;
 background: transparent;
 border: none;
 cursor: pointer;
 padding: 0;
 z-index: 101;
 position: absolute;
 right: 20px;
 top: 50%;
 transform: translateY(-50%);
}

.hamburger span {
 width: 30px;
 height: 3px;
 background-color: #521207;
 border-radius: 2px;
 transition: all 0.3s ease;
 transform-origin: center;
}

.hamburger.active span:nth-child(1) {
 transform: translateY(11px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
 opacity: 0;
}

.hamburger.active span:nth-child(3) {
 transform: translateY(-11px) rotate(-45deg);
}

.nav-menu {
 display: flex;
 gap: 30px;
 align-items: center;
}

.nav-item {
 font-family: 'Poppins', sans-serif;
 font-size: 16px;
 font-weight: 400;
 color: #521207;
 cursor: pointer;
}

.nav-item a {
 text-decoration: none;
 color: #521207;
}

.header {
 text-align: right;
 padding: 35px 20px 0;
 margin-bottom: -100px;
}

.header-logo {
 width: 15%;
 max-width: 200px;
}

.hero {
 padding: 50px 20px 0;
}

.hero-brand {
 width: 40%;
 max-width: 400px;
}

.hero-title-wrapper {
 display: flex;
 justify-content: space-between;
 align-items: center;
 margin-top: 20px;
 gap: 20px;
}

.hero h1 {
 font-family: 'Poppins', sans-serif;
 font-size: 25px;
 font-weight: 400;
 color: #521207;
 margin: 0;
 flex: 1;
}

.hero-subtitle-right {
 font-family: 'Poppins', sans-serif;
 font-size: 32px;
 font-weight: 400;
 color: #521207;
 text-align: right;
 white-space: nowrap;
}

.intro {
 margin: 0;
 padding: 80px 20px 40px;
}

.intro-title {
 font-family: 'Poppins', sans-serif;
 font-size: 40px;
 font-weight: 400;
 color: #521207;
 max-width: 85%;
 line-height: 1.3;
}

.podcast-container {
 padding: 60px 20px;
}

.podcast-wrapper {
 background-color: #E88B7A;
 padding: 60px;
 max-width: 1322px;
 margin: 0 auto;
}

.podcast-grid {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 40px;
}

.podcast-item {
 display: flex;
 gap: 30px;
 align-items: flex-start;
}

.podcast-item:nth-child(3),
.podcast-item:nth-child(4) {
 flex-direction: row-reverse;
}

.podcast-content {
 flex: 1;
}

.podcast-title {
 font-family: 'Poppins', sans-serif;
 font-size: 20px;
 font-weight: 500;
 color: #FFFFFF;
 margin: 0 0 15px 0;
 line-height: 1.3;
}

.podcast-description {
 font-family: 'Poppins', sans-serif;
 font-size: 16px;
 font-weight: 400;
 color: #521207;
 line-height: 1.4;
 margin: 0;
}

.podcast-icon-wrapper {
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 15px;
}

.podcast-icon {
 width: 100px;
 height: 100px;
 border-radius: 50%;
 background-color: #521207;
 display: flex;
 align-items: center;
 justify-content: center;
}

.btn-escuchar {
 font-family: 'Poppins', sans-serif;
 font-size: 14px;
 font-weight: 500;
 color: #521207;
 background-color: transparent;
 border: 2px solid #521207;
 padding: 10px 20px;
 cursor: pointer;
 transition: all 0.3s;
 white-space: nowrap;
}

.btn-escuchar:hover {
 background-color: #521207;
 color: #FFFFFF;
}

@media (max-width: 767px) {
 .main-nav {
  padding: 15px 20px;
  justify-content: center;
 }

 .hamburger {
  display: flex;
 }

 .nav-menu {
  position: fixed;
  top: 60px;
  right: -100%;
  flex-direction: column;
  background-color: #FDF7E7;
  width: 250px;
  padding: 30px 20px;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  gap: 20px;
  align-items: flex-start;
 }

 .nav-menu.active {
  right: 0;
 }

 .nav-item {
  font-size: 16px;
  width: 100%;
 }

 .nav-item a {
  display: block;
  padding: 10px 0;
 }

 .header {
  padding: 25px 20px 0;
  margin-bottom: -50px;
 }

 .header-logo {
  width: 40%;
  max-width: 150px;
 }

 .hero {
  padding: 30px 20px 0;
 }

 .hero-brand {
  width: 80%;
  max-width: 300px;
 }

 .hero-title-wrapper {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 15px;
 }

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

 .hero-subtitle-right {
  font-size: 24px;
  align-self: flex-end;
 }

 .intro {
  padding: 40px 20px;
 }

 .intro-title {
  font-size: 24px;
  max-width: 100%;
 }

 .podcast-container {
  padding: 30px 20px;
 }

 .podcast-wrapper {
  padding: 30px 20px;
 }

 .podcast-grid {
  grid-template-columns: 1fr;
  gap: 30px;
 }

 .podcast-item {
  flex-direction: column;
  align-items: center;
  text-align: center;
 }

 .podcast-item:nth-child(3),
 .podcast-item:nth-child(4) {
  flex-direction: column;
 }

 .podcast-title {
  font-size: 18px;
 }

 .podcast-description {
  font-size: 14px;
 }

 .podcast-icon {
  width: 80px;
  height: 80px;
 }

 .podcast-icon svg {
  width: 40px;
  height: 40px;
 }

 .btn-escuchar {
  font-size: 13px;
  padding: 8px 16px;
 }

 .footer {
  padding: 30px 20px;
 }

 .btn-footer {
  font-size: 16px;
  padding: 15px 30px;
  margin-top: 20px;
 }
}

.footer {
 background-color: #FFF0D8;
 padding: 40px;
 text-align: center;
}

.footer .container {
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 30px;
}

.btn-footer {
 display: inline-block;
 font-family: 'Roboto', sans-serif;
 background-color: ;
 color: #521207;
 border: 4px solid #521207;
 font-size: 18px;
 font-weight: 500;
 padding: 18px 40px;
 text-transform: uppercase;
 letter-spacing: 0.5px;
 text-decoration: none;
 cursor: pointer;
 transition: opacity 0.3s;
 max-width: 280px;
 width: auto;
 margin-top: 30px;
}

.btn-footer:hover {
 opacity: 0.9;
}

.footer-logo {
 width: 25%;
 max-width: 250px;
}

@media (max-width: 767px) {
 .footer-logo {
  width: 50%;
 }
}

/* --- FIX CloudPages wrapper blanco (Podcast) --- */
.layout-canvas-g,
.layout.layout-canvas-g {
  background-color: #FFF0D8 !important;
}

.layout-canvas-g > .header,
.layout-canvas-g > .section,
.layout-canvas-g > .footer,
.layout-canvas-g > .section > .columns {
  background-color: #FFF0D8 !important;
}

/* evita las “franjas/cortes” que antes se veían blancos */
.layout-canvas-g > .section {
  margin: 0 !important;
}

/* ===== CTA Consent (solo este bloque) ===== */
.cta-consent{
  background-color: #FFF0D8 !important;  /* amarillo oscuro */
  padding: 70px 20px;                   /* aire similar a otras páginas */
}

.cta-consent .cta-title{
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  max-width: 1000px;
  margin: 0 auto;
  color: #521207;
}

/* Botón SOLO de este CTA (no afecta al footer) */
.cta-consent .btn-cta-consent{
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  text-decoration: none;
  background-color: #E1261B;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  padding: 18px 60px;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: opacity .3s;
}

.cta-consent .btn-cta-consent:hover{ opacity: .9; }

.cta-consent .btn-cta-consent:link,
.cta-consent .btn-cta-consent:visited{
  color: #FFFFFF;
  text-decoration: none;
}

/* Mobile */
@media (max-width: 767px){
  .cta-consent{ padding: 50px 20px; }

  .cta-consent .cta-title{
    font-size: 24px;
  }

  .cta-consent .btn-cta-consent{
    font-size: 16px;
    padding: 15px 30px;
    width: 100%;
    max-width: 360px;
  }

  .cta-consent hr{ width: 100% !important; }
}

