

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

section {
	padding:120px 0 120px 0;
}

.content {
    position: relative;
    z-index: 10;
}

/* HERO background (asegurarse que esto esté) */
#hero {
    background: linear-gradient(100deg, #004B7E, #000000);
    overflow: hidden;
    position: relative;
}

/* BRILLO SUPERIOR IZQUIERDO TONO AZUL OSCURO */
#hero::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -40%;
    width: 120%;
    height: 120%;
    pointer-events: none;

    background: radial-gradient(
        circle at top left,
        rgba(20, 40, 120, 0.9) 0%,   /* azul oscuro intenso */
        rgba(25, 50, 140, 0.6) 15%,  /* azul profundo */
        rgba(30, 60, 160, 0.3) 35%,  /* azul más claro */
        rgba(30, 60, 160, 0) 50%     /* transparente más rápido */
    );

    filter: blur(180px); /* suavizado */
    opacity: 1;          /* visible */
    z-index: 2;

    animation: glowPulse 6s ease-in-out infinite alternate;
}

/* Animación suave de pulso */
@keyframes glowPulse {
    0% { transform: scale(1) rotate(0deg); opacity: 0.9; }
    50% { transform: scale(1.03) rotate(1deg); opacity: 1; }
    100% { transform: scale(1) rotate(0deg); opacity: 0.9; }
}




/* Imagen superior del título */
.titulo-imagen {
    max-width: 800px;
    width: 100%;
    height: auto;
    margin-bottom: 25px;
}

/* Título principal */
.titulo-principal {
    font-size: 48px;
    line-height: 1.1;
    color: #ffffff;
    font-weight: 700;
}

.titulo-principal span {
    font-weight: 900; /* Mariana más grueso */
}

/* Subtítulo */
.subtitulo-evento {
    font-size: 20px;
    margin-top: 6px;
    color: #eaeaea;
}

/* Línea dorada divisoria */
.linea-dorada {
    width: 60%;
    height: 3px;
    margin: 20px auto;
    background: linear-gradient(90deg,
        rgba(212,175,55,1),
        rgba(212,175,55,0)
    );
    border-radius: 4px;
}

/* Párrafo descriptivo */
.parrafo-descriptivo {
    max-width: 650px;
    margin: 0 auto;
    margin-top: 10px;
    color: #d9d9d9;
    line-height: 1.6;
    font-size: 18px;
    text-align: justify;
	
}


.boton-reconocimiento {
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
	margin-bottom:30px;
}

.boton-reconocimiento:hover {
    transform: translateY(-10px) scale(1.05);
    filter: drop-shadow(0 0 15px rgba(212,175,55,0.7));
}


/* Título del contador */
.contador-titulo {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}

/* Contenedor de cada ítem */
.contador-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Números del contador */
.contador-numero {
    font-size: 54px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

/* Texto inferior */
.contador-label {
    font-size: 18px;
    color: #eaeaea;
    margin-top: 6px;
    text-transform: uppercase;
}

/* Responsivo */
@media (max-width: 768px) {
    .contador-wrapper {
        flex-direction: column;
    }
}


/* Sección del contador */
.contador-seccion {
    margin-top: 60px;
}

/* Título */
.contador-titulo {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
}

.contador-caja {
    width: 130px;
    padding: 20px 10px;
    border: 2px solid rgba(255,255,255,0.85);
    border-radius: 18px;
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;      /* 🔥 Hace que todo vaya uno debajo del otro */
    align-items: center;
    justify-content: center;
    gap: 10px;                   /* Espacio entre los elementos */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Línea dorada dentro del contador */
.contador-linea {
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg,
        rgba(212,175,55,1),
        rgba(212,175,55,0)
    );
    border-radius: 4px;
}

/* Número */
.contador-numero {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

/* Texto */
.contador-label {
    font-size: 16px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Efecto hover */
.contador-caja:hover {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(255,255,255,0.4);
}



/* ======== SECCIÓN CEREMONIA ======== */

.ceremonia-seccion {
    margin-top: 70px;
}

.ceremonia-titulo {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
}

/* Contenedor general */
.ceremonia-container {
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Estrellas decorativas */
.ceremonia-estrella {
    position: absolute;
    width: 150px;              /* ⭐ MÁS GRANDES */
    opacity: 0.95;             /* Más visibles */
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.6));
}

/* 🔥 Estrella izquierda: cercana al texto */
.ceremonia-estrella.izquierda {
    left: -20px;               /* Más cerca */
    top: 50%;
    transform: translateY(-55%);
}

/* 🔥 Estrella derecha: cercana al texto */
.ceremonia-estrella.derecha {
    right: -20px;              /* Más cerca */
    top: 50%;
    transform: translateY(-55%);
}

/* Ítems */
.ceremonia-item {
    text-align: center;
}

.ceremonia-label {
    font-size: 18px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.ceremonia-valor {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* Responsivo */
@media (max-width: 768px) {

    /* Ocultar estrellas para no tapar texto */
    .ceremonia-estrella {
        display: none;
    }

    .ceremonia-valor {
        font-size: 22px;
    }
}



/* ======== LOGO DEL LUGAR ======== */
.logo-lugar {
    max-width: 65px;
    width: 100%;
    filter: drop-shadow(0 0 14px rgba(255,255,255,0.4));
    transition: transform 0.4s ease;
}

.logo-lugar:hover {
    transform: scale(1.05);
}

/* ======== BOTÓN UBICACIÓN ======== */
.btn-ubicacion {
    display: inline-block;
    padding: 12px 35px;
    background: #ffffff;
    color: #000A14;
    font-size: 18px;
    font-weight: 700;
    border-radius: 20px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.35s ease;
    box-shadow: 0 0 14px rgba(255,255,255,0.4);
}

/* Efecto hover */
.btn-ubicacion:hover {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: 0 0 16px rgba(255,255,255,0.6);
    transform: scale(1.07);
}

/* Responsivo */
@media (max-width: 768px) {
    .logo-lugar {
        max-width: 55px;
    }

    .btn-ubicacion {
        font-size: 16px;
        padding: 10px 28px;
    }
}



/* ======== SECCIÓN TRANSMISIÓN EN VIVO ======== */

.transmision-img {
    width: 100%;
    max-width: 800px;        /* Ajustable según tamaño real de tu imagen */
    transition: transform 0.3s ease;
}

.transmision-img:hover {
    transform: scale(1.04);
}


/* ======== CÓDIGO DE VESTIMENTA ======== */
.vestimenta-seccion {
    margin-top: 90px;
    color: #ffffff;
}

.vestimenta-titulo {
    font-size: 34px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

.gala-strong {
    font-weight: 900; /* GALA en negrita 900 */
    font-size: 70px;
}

.vestimenta-item {
    text-align: center;
}

.vestimenta-img {
    width: 100%;
    max-width: 280px;
    height: 400px; /* altura fija para mantener proporción */
    object-fit: contain; /* mantiene la proporción de la imagen */
    filter: drop-shadow(0 0 12px rgba(255,255,255,0.35));
    transition: transform 0.3s ease;
}

.vestimenta-img:hover {
    transform: scale(1.05);
}

.vestimenta-subtitulo {
    font-size: 22px;
    font-weight: 700;
    margin-top: 15px;
}

.vestimenta-texto {
    font-size: 16px;
    margin-top: 8px;
    line-height: 1.6;
    color: #dddddd;
}

.vestimenta-frase {
    width: 100%;
    max-width: 650px;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.45));
}


/* Título final */
.vestimenta-final {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 1px;
}

/* Responsivo */
@media (max-width: 768px) {
    .vestimenta-img {
        max-width: 200px;
        height: 300px; /* ajusta la altura proporcional en móviles */
    }

    .vestimenta-titulo {
        font-size: 26px;
    }

    .vestimenta-final {
        font-size: 26px;
    }
}


.mt-5 {
    margin-top: 5rem !important;
}

/* Animación de fade-in y flip */
@keyframes fadeFlip {
    0% {
        transform: rotateX(90deg);
        opacity: 0;
    }
    50% {
        transform: rotateX(-20deg);
        opacity: 0.5;
    }
    100% {
        transform: rotateX(0deg);
        opacity: 1;
    }
}

.contador-numero {
    display: inline-block;
    min-width: 40px; /* para que no salten los números */
    transition: all 0.3s ease;
}

.contador-numero.animar {
    animation: fadeFlip 0.5s ease forwards;
}


/* Footer discreto y centrado */
.footer-datos {
    padding: 15px 0;
    transition: all 0.3s ease;
    margin-top:90px;
}

/* Logo del footer */
.footer-logo {
    max-width: 400px;
    height: auto;
    filter: brightness(0.85); /* un poco apagado para discreción */
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Efecto al pasar el mouse sobre el logo */
.footer-logo:hover {
    transform: scale(1.05);
    filter: brightness(1); /* ilumina ligeramente */
}

/* Texto del webmaster */
.footer-webmaster {
    font-size: 16px;
    font-weight: 700;
    color: rgb(54 87 110); /* discreto */
    margin-top: 5px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Efecto hover sobre el texto */
.footer-webmaster:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(0, 123, 255, 0.6); /* glow sutil */
}
