/* ==============================
   RESET + CONFIGURACIÓN GLOBAL
============================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 100%;
}

body {
    margin: 0;
    background-color: #093b66;
    font-family: Arial, sans-serif;
    width: 100%;
    overflow-x: hidden;
    padding-top: clamp(5rem, 12vh, 7.5rem); /* navbar adaptable */
}

/* ==============================
   NAVBAR
============================== */

.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    width: 100%;
    padding: clamp(0.75rem, 2vw, 1.25rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #093b66;
    z-index: 1000;
}

#logo-nav {
    width: clamp(3rem, 6vw, 5rem);
    border-radius: 50%;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: clamp(0.75rem, 3vw, 1.875rem);
    margin: 0;
    padding: 0;
}

.navbar a {
    font-family: 'Public Sans';
    color: white;
    font-weight: bold;
    text-decoration: none;
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    white-space: nowrap;
}

/* ==============================
   HERO
============================== */

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100svh;
}

.circle {
    width: min(80vw, 34rem);
    aspect-ratio: 1 / 1;
    background-color: #FFD92E;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 70%;
    height: auto;
}

/* ==============================
   ESPACIO SEGURO
============================== */

#espacio-seguro {
    padding: clamp(3rem, 8vw, 5rem) 8%;
    min-height: 100svh;
    display: flex;
    align-items: center;
}

.contenido-espacio {
    display: flex;
    gap: clamp(2rem, 5vw, 3rem);
    max-width: 81.25rem;
    margin: auto;
}

.texto-espacio {
    flex: 1;
    color: white;
}

#espacio-seguro h2 {
    font-family: 'BebasNeueProBoldTitle';
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

#descripcion-espacio {
    font-family: 'Public Sans';
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.5;
}

#boton-acceso {
    margin-top: 2rem;
    background-color: #FFD92E;
    border: none;
    padding: clamp(0.75rem, 2vw, 1.125rem)
             clamp(2.5rem, 8vw, 5rem);
    border-radius: 1rem;
    font-size: clamp(1rem, 2.5vw, 1.375rem);
    font-family: 'Public Sans Bold';
    cursor: pointer;
    transition: transform 0.3s ease;
}

#boton-acceso:hover {
    transform: scale(1.05);
}

#info-adicional {
    margin-top: 1rem;
    font-size: 0.875rem;
}

#info-adicional a {
    color: #FFD92E;
    text-decoration: none;
    font-weight: bold;
}

.imagen-espacio {
    flex: 1;
    display: flex;
    justify-content: center;
}

#imagen-espacio-seguro {
    width: 100%;
    max-width: 32.5rem;
    border-radius: 2.5rem;
}

/* ==============================
   AYUDA
============================== */

#ayuda {
    min-height: 100svh;
    text-align: center;
    color: white;
    padding: clamp(3rem, 8vw, 5rem) 1.5rem;
}

#ayuda h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-family: 'Public Sans title';
}

#ayuda h4 {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
}

#boton-entra {
    display: inline-block;
    margin-top: 2rem;
    background-color: #FFD92E;
    padding: clamp(0.75rem, 2vw, 1.125rem)
             clamp(2.5rem, 8vw, 5rem);
    border-radius: 1rem;
    color: #093b66;
    font-family: 'Public Sans Bold';
    text-decoration: none;
}

/* ==============================
   PODCAST
============================== */

#podcast {
    text-align: center;
    padding: clamp(3rem, 8vw, 5rem) 1.5rem;
    min-height: 100svh;
}

#podcast h2 {
    font-size: clamp(3rem, 7vw, 5.3rem);
    color: white;
    font-family: 'BebasNeueProBold';
}

#Spotify_Logo {
    width: clamp(6rem, 15vw, 10rem);
    margin: 2rem auto;
}

.episode-list {
    max-width: 56.25rem;
    margin: auto;
    color: white;
    
}
episode-title{
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 0.5rem;
    color: white;
}

audio {
    width: 100%;
    height: 2.5rem;
    border-radius: 0.5rem;
}
.episode-item {
  height: auto;
  display: block;
}
/* YOUTUBE PODCAST*/
.video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 20px auto;
  padding-bottom: 56.25%; /* Proporción 16:9 */
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* ==============================
   IMAGEN PODCAST
============================== */

#imagen-podcast {
    width: 100vw;              /* ancho total de la ventana */
    height: 30vw;
    aspect-ratio: 16 / 9;      /* ajusta a la proporción real de tu imagen */
    background-image: url('../images/Imagenes-web/Foto-2-temporada_miniatura/1.png');
    background-size: contain;  /* evita zoom */
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 2.5rem;
}

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

footer {
    padding: clamp(2rem, 5vw, 3rem) 1.5rem;
    text-align: center;
}

.footer-iconos {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 3vw, 1.5rem);
}

.imagenes-footer {
    width: clamp(1.5rem, 4vw, 1.875rem);
}

#div-footer {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: clamp(1.5rem, 5vw, 2.5rem);
    flex-wrap: wrap;
}

#div-footer a {
    color: white;
    font-family: 'Public Sans Bold';
    text-decoration: none;
    font-size: clamp(0.75rem, 2vw, 0.95rem);
}

/* ==============================
   📱 MOBILE (refuerzo)
============================== */

@media (max-width: 768px) {

    .contenido-espacio {
        flex-direction: column;
        text-align: center;
    }

    .imagen-espacio {
        margin-top: 2rem;
    }
}
