

.floating-buttons {
    z-index: 1050;
}
.btn-zenon {
    font-weight: bold;
    font-size: 1.1rem;
    padding: 12px 24px;
    border: none;
    border-radius: 50px; /* tipo pastilla */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-zenon:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.btn-campo {
    background-color: #00bcd4; /* Celeste cielo */
    color: white;
}
.btn-cerdito {
    background-color: #f48fb1; /* Rosa cerdito */
    color: white;
}
/* Colores temáticos */
.btn-gallo { background-color: #ff4d4d; color: white; }     /* Rojo gallo */
.btn-vaca  { background-color: #4caf50; color: white; }     /* Verde vaca */
.btn-caballo { background-color: #fbc02d; color: #333; }    /* Amarillo caballo */

.estrella-gif {
    position: absolute;
    width: 50px;
    height: 50px;
    animation: flotar 3s ease-in-out forwards;
}

@keyframes flotar {
    0% {
        transform: translateY(100vh) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(0.5);
        opacity: 0;
    }
}
#intro-gif {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        opacity: 1;
        transition: opacity 1s ease-in-out;
    }

.gif1 {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.gif2 {
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 100%;
}

.music-button {
    position: fixed;
    bottom: 130px;
    right: 20px;
    background-color: #ff4d4d;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 10000;
    transition: transform 0.3s ease-in-out;
}

.music-button:hover {
    transform: scale(1.8);
}

.music-button.active {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1.5); }
    50% { transform: scale(1.7); }
    100% { transform: scale(1.5); }
}
.location-section {
    background: #f8f9fa;
    padding: 40px 0;
    text-align: center;
}

.location-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.location-info {
    font-size: 1.2rem;
    color: #555;
}

.map-container {
    width: 100%;
    height: 300px;
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.btn-big-map {
    display: inline-block;
    width: 80%;
    max-width: 500px;
    background: #ff4d4d;
    color: white;
    padding: 15px;
    font-size: 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.btn-big-map:hover {
    transform: scale(1.05);
    background: #d43f3f;
}
.event-section {
    background: #fff5e6;
    padding: 40px 0;
    text-align: center;
}

.event-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.event-info {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 10px;
}

.btn-big-event {
    display: inline-block;
    width: 80%;
    max-width: 500px;
    background: #4caf50;
    color: white;
    padding: 15px;
    font-size: 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.btn-big-event:hover {
    transform: scale(1.05);
    background: #388e3c;
}

body {
    font-family: 'Fredoka', sans-serif;
    text-transform: uppercase;
}
.hero {
    position: relative;
    text-align: center;
    color: white;
}
.hero img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* filter: brightness(70%); */
    transition: transform 0.5s ease-in-out;
}
.hero img:hover {
    transform: scale(1.05);
}
.hero-text {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 20px;
}
.hero-text img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.btn-custom {
    background: #007bff;
    color: white;
    transition: 0.3s;
}
.btn-custom:hover {
    background: #0056b3;
}

.confirm-section {
    background: #e3f2fd;
    padding: 40px 0;
    text-align: center;
}

.confirm-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.confirm-info {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
}

.d-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.btn-big-confirm {
    width: 45%;
    max-width: 300px;
    padding: 15px;
    font-size: 1.3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    text-align: center;
}

/* Estilos para móviles: los botones ocupan el 80% en pantallas pequeñas */
@media (max-width: 576px) {
    .btn-big-confirm {
        width: 80%;
    }
}

/* Estilos personalizados para cada botón */
.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
    background: #1ebe57;
}

.btn-email {
    background: #ff9800;
    color: white;
}

.btn-email:hover {
    transform: scale(1.05);
    background: #e68900;
}




.gif-container {
    display: flex;
    justify-content: center;
    margin-top: 20px; /* Espacio entre el contenido y el GIF */
}

.gif-loop {
    width: 100%;
    max-width: 350px; /* Tamaño máximo del GIF */
    border-radius: 20px; /* Bordes redondeados */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Sombra sutil */
}

/* Asegurar que el GIF nunca se detenga */
.gif-loop {
    animation: infinite-gif 1s infinite linear;
}

@keyframes infinite-gif {
    from { opacity: 1; }
    to { opacity: 1; }
}

.img-responsive {
    height: 500px;  /* Altura fija para evitar que las imágenes sean demasiado grandes */
    object-fit: cover; /* Evita que se deformen */
}

.gif-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.gif-loop {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.carousel-control-prev, .carousel-control-next {
    width: 8%;
}

.img-full {
    height: 450px; /* Ajusta la altura para que no se salga del contenedor */
    object-fit: contain; /* Mantiene la imagen completa sin cortes */
    background-color: #ffffff00; /* Fondo blanco para que no se vea vacío */
}

.btn-carousel-custom {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: #ff4d4d; /* Rojo Gallito */
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: white;
    transition: transform 0.2s, background 0.3s;
}

.btn-carousel-custom:hover {
    background-color: #d32f2f;
    transform: scale(1.1);
}

.btn-carousel-custom span i {
    font-size: 1.5rem;
}

/* Posiciones */
.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

@media (max-width: 768px) { /* Para tablets y celulares */
    #yo {
        margin-top: 60px !important;
    }
}

