* {
    box-sizing: border-box;
}

/*GENERALES*/

.fixed-vertical {
    position: fixed;
    top: 25%;
    left: 1px;
    display: flex;
    flex-direction: column;
    z-index: 1500;
    margin-right: 10px;
}

.fixed-vertical a {
    margin: 30% 0;
}

.social-icon i {
    font-size: 30px;
    color: #E7D65F;
    transition: all 1s ease 0s;
}

.social-icon:hover i {
    color: #000;
    transform: scale(1.2);
}

.whatsapp-btn {
    position: fixed;
    bottom: 80px;
    right: 2px;
    z-index: 1000;
    transition: all 1s ease 0s;
    border-radius: 30%;
}

.btn {
    border-radius: 10px;
}

.whatsapp-btn img {
    width: 40px;
    height: auto;
    animation: zoomInOut 2s infinite;
    transform-origin: center;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.whatsapp-btn a span {
    display: none;
    border-radius: 20%;
}


.whatsapp-btn a:hover span {
    display: inline-block;
    transform: translateX(10px);
}

/*header*/

#header {
    background: radial-gradient(circle at center, #ffffff -100%, #163887 50%, #163887 100%);
    z-index: 100;
    width: 100%;
}

.header-cta {
    padding: 14px 10px 18px;
    background: linear-gradient(90deg, rgba(15, 39, 98, 0.95), rgba(23, 58, 138, 0.95));
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-title {
    color: #ffd34d;
    font-size: clamp(1.5rem, 3.8vw, 2.6rem);
    font-weight: 900;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 211, 77, 0.45);
    animation: ctaPulse 1.2s ease-in-out infinite;
}

.cta-actions a {
    display: inline-block;
    text-decoration: none;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-call-btn {
    background: #ffd34d;
    color: #0f2762;
}

.cta-wa-btn {
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    animation: waPulse 1.5s infinite;
}

.cta-actions a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
    text-decoration: none;
}

@keyframes ctaPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}

@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.65);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

#main-web {
    padding-top: 90px;
}


.navbar-expand-lg .navbar-collapse .nav-item .nav-link {
    color: #fff;
    font-size: 18px;
}

.navbar-expand-lg .navbar-collapse .nav-item .nav-link:hover {
    color: #53be15;
}

#navbarNavDropdown {
    justify-content: flex-end;
}

.nav-item {
    margin-right: 30px;
}

.navbar-toggler {
    background-color: #C8A636;
}

.navbar-brand img {
    width: 100px;
    height: auto;
    justify-content: flex-end;
}

#imagen-contenedor {
    position: relative;
    top: 0;
}

#imagen-contenedor img {
    width: 100%;
    height: auto;
}

/*TEXTO INICIO*/
#title {
    animation: zoomIn 2s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

/* Animación de cambio de color para h2 */
.elegirnos {
    animation: colorChange 4s ease-in-out infinite;
    /* Ajusta la duración y el tipo de animación */
}

@keyframes colorChange {
    0% {
        color: #000;
    }

    50% {
        color: #FFD700;
        /* Cambia a un color dorado */
    }

    100% {
        color: #000;
    }
}

.integrantes-indicator p {
    font-size: 11px;
}

/*SWIPER IMAGENES*/

.swiper {
    width: 100%;
    padding: 0 0 100px 0;
    background-repeat: no-repeat;
}

.swiper-slide {
    width: 320px !important;
    height: 600px !important;
    background-size: cover;
    border-radius: 15px !important;

}

.product-img {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 5px;
}

.product-img i {
    font-size: 20px;
    color: #C8A636;
}

.product-txt h3 {
    font-size: 22;
    color: #ffffff;
    text-transform: uppercase;
    background: radial-gradient(circle at center, #ffffff -100%, #163887 50%, #163887 100%);
    border-radius: 20px;
    position: relative;
    top: 180px;
}

.btn-1 {
    display: block;
    width: fit-content;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 30px;
    border: 2px #53be15;
    color: #ffffff;
    background: radial-gradient(circle at center, #ffffff -100%, #163887 50%, #163887 100%);
    position: relative;
    top: 200px;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 1s ease 0s;
}

.btn-1:hover {
    text-decoration: none;
    color: #000;
    background: #53be15;
}

/*NOSOTROS*/

.nosotros h2 {
    position: relative;
    padding-top: 130px;
}

.img-nosotros {
    overflow: hidden;
}

.img-nosotros img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
}


.text,
.text-2 {
    font-size: clamp(.5em, 2vw, 2em)
}

/* Estilos CSS para la animación */
.hidden {
    opacity: 0;
    transform: translateY(20px);
    /* Desplaza el texto ligeramente hacia abajo */
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 2s ease-in-out, transform 2s ease-in-out;
    /* Transición suave */
}

.img-nosotros img {
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.img-nosotros img.fade-in {
    opacity: 1;
}


/*CUMPLEANOS*/
.table-title h2 {
    position: relative;
    padding-top: 130px;
}

.table-container {
    display: flex;
    margin-top: 20px;
}

table {
    table-layout: fixed;
    align-self: center;
    width: 100%;
    box-shadow: 0px 0px 10px 7px rgba(0, 0, 0, 0.3);
}

th {
    text-align: center;
    width: 50%;
}

td {
    padding: 10px;
    width: 50%;
}

audio::-webkit-media-controls {
    display: none !important;
    -webkit-appearance: none;
}

.reproductor {
    width: 100%;
    height: 40px;
    background: radial-gradient(circle at center, #ffffff -100%, #163887 50%, #163887 100%);
    border-radius: 20px;
    /* Bordes redondeados */
    display: flex;
    align-items: center;
    padding: 0 10px;
}

button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    cursor: pointer;
}

.boton-play-pausa {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #4CAF50;
    cursor: pointer;
}

.boton-play-pausa.pausa {
    width: 20px;
    /* Ajusta el tamaño del cuadrado */
    height: 20px;
    border: none;
    background-color: #f44336;
}

.barra-progreso {
    flex-grow: 1;
    /* Ocupa el espacio restante */
    height: 5px;
    background-color: #f0f0f0;
    /* Gris claro */
    margin: 0 10px;
    border-radius: 5px;
    cursor: pointer;
}

.progreso-actual {
    height: 100%;
    background-color: #FF9800;
    width: 35%;
    border-radius: 5px;
    transition: width 0.1s;
    cursor: pointer;
    transition: width 0.1s;
    position: relative;
}

.progreso-actual::after {
    content: "";
    background: radial-gradient(circle at center, #ffffff -100%, #53be15 50%, #53be15 100%);
    cursor: pointer;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}


/*FOOTER*/

footer {
    font-size: 12px;
    background: radial-gradient(circle at center, #ffffff -100%, #163887 50%, #163887 100%);
    color: #fff;
    margin-top: 30px;
}



.col-md-4 {
    flex: 1;
    text-align: center;
}

.fast-links {
    margin: 0 5px;
    border-bottom: 1px solid #53be15;
    margin-bottom: 20px;
}

.fast-links a {
    color: #fff;

}

.fast-links a:hover {
    color: #53be15;
    text-decoration: none;
}

.siguenos {
    border-bottom: 1px solid #53be15;
    margin-bottom: 5px;
}

.text-mariachi {
    border-bottom: 1px solid #53be15;
    margin-bottom: 5px;
}


.siguenos a {
    display: inline-block;
    margin: 0 10px;
    padding: 10px 0;
    color: #fff;
}

.siguenos a:hover {
    text-decoration: none;
    color: #53be15;
}

.social-footer {
    display: flex;
    justify-content: center;
}

#copyright p {
    margin-top: 0;
    margin-bottom: 0;
    padding: 10px;
}

/* Fondo diferenciado para box de videos en todos los tamaños */
.video-card {
    background-color: #2f5fb8;
    border: 1px solid #4f7cc9;
    border-radius: 14px;
    padding: 12px;
}

.gallery-photo {
    height: 250px;
    object-fit: cover;
}

.image-modal-body {
    position: relative;
    padding: 0 56px;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.85);
    background: rgba(22, 56, 135, 0.72);
    color: #ffffff;
    font-size: 38px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    z-index: 2;
    transition: all 0.2s ease;
}

.gallery-nav-btn:hover {
    background: rgba(79, 124, 201, 0.92);
    border-color: #E7D65F;
    color: #E7D65F;
}

.gallery-nav-prev {
    left: 10px;
}

.gallery-nav-next {
    right: 10px;
}

@media screen and (max-width: 575px) {
    .image-modal-body {
        padding: 0 44px;
    }

    .gallery-nav-btn {
        width: 46px;
        height: 46px;
        font-size: 30px;
    }
}

@media screen and (min-width: 500px) {
    .row-foot {
        display: flex;
        padding: 15px 50px;
        justify-content: space-between;
    }

    .fast-links {
        margin: 0 5px;
        border-left: 1px solid #53be15;
        border-right: 1px solid #53be15;
        border-bottom: none;
    }

    .siguenos {
        border-right: 1px solid #53be15;
        border-bottom: none;
    }

    .text-mariachi {
        border-left: 1px solid #53be15;
        border-bottom: none;
    }
}

@media screen and (min-width: 900px) {

    .whatsapp-btn img {
        width: 60px;
        height: auto;
        animation: zoomInOut 2s infinite;
        transform-origin: center;
    }

    .fixed-vertical {
        position: fixed;
        top: 25%;
        left: 5px;
        display: flex;
        flex-direction: column;
        z-index: 1500;
    }

    .fixed-vertical a {
        margin-bottom: 80%;
    }

    .social-icon i {
        font-size: 60px;
    }

    #header {
        background: radial-gradient(circle at center, #ffffff -100%, #163887 50%, #163887 100%);
        z-index: 100;
        width: 100%;
    }

    .navbar-expand-lg .navbar-collapse .nav-item .nav-link {
        color: #fff;
        font-size: 30px;
    }

    .navbar-brand img {
        width: 200px;
        height: auto;
    }

    /*CAROUSEL*/
    .carousel-item {
        width: 800px;
        height: 600px;
        object-fit: cover;
    }

    .table-title h2,
    .nosotros h2 {
        position: relative;
        padding-top: 240px;
    }

    /* VIDEO GALLERY STYLES - Moved from videos.html - Updated play-overlay contrast */
    .video-card {
        cursor: pointer;
        transition: all 0.3s ease;
        background-color: #2f5fb8;
        border: 1px solid #4f7cc9;
        border-radius: 14px;
        padding: 12px;
    }

    .video-card:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(83, 190, 21, 0.5) !important;
    }

    .play-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(255, 255, 255, 0.95);
        color: #333;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        border: 3px solid rgba(231, 214, 95, 0.8);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .video-card:hover .play-overlay {
        background: rgba(231, 214, 95, 0.98);
        color: #333;
        transform: translate(-50%, -50%) scale(1.1);
    }

    .text-gold {
        color: #E7D65F !important;
    }

    .video-gallery {
        background: radial-gradient(circle at center, #ffffff -100%, #163887 50%, #163887 100%);
        color: white;
        border-radius: 20px;
        margin: 2rem;
        padding: 3rem 1rem !important;
    }

    .video-card:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(200, 166, 54, 0.5) !important;
    }

    .play-overlay {
        background: rgba(255, 255, 255, 0.95);
        color: #333;
        border: 3px solid rgba(231, 214, 95, 0.8);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .video-card:hover .play-overlay {
        background: rgba(231, 214, 95, 0.98);
        color: #333;
    }

}