﻿body{
    background: url(../images/fondo.jpg) no-repeat center center fixed;
    background-size: cover;
    font-family: "Bricolage Grotesque", sans-serif;
}

header{
    background: black;
    color: white;
    padding-top: 12px;
    padding-bottom: 12px;
}

.logotipo img{
    width: 120%;
    margin: 0 0 0 -20%;
}

nav a{
    color: white;
    text-decoration: none;
}
nav ul{
    list-style: none;
    padding: 0;
}
nav ul li{
    width: 50%;
    float: left;
}
.menu{
    text-align: center;
    font-size: 22px;
    color: white;
}


.datos{
    text-align: center;
    font-size: 22px;

    flex: 1;
}
.datos a{
    text-decoration: none;
}
.datos b{
    margin: 0 20px;
}
.datos img{
    width: 30px;
}

.flexi{
    display: flex;
    gap: 20px;
    align-items: flex-start;
}


.efecto{
    background: url(../images/efecto.jpg) no-repeat center center;
    background-size: cover;
    height: 420px;
}




.titulo{
    text-align: center;
    font-family: "Playfair Display", serif;
    color: white;
    font-size: 33px;
    font-weight: bold;
}

.subtitulo{
    font-size: 25px;
    font-weight: lighter;
    text-align: center;
    color: white;
    margin-bottom: 40px;
}
.subtitulo img{
    height: 30px;
}


.boton{
    text-align: center;
    margin-top: -40px;
}


.btn-dorado{
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #3b2a00;
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    background: linear-gradient(
        135deg,
        #f5d27a 0%,
        #f9e39a 25%,
        #d4af37 50%,
        #b8962e 75%,
        #f5d27a 100%
    );
    border: 1px solid #b8962e;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.6),
        0 4px 12px rgba(184,150,46,0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-dorado:hover {
    color: #2a1c00;
    background: linear-gradient(
        135deg,
        #fff2c1 0%,
        #f9e39a 30%,
        #e6c35a 50%,
        #c9a635 70%,
        #fff2c1 100%
    );
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.8),
        0 6px 18px rgba(184,150,46,0.6);
    transform: translateY(-2px);
}
.btn-dorado:active {
    transform: translateY(0);
    box-shadow:
        inset 0 2px 6px rgba(0,0,0,0.25),
        0 2px 6px rgba(184,150,46,0.3);
}


.contenido{
    padding-top: 50px;
    padding-bottom: 50px;
}


.seccion{
    font-size: 20px;
    color: #f9f2da;
    padding: 0 20px;
}
.seccion strong{
    color: white;
    font-size: 27px;
}

.imagen video{
    border: 2px dashed #f9e39a;
    width: 47%;
    height: 500px;
    margin:  0 1%;
    
    border-radius: 22px;
}

.imagenDeTres video{
    width: 30.33%;
}



.servicios {
    margin-top: 60px;
    margin-bottom: 60px;
}

.titulo-seccion {
    text-align: center;
    font-family: "Playfair Display", serif;
    color: white;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

.subtitulo-seccion {
    text-align: center;
    color: #f9f2da;
    font-size: 20px;
    margin-bottom: 10px;
}

.lista-servicios {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.lista-servicios li {
    color: #f9f2da;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 14px;
    margin-bottom: 10px;
    border: 1px dashed rgba(249, 227, 154, 0.55);
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.35);
}

.lista-servicios li::before {
    content: "✔";
    margin-right: 10px;
    color: #f9e39a;
    font-weight: 700;
}

.alerta-servicio {
    border-radius: 22px;
    padding: 22px;
    background: rgba(0, 0, 0, 0.55);
    border: 2px dashed #f9e39a;
}

.alerta-titulo {
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.alerta-texto {
    color: #f9f2da;
    font-size: 20px;
    margin-top: 8px;
}

.alerta-boton {
    text-align: center;
}

.alerta-boton .btn-dorado {
    font-size: 24px;
    padding: 12px 26px;
}


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

}

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

}

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

}

@media screen and (max-width:768px){
    .logotipo img{
        width: 100%;
        margin: 0 0 0 0%;
    }
    .menu{
        padding: 22px 0;
    }
    .imagenDeTres{
        gap: 10px;
    }
    .imagenDeTres video{
        width:47%;
    }
}

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



.chat{
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: #24d366;
    font-weight: normal;
    font-size: 20px;
    color: white;
    padding: 6px 17px;
    border-radius: 20px;

    animation-name: pulse;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-delay: 0s;
    animation-iteration-count: 100;
}
@keyframes pulse {
    from,to {
        transform: scale3d(1,1,1)
    }

    50% {
        transform: scale3d(1.05,1.05,1.05)
    }
}

.pulse {
    animation-name: pulse