body {
   
    padding-top: 90px; 

    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    
}

.carrusel {
    width: 100%;
    max-width: 940px;
    aspect-ratio: 16 / 9;
    margin: auto;
    position: relative;
    background: #000;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.activo {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 🔘 Indicadores */
.indicadores {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

.punto {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.punto.activo {
    background: #800020;
}

.flecha {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 30px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
}

.flecha.izquierda {
    left: 10px;
}

.flecha.derecha {
    right: 10px;
}

.flecha:hover {
    background: rgba(0,0,0,0.8);
}



.directorio {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
}

.card-horizontal {
    display: flex;
    align-items: center;
    background: #800040;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.card-horizontal img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

.card-horizontal .info {
    text-align: left;
}

.card-horizontal a {
    color: #cfb975;
    text-decoration: none;
    font-weight: bold;
}


.menu {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px 20px;
    color: white;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: #800040;
    z-index: -1;
}


.menu * {
    position: relative;
    z-index: 1;
}

.menu nav {
    padding-right: 40px;
}


.menu-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-principal {
    display: flex;
}

.menu-principal > li {
    position: relative;
}

.menu-principal a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
}

.menu-principal a:hover {
    background-color: #800040;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #800040;
    min-width: 180px;
    z-index: 10000;
}


.submenu li a {
    padding: 12px;
}


.menu-principal li:hover .submenu {
    display: block;
}


.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 45px;
    height: 45px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

button {
    margin: 5px;
    padding: 10px 15px;
    cursor: pointer;
}

footer {
    background: #800040;
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}

footer {
    background-color: #800040;
    color: white;
    padding: 20px;
    text-align: center;
}

.logos-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.logos-footer img {
    width: 30px; 
    height: auto;     
    object-fit: contain;
}

.contenedor {
    margin: 40px;
}

.contenedor p {
    text-align: justify;   
    margin: 200px; 
}

#eggOverlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    z-index: 999998;
    display: none;
}

#eggText{
    animation: fade 0.4s ease;
}
@keyframes fade{
    from{opacity:0; transform: translateY(-5px);}
    to{opacity:1; transform: translateY(0);}
}

