body {
    background-color: #FFD700; /* Fondo amarillo */
    font-family: Arial, sans-serif;
}

/* Menú superior derecha */
.top-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.top-menu a {
    color: #000; /* negro fijo */
    font-weight: bold;
    text-decoration: none;
    margin-left: 15px;
    font-size: 1.2rem;
}

.top-menu a:hover {
    text-decoration: underline;
    color: #3d09cc; /* opcional: cambiar color al pasar mouse */
}

.social-icons a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #333;
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 120px;
    height: 120px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 60px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.whatsapp-float:hover {
    background-color: #20b357;
}

/* Botón grande de WhatsApp */
.btn-whatsapp-large {
    display: inline-block;
    background-color: #25d366; /* Verde WhatsApp */
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    margin: 30px 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.btn-whatsapp-large i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.btn-whatsapp-large:hover {
    background-color: #20b357; /* Verde más oscuro */
    transform: scale(1.05);
}





     /* Social icons */
        .social-icons img {
            width: 50px;
            margin: 10px;
            transition: transform 0.3s ease;
        }
        .social-icons img:hover {
            transform: scale(1.1);
        }

        /* Ajuste del tamaño del carrusel */
        .carousel-inner img {
            max-height: 400px; /* <-- Ajusta este valor para cambiar el tamaño */
            object-fit: contain;
            background-color: #FFD700;
            border-radius: 15px;
        }

        @media (min-width: 768px) {
            .carousel-inner img {
                max-height: 550px; /* Tamaño más grande en pantallas grandes */
            }
        }

    
.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 20px;
}

.gallery img {
    width: 100%; /* Ocupa todo el ancho disponible */
    max-width: 1200px; /* Limita para que no sea exagerado en pantallas muy grandes */
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.02);
}


.gallery img {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

.gallery img:nth-child(1) { animation-delay: 0.2s; }
.gallery img:nth-child(2) { animation-delay: 0.4s; }
.gallery img:nth-child(3) { animation-delay: 0.6s; }
.gallery img:nth-child(4) { animation-delay: 0.8s; }
.gallery img:nth-child(5) { animation-delay: 1s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilo general del menú */
.top-menu a {
    text-decoration: none;
    color: black; /* texto negro para todo el menú */
    margin-left: 15px;
    font-weight: 500;
}

/* Tamaño y comportamiento solo de los íconos */
.top-menu .social-icon img {
    width: 25px;
    transition: transform 0.3s ease; /* solo animación de los logos */
    vertical-align: middle;
}

/* Solo los íconos aumentan 50% */
.top-menu .social-icon img:hover {
    transform: scale(1.5);
}
