/* ✨ --- FONTS --- ✨ */
@import url('https://fonts.googleapis.com/css2?family=Wendy+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bubblegum+Sans&display=swap');

/* ✨ --- VARIABLES --- ✨ */
:root {
  --primary-accent: #46CEB6;
  /* Color principal */
  --secondary-100: #AC2384;
  /* Color secundario */
  --third-100: #FF8B16;
  /*color terciario*/
  --font-base: "Bubblegum Sans", sans-serif;
  /* Fuente principal */
  --font-tittle: "Wendy One", sans-serif;
  /*Fuente Titulos*/
  --transition: all 0.5s ease;
  /* Transición suave de 0.5s */
}

/* SECCIONES */
body {
  font-family: var(--font-base);
  /* Usa la fuente base */
  line-height: 1.7;
  /* Altura de línea */
  color: var(--secondary-100);
  /* Color del texto */
  font-size: 30px;
}

img {
  max-width: 100%;
  /* Imagenes adaptables al contenedor */
  height: auto;
  /* Mantiene la proporción de altura */
}

.section-padding {
  padding-top: 140px;
  /* Espaciado superior */
  padding-bottom: 140px;
  /* Espaciado inferior */
}

/* NAVBAR */

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 8px;
  position: relative;
  gap: 160px;
  flex-wrap: wrap;
}

.navbar-logo {
  position: relative;
  z-index: 1;
}

.navbar-logo img {
  height: 70px;
}

.navbar-links {
  display: flex;
  gap: 160px;
}

.navbar-links a {
  font-size: 18px;
  text-decoration: none;
  color: #AC2384;
  font-weight: 600;
}



/* HERO */
.heroFoto {
  height: 100vh;
  width: 100%;
  background: url('../imagenes/vcdlm_pagina.png') no-repeat center center;
  background-size: cover;
  background-attachment: scroll;
  /* Evita efectos parallax en móvil */
}

.boton-historia {}


/*Quienes somos*/
.introduccion {
  background-color: white;
  padding: 18px 0px;
  text-align: center;

}

.introduccion h1 {
  color: #FF8B16;
  font-size: 100px;
}


/* PROGRAMAS */

.programas {
  text-align: center;
  color: #FF8B16;
}

/* PROGRAM PAGE STYLES */
.program-page {
  max-width: 700px;
  margin: 40px auto 60px auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(172, 35, 132, 0.08);
  padding: 32px 24px 40px 24px;
}

.program-page header h1 {
  font-family: var(--font-tittle);
  color: var(--third-100);
  font-size: 2.5rem;
  margin-bottom: 18px;
  text-align: center;
}

.program-desc {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 24px;
  text-align: center;
}

.program-carousel {
  margin: 0 auto 24px auto;
  max-width: 480px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(70, 206, 182, 0.12);
}

.program-carousel img {
  max-height: 260px;
  object-fit: cover;
  border-radius: 18px;
}

@media (max-width: 600px) {
  .program-page {
    padding: 12px 2vw;
  }

  .program-carousel img {
    max-height: 160px;
  }

  .program-page header h1 {
    font-size: 1.5rem;
  }
}