﻿body{
    background: url(../images/fondo.jpg) no-repeat center center fixed;
    background-size: cover;
    font-family: "Roboto", sans-serif;
    font-family: "Google Sans", sans-serif;
    text-shadow: 0px 0px 6px black;
    color: white;
}


header{
    background: url(../images/fondo-header.png) no-repeat center center;
    background-size: cover;
    text-align: center;
    padding-top: 12px;
    padding-bottom: 12px;
}


.datos{
    font-size: 26px;
}




.logotipo img{
    width: 100%;
}

.btn-verde{
    background: #2acc46;
    color: white;
    font-size: 22px;
}


.precios{
    text-align: center;
    font-size: 32px;
    line-height: 32px;
    padding-top: 12px;
    padding-bottom: 12px;
}
.precios strong{
    text-shadow: 0px 0px 10px black;
}
.precios span{
    font-size: 20px;
    font-weight: lighter;
}



.contenido{
    margin: 30px 0;
}


.texto{
    font-size: 19px;
    line-height: 29px;
}
.texto h2{
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 20px;
}


.imagen img{
    width: 100%;
}


.titulo{
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 10px;
}

.porque{
    /* box-shadow: 0 0 4px rgba(255, 255, 255, 0.2); */
    font-weight: lighter;
    text-align: center;
    padding: 20px 0;
    margin-bottom: 30px;
}

.porque .col-2{
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.porque strong{
    width: 100%;
    text-align: center;
    display: inline-block;
}
.porque span{
    font-size: 55px;
}



.videos{
    padding-top: 30px;
    padding-bottom: 30px;
}

.video video{
    width: 100%;
}


@media screen and (max-width:1400px){

}

@media screen and (max-width:1200px){

}

@media screen and (max-width:992px){

}

@media screen and (max-width:768px){

}

@media screen and (max-width:576px){
    
}



.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* Base */
.btn-float {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    position: relative;
    transition: all 0.3s ease;
}

/* Icono */
.btn-float b {
    font-size: 18px;
}

/* Hover */
.btn-float:hover {
    transform: translateY(-3px) scale(1.05);
}

/* Colores */
.call {
    background: #0d47a1;
}

.whatsapp {
    background: #25D366;
}

/* 🔥 EFECTO LATIDO REAL (doble onda) */
.btn-float::before,
.btn-float::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: inherit;
    z-index: -1;
    opacity: 0.6;
}

/* Primera onda */
.btn-float::before {
    animation: pulse 2s infinite;
}

/* Segunda onda (desfasada) */
.btn-float::after {
    animation: pulse 2s infinite;
    animation-delay: 1s;
}

/* Animación */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.4);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}




.footer-mariachi{
    background: linear-gradient(135deg, rgba(8, 36, 58, 0.95), rgba(4, 18, 31, 0.98));
    border-top: 3px solid #d4a63f;
    margin-top: 40px;
    padding: 35px 25px 15px;
    color: white;
    text-align: center;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.45);
}

.footer-logo img{
    width: 100%;
    max-width: 190px;
    border-radius: 18px;
    border: 2px solid rgba(212, 166, 63, 0.7);
    box-shadow: 0 0 20px rgba(212, 166, 63, 0.35);
}

.footer-texto h2{
    color: #f3c96b;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-texto p{
    font-size: 20px;
    line-height: 30px;
    max-width: 680px;
    margin: auto;
}

.footer-contacto strong{
    display: block;
    color: #f3c96b;
    font-size: 24px;
    margin-bottom: 12px;
}

.footer-contacto a{
    display: block;
    color: white;
    font-size: 20px;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-contacto a:hover{
    color: #f3c96b;
    transform: scale(1.05);
}

.footer-whatsapp{
    background: #25D366;
    padding: 10px 18px;
    border-radius: 50px;
    display: inline-block !important;
    width: fit-content;
    margin: 12px auto 0;
}

.footer-whatsapp:hover{
    color: white !important;
    background: #1ebe5d;
}

.footer-copy{
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 25px;
    padding-top: 15px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
}

@media screen and (max-width:768px){
    .footer-mariachi{
        padding: 30px 15px 15px;
    }

    .footer-texto{
        margin: 25px 0;
    }

    .footer-texto h2{
        font-size: 26px;
    }

    .footer-texto p{
        font-size: 17px;
        line-height: 26px;
    }

    .footer-contacto a{
        font-size: 18px;
    }
}






.seo-mariachi{
    margin: 35px 0;
    padding: 28px 25px;
    background: linear-gradient(135deg, rgba(8, 36, 58, 0.78), rgba(4, 18, 31, 0.9));
    border: 1px solid rgba(212, 166, 63, 0.45);
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    text-align: center;
}

.seo-mariachi h2{
    color: #f3c96b;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.seo-mariachi h3{
    color: #f3c96b;
    font-size: 22px;
    font-weight: 700;
    margin: 28px 0 18px;
}

.seo-mariachi p{
    font-size: 17px;
    line-height: 27px;
    max-width: 950px;
    margin: 0 auto 14px;
}

.seo-tags,
.alcaldias-seo{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    margin-top: 20px;
}

.seo-tags span,
.alcaldias-seo span{
    display: inline-block;
    padding: 8px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(243, 201, 107, 0.28);
    border-radius: 50px;
    font-size: 14px;
    line-height: 18px;
}

@media screen and (max-width:768px){
    .seo-mariachi{
        padding: 24px 15px;
        margin: 25px 0;
    }

    .seo-mariachi h2{
        font-size: 23px;
    }

    .seo-mariachi h3{
        font-size: 20px;
    }

    .seo-mariachi p{
        font-size: 16px;
        line-height: 25px;
    }

    .seo-tags span,
    .alcaldias-seo span{
        font-size: 13px;
        padding: 7px 11px;
    }
}