@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&family=Oswald:wght@200..700&family=Signika:wght@300..700&family=Viga&display=swap');
    
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #ffffff; /* Fondo general opcional */
    font-family: 'Anton', sans-serif;
}

header {
    width: 100%;
    height: 143px;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
}

.header-bg {
    width: 100%;
    height: 100%;
    position: relative;
    background: #ffffff;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
    transition: background-color 0.8s ease-in-out, background-image 0.8s ease-in-out, opacity 0.5s ease-in-out;
}

.header-bg.fade-out { opacity: 0; }
.header-bg.fade-in { opacity: 1; }
.header-bg.autumn {
    background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1600&q=80') no-repeat center/cover;
}

.title {
    font-size: 1.9rem;
    letter-spacing: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: opacity 2s ease-in-out;
}

.title.hidden { opacity: 0; }

.flame {color: #ff6600; animation: pulse 2s infinite;}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.phrase {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.phrase.visible { opacity: 1; }

/* 🍂 Hojas con emoji */
.leaf {
    position: absolute;
    top: -50px;
    font-size: 2rem; /* tamaño del emoji */
    pointer-events: none;
    opacity: 0.9;
    animation: fall 7s linear forwards;
}

@keyframes fall {
    0% { transform: translateY(-50px) rotate(0deg); opacity: 1; }
    100% { transform: translateY(350px) rotate(720deg); opacity: 0; }
}


/* ESTILOS BASE (El diseño original)
   Las animaciones se aplicarán a este contenedor.
*/

.animado-foco {
    animation: aparecerPop 0.8s ease-out forwards;
}

@keyframes aparecerPop {
    0% { opacity: 0; transform: scale(0.8); }
    80% { opacity: 1; transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* --- Efecto de Brillo/Reflejo (Shiny Effect) --- */


@keyframes brillo {
    0% { left: -75%; }
    100% { left: 125%; } 
}


    

    /* NAVBAR */
.navbar {
  width: 100%;
  background-color: #1a1a1a; /* Color de fondo de la barra */
  display: flex;
  justify-content: center; /* centra los enlaces */
  gap: 30px; /* espacio entre enlaces */
  padding: 12px 0;
}

.navbar a {
  color: #ffffff; /* color de los enlaces */
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #ff6600; /* color al pasar el mouse */
}

/* Línea delgada separadora */
.separator {
  width: 100%;
  height: 1px; /* grosor de la línea */
  background-color: #ffffff; /* color de la línea */
  opacity: 0.3; /* para que sea sutil */
  margin: 0; /* sin margen extra */
}

.slider {
  width: 100%;
  max-width: 100%;
  height: 550px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  background-color: #000;
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.slides > * {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.slides > * img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Botones */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 10px 18px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 50%;
  user-select: none;
  z-index: 10;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Puntos indicadores */
.dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #fff;
}

.slide-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.live-button {
  position: absolute;
  top: 50%;
  left: 80%;
  z-index: 5;
  width: 200px;
  margin-left: -70%;
}

.live-button button {
  background-color: #ff6600;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 20px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transition: transform 0.3s, background-color 0.3s;
}

.live-button button:hover {
  background-color: #ff4500;
  transform: scale(1.1);
}

.animado-foco {
    /* Estilos base para el texto */
    font-size: 3em; /* Hazlo grande para que se note */
    color: #4CAF50; /* Un color vibrante */
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.253); /* Sombra sutil */
    
    /* Propiedades de animación */
    animation: aparecerPop 0.8s ease-out forwards; /* La animación de carga */
    position: relative; /* Necesario para el pseudoelemento */
    overflow: hidden; /* Oculta el brillo antes y después */
}

/* Animación de carga: El título 'aparece' con un pequeño rebote */
@keyframes aparecerPop {
    0% { opacity: 0; transform: scale(0.8); }
    80% { opacity: 1; transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* --- Efecto de Brillo/Reflejo (Shiny Effect) --- */
.animado-foco::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%; /* Empieza fuera de vista */
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg); /* Inclina el brillo */
    animation: brillo 3s infinite 1s; /* Animación de brillo: 3s de duración, se repite, empieza 1s después */
}

@keyframes brillo {
    0% { left: -75%; }
    100% { left: 125%; } /* Termina fuera de vista por el lado derecho */
}

/* ---------------------------------------------------- */
/* --- AJUSTES PARA EL SLIDER Y LA RADIO (MAX PRIORIDAD) --- */
/* ---------------------------------------------------- */

/* Estilos específicos para el slide de la radio (primer slide) */
.slider .slides .slide-content.radio-slide {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 5%;
    box-sizing: border-box;
    color: white; 
    position: relative; 
    /* Fondo del primer slide */
    background: url('../IMG/fondo1.jpg') no-repeat center center/cover;
}

/* Contenedor del Texto y Controles */
.radio-content-container {
    max-width: 60%;
    z-index: 10;
}


/* ---------------------------------------------------- */
/* --- TEXTOS PRINCIPALES DE LA RADIO (TAMAÑO REDUCIDO) --- */
/* ---------------------------------------------------- */

.radio-content-container .logo-tag {
    background-color: #d11e1e;
    letter-spacing: 2px;
    color: white;
    padding: 3px 10px; /* Reducción */
    font-weight: bold;
    font-size: 1.8rem; /* Reducción */
    display: inline-block;
    margin-bottom: 15px;
    font-family: 'Viga', sans-serif;
    border-radius: 10px;
}

/* VIVE LA MÚSICA */
.radio-content-container .main-text-slider {
    font-size: 3.2rem; /* TAMAÑO MUY REDUCIDO */
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
    font-family: 'Anton', sans-serif;
}

/* QUE INSPIRA */
.radio-content-container .sub-text-slider {
    font-size: 4.5rem; /* TAMAÑO MUY REDUCIDO */
    font-weight: 900;
    color: #ffc950;
    line-height: 1;
    margin-top: 5px;
    margin-bottom: 30px; 
    text-transform: uppercase;
    font-family: 'Anton', sans-serif;
}


/* ---------------------------------------------------- */
/* --- INFORMACIÓN DE LA CANCIÓN (NOW PLAYING) --- */
/* ---------------------------------------------------- */
.radio-content-container .now-playing-container {
    display: flex;
    align-items: center;
    gap: 15px; /* Espacio reducido */
    margin-bottom: 20px; 
    max-width: 400px;
    opacity: 0; 
    transition: opacity 0.5s ease-in-out;
}

.radio-content-container .now-playing-container.visible {
    opacity: 1;
}

.radio-content-container .album-art {
    width: 60px; /* TAMAÑO REDUCIDO */
    height: 60px;
    object-fit: cover;
    border-radius: 4px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.radio-content-container .song-status {
    color: #ffc950; 
    font-size: 1.2rem; /* TAMAÑO REDUCIDO */
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
    font-family: 'Bebas Neue', sans-serif;
}

.radio-content-container .song-title {
    color: white;
    font-size: 1.0rem; /* TAMAÑO REDUCIDO */
    font-weight: 600;
    margin: 5px 0 0 0;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}


/* ---------------------------------------------------- */
/* --- CONTROLES Y BOTÓN PLAY/PAUSE (Aparecerá ahora) --- */
/* ---------------------------------------------------- */
.radio-content-container .controls-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.radio-content-container .play-button {
    background: none;
    border: 2px solid white; /* Borde más delgado */
    border-radius: 50%;
    width: 50px; /* TAMAÑO REDUCIDO */
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s;
    outline: none; 
}

.radio-content-container .play-button i {
    color: white;
    font-size: 1.5rem; /* TAMAÑO REDUCIDO */
    margin-left: 5px; 
}

.radio-content-container .play-button i.fa-pause {
    margin-left: 0; 
}


/* ---------------------------------------------------- */
/* --- ECUALIZADOR (Ahora visible y más grande) --- */
/* ---------------------------------------------------- */
.radio-content-container .equalizer {
    display: flex;
    align-items: flex-end; 
    height: 40px; /* Altura aumentada (de 30px a 40px) */
    width: 40px; /* Ancho aumentado (de 30px a 40px) */
    justify-content: space-between;
    opacity: 0; /* Sigue oculto inicialmente */
    transition: opacity 0.3s ease-in-out; 
    /* IMPORTANTE: Aseguramos que está en una capa superior */
    z-index: 5; 
}

.radio-content-container .equalizer.active {
    opacity: 1 !important; /* Fuerza la visibilidad */
}

.radio-content-container .equalizer .bar {
    width: 6px; /* Ancho de barra ajustado para el nuevo tamaño */
    background-color: #ffc950; 
    animation-duration: 0.8s; 
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite; 
    border-radius: 1px;
}

/* ASIGNACIÓN CRÍTICA: Cada barra debe tener su propio 'animation-name' */
.radio-content-container .equalizer .bar-1 { animation-name: equalize1; }
.radio-content-container .equalizer .bar-2 { animation-name: equalize2; }
.radio-content-container .equalizer .bar-3 { animation-name: equalize3; }
.radio-content-container .equalizer .bar-4 { animation-name: equalize4; }


/* ---------------------------------------------------- */
/* --- KEYFRAMES (Definiciones de la animación) --- */
/* ---------------------------------------------------- */
@keyframes equalize1 {
    0%, 100% { height: 20%; } 25% { height: 60%; } 50% { height: 40%; } 75% { height: 80%; }
}
@keyframes equalize2 {
    0%, 100% { height: 50%; } 25% { height: 90%; } 50% { height: 30%; } 75% { height: 70%; }
}
@keyframes equalize3 {
    0%, 100% { height: 30%; } 25% { height: 70%; } 50% { height: 50%; } 75% { height: 90%; }
}
@keyframes equalize4 {
    0%, 100% { height: 70%; } 25% { height: 40%; } 50% { height: 80%; } 75% { height: 60%; }
}

/* ---------------------------------------------------- */
/* --- VISUAL DEL MICRÓFONO --- */
/* ---------------------------------------------------- */
.microphone-visual-slider {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40%; 
    height: 100%; 
    background: url('../IMG/microfono.png') no-repeat bottom right; 
    background-size: contain; 
    pointer-events: none; 
}

/* ---------------------------------------------------- */
/* --- SLIDE DE PROMOCIÓN DE LA APP (PLAY STORE) --- */
/* ---------------------------------------------------- */

/* Configuración del fondo del nuevo slide */
.slider .slides .slide-content.playstore-slide {
    /* Eliminamos el centrado */
    display: block; 
    justify-content: initial; 
    align-items: initial; 
    
    width: 100%;
    height: 100%;
    position: relative; 
    
    /* Usa la imagen de fondo que subiste */
    background: url('../IMG/fondo_play_store.png') no-repeat center center/cover;
}

/* Contenedor del Botón: Posicionado en la esquina inferior izquierda */
.playstore-container {
    /* Usamos posicionamiento absoluto dentro del slide */
    position: absolute;
    bottom: 90px; /* Separación del borde inferior (ajusta este valor) */
    left: 80px;  /* Separación del borde izquierdo (ajusta este valor) */

    /* Eliminamos el fondo y el padding del contenedor */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Alinea el texto/botón a la izquierda */
    padding: 0;
    background-color: transparent; /* SIN FONDO */
    border-radius: 0;
    z-index: 15; /* Aseguramos que esté encima de todo */
}

/* Título Promocional (Ajustado al color blanco y margen) */
.app-promo-text {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px; /* Reducimos el margen */
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    /* El color blanco debería verse bien sobre el fondo morado de la imagen */
}

/* Estilos de la imagen del botón */
.playstore-container .playstore-icon {
    width: 200px; /* Tamaño por defecto para desktop */
    height: auto;
    object-fit: contain;
}

/* Adaptación para móviles: reduce el tamaño del botón y lo separa menos */
@media (max-width: 600px) {
    .playstore-container {
        bottom: 15px; /* Menos separación del fondo en móvil */
        left: 20px;  /* Menos separación de la izquierda en móvil */
    }
    .playstore-container .playstore-icon {
        width: 150px;
    }
    .app-promo-text {
        font-size: 1.2rem;
    }
}

/* ---------------------------------------------------- */
/* --- SECCIÓN MUNDO JOVEN (TARJETAS) --- */
/* ---------------------------------------------------- */

.mundo-joven-section {
    padding: 60px 0;
    background-color: #f4f4f4; /* Fondo claro para contraste */
    min-height: 400px;
}

.mundo-joven-section .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Títulos de la Sección */
.section-title {
    font-family: 'Anton', sans-serif;
    font-size: 2.8rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 5px;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

/* Grid de Artículos */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 3 columnas en desktop, se adapta en móvil */
    gap: 30px;
}

.article-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden; /* Corta la imagen */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.card-image {
    height: 180px;
    background-size: cover;
    background-position: center;
}

/* Fondos de ejemplo para las tarjetas (reemplaza con tus propias imágenes) */
.music-image {
    background-image: url('../IMG/NOTICIA1.jpg');
}
.faith-image {
    background-image: url('../IMG/NOTICIA2.jpg');
}
.event-image {
    background-image: url('../IMG/NOTICIA3.jpg');
}

.card-content {
    padding: 20px;
}

.card-tag {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    padding: 4px 8px;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

/* Colores de las etiquetas */
.tag-music { background-color: #CF1212; }
.tag-faith { background-color: #ffc950; color: #1a1a1a; }
.tag-event { background-color: #1a1a1a; }

.card-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.card-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    font-family: 'Montserrat', sans-serif;
    color: #CF1212;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: #ff6600;
}

/* MEDIA QUERY: Adaptación básica a tabletas y móviles */
@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr; /* Una sola columna en móvil */
    }
    .section-title {
        font-size: 2rem;
    }
}


/* ---------------------------------------------------- */
/* --- SECCIÓN DONACIONES (IMPULSA LA MISIÓN) --- */
/* ---------------------------------------------------- */

.donaciones-section {
    padding: 80px 20px;
    color: white;
    text-align: center;
    position: relative;
    
    /* --- FONDO ANIMADO DE GRADIENTE --- */
    background: linear-gradient(-45deg, #1a1a1a, #2a2a2a, #333333, #1a1a1a); /* Los colores oscuros de tu paleta */
    background-size: 400% 400%; /* Tamaño grande para que la animación sea fluida */
    animation: gradientShift 15s ease infinite; /* Aplica el nombre de la animación */
    background-color: #1a1a1a; /* Reserva para navegadores sin soporte */
    /* ---------------------------------- */
}

.donaciones-content-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.donaciones-title {
    font-family: 'Fjalla One', sans-serif;
    font-size: 3.5rem;
    color: #ffc950; /* Color de acento (amarillo/oro) */
    margin-bottom: 15px;
    text-transform: uppercase;
}

.donaciones-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ccc;
}

/* Puntos de Impacto */
.impact-points {
    background-color: #2a2a2a; /* Fondo ligeramente más oscuro para el listado */
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.impact-points p {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.impact-points ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Para adaptación en móvil */
    gap: 15px;
}

.impact-points li {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #ffc950;
    display: flex;
    align-items: center;
}

.impact-points li i {
    margin-right: 10px;
    font-size: 1.3rem;
    color: #45B8FF; /* Color de acento principal */
}

/* Botón de Donar */
.donar-button {
    display: inline-block;
    background-color: #45B8FF; /* Color rojo fuerte */
    color: white;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 6px 15px rgba(69, 184, 255, 0.4);
}

.donar-button:hover {
    background-color: #0099e0;
    transform: translateY(-2px);
}

.donaciones-agradecimiento {
    font-family: 'Montserrat', sans-serif;
    margin-top: 30px;
    font-size: 1rem;
    font-style: italic;
    color: #999;
}

/* Media Query para Moviles */
@media (max-width: 600px) {
    .donaciones-title {
        font-size: 2.5rem;
    }
    .donaciones-subtitle {
        font-size: 1rem;
    }
    .impact-points ul {
        flex-direction: column;
    }
    .donar-button {
        font-size: 1.2rem;
        padding: 12px 30px;
    }
}



/* --- AÑADIR/SOBREESCRIBIR REGLAS DE BOTÓN Y LISTA --- */

/* Es importante que el botón ocupe todo el ancho de su contenedor */
.donar-button {
    /* Mantenemos tus estilos base... */
    display: inline-block;
    background-color: #CF1212; 
    /* ...etc... */
    margin-top: 15px; 
    width: 100%; /* <<-- ESTO ES CLAVE -->> */
}


/* --- NUEVOS PASOS DE GUÍA --- */
.donacion-steps {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 50px;
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

.donacion-steps .step {
    flex-basis: 30%;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.donacion-steps .step-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: #ffc950;
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.donacion-steps p {
    font-size: 0.95rem;
    color: #ccc;
}

/* --- ESTILOS DE MÉTODOS DE PAGO --- */
.metodos-titulo {
    font-family: 'Fjalla One', sans-serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 30px;
}

.metodo-opcion {
    background-color: #2a2a2a;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: left;
}

.metodo-opcion h4 {
    color: #45B8FF;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

.metodo-opcion p {
    color: #aaa;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}


/* --- ESTILOS DE DATOS BANCARIOS (Oculto inicialmente) --- */
.datos-ocultos {
    background-color: #1a1a1a;
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
    display: none; /* INICIA OCULTO con JavaScript */
    border: 1px solid #ffc950;
}

.datos-ocultos .datos-titulo {
    color: #ffc950 !important;
    font-weight: bold;
    margin-bottom: 10px !important;
    font-size: 1.1rem;
}

.datos-ocultos p {
    margin: 5px 0 !important;
    color: white !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

.datos-ocultos strong {
    color: #ffc950;
}

.datos-ocultos .nota-yape {
    margin-top: 10px !important;
    color: #CF1212 !important;
    font-style: italic;
}

/* ---------------------------------------------------- */
/* --- FOOTER ELEGANTE --- */
/* ---------------------------------------------------- */

.main-footer {
    background-color: #1a1a1a; /* Fondo oscuro (consistente) */
    color: #ccc;
    padding: 40px 0 10px 0;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap; /* Permite que las columnas bajen en móvil */
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 30px;
    border-bottom: 1px solid #333; /* Línea separadora elegante */
}

.footer-column {
    margin-bottom: 30px;
    /* Ancho por defecto para 4 columnas en desktop */
    flex-basis: 22%; 
}

/* Títulos de las Columnas */
.main-footer h4 {
    color: #ffc950; /* Color de acento (Dorado) */
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

/* LOGO Y MISIÓN */
.footer-brand .footer-logo {
    color: white;
    font-size: 1.8rem;
    letter-spacing: 3px;
}

.footer-brand .brand-mission {
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-style: italic;
    color: #aaa;
}

/* ENLACES Y RECURSOS */
.footer-links ul,
.footer-resources ul {
    list-style: none;
    padding: 0;
}

.footer-links a,
.footer-resources a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 2.2; /* Espacio entre enlaces */
    transition: color 0.2s;
}

.footer-links a:hover,
.footer-resources a:hover {
    color: #CF1212; /* Color de acento (Rojo) al pasar el ratón */
}

/* CONTACTO */
.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ICONOS SOCIALES */
.footer-social a {
    color: white;
    font-size: 1.4rem;
    margin-right: 15px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #45B8FF; /* Azul Eléctrico para el hover de RRSS */
}

/* DERECHOS DE AUTOR */
.footer-bottom {
    text-align: center;
    padding: 20px 0 10px 0;
    font-size: 0.8rem;
    color: #888;
}

.footer-bottom .footer-design {
    margin-top: 5px;
}

.footer-bottom .footer-design i {
    color: #CF1212;
    margin: 0 3px;
}

/* MEDIA QUERY: Adaptación para Móviles y Tabletas */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
    .footer-column {
        flex-basis: 100%; /* Una columna por fila */
        text-align: center;
    }
    .footer-brand .brand-mission {
        max-width: 80%;
        margin: 0 auto 20px auto;
    }
    .footer-links ul,
    .footer-resources ul {
        /* Centrar los enlaces en móvil */
        width: max-content;
        margin: 0 auto;
    }
    .footer-links a,
    .footer-resources a {
        display: block; /* Para que ocupen su propia línea */
    }
    .footer-social {
        margin-top: 15px;
    }
}

