﻿body{
    font-family: "Montserrat", sans-serif;
}



.cabecera-ayuda{
    height: 100px;
}
.cabecera{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: black;
    padding-top: 12px;
    padding-bottom: 12px;
}
.logotipo{
    color: white;
    font-weight: bold;
    font-size: 33px;
    line-height: 33px;
    font-family: "Playfair Display", serif;
}
.logotipo a{
    color: white;
    text-decoration: none;
}
.logotipo img{
    width: 100%;
}

.titulo{
    font-family: "Playfair Display", serif;
}


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

.datos{
    color: white;
    text-align: center;
}


.efecto{
    position: relative;
    background: url(../images/efecto.jpg) no-repeat center center;
    background-size: cover;
    text-align: center;
    color: white;
    font-family: "Playfair Display", serif;
    font-weight: bold;
    word-spacing:4px;
    letter-spacing: 1px;
    font-size: 40px;
    text-shadow: 2px 2px 2px black;
    padding-top: 200px;
    padding-bottom: 200px;
}
.fondo-negro{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(0,0,0,0.6);
    width: 100%;
    height: 100%;
}
.efecto .container{
    position: relative;
    z-index: 2;
}


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

.seccion{
    text-align: justify;
    font-size: 18px;
    line-height: 24px;
    padding: 40px;
}
.seccion strong{
    width: 100%;
    font-size: 23px;
    text-decoration: underline;
    display: inline-block;
    margin-bottom: 20px;
}


.imagen img{
    width: 100%;
    border-radius: 20px;
}


.titulo{
    text-align: center;
    font-size: 40px;
    margin-bottom: 30px;
}


.servicio{
    border: 3px dotted #ddd;
    background: #f7f7f7;
    padding: 12px;

    border-radius: 20px;
}
.servicio .imagen{
    text-align: center;
}
.servicio .imagen img{
    width: 90%;
}
.texto-servicio{
    background: #f7f7f7;
    text-align: justify;
    padding-top: 12px;
    padding-bottom: 12px;
}


.form-group{
    margin-bottom: 12px;
}


footer{
    background: #3e3129;
    color: white;
    font-size: 18px;
    line-height: 28px;
    padding-top: 50px;
    padding-bottom: 50px;
}
footer strong{
    width: 100%;
    font-size: 23px;
    font-weight: normal;
    display: inline-block;
    margin-bottom: 24px;
}
footer iframe{
    width: 100%;
    height: 250px;
}


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

}

@media screen and (max-width:1200px){
    .cabecera-ayuda{
        display: none;
    }
    .cabecera{
        position: relative;
    }
}

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

}

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

}

@media screen and (max-width:576px){
    .seccion{
        padding: 10px;
    }
}


.chat{
    border: 1px solid black;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: #3e3129;
    font-weight: bold;
    font-size: 20px;
    color: white;
    padding: 6px 17px;
    border-radius: 20px;
}
@keyframes pulse {
    from,to {
        transform: scale3d(1,1,1)
    }

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

.pulse {
    animation-name: pulse
}