.titulos {
    position: absolute;
    z-index: 99;
    width: 100%;
    color: #fff;
    text-align: center;
    padding-top: 250px;
}

.titulos h1 {
    font-size: 450%;
    font-family: 'Comforter', cursive;
}

.titulos p {
    font-size: 150%;
}

.logo {
    position: absolute;
    z-index: 99;
    padding-left: 30px;
    padding-top: 40px;
}

.logo img {
    width: 150px;
    margin-left: 40px;
}

.logo h5 {
    color: #fff;
}

.servicios {
    text-align: center;
    margin: 30px;
}

.servicios h3 {
    color: #17AB34;
}

.servicios h4 {
    font-size: medium;
}

.bloques_servicios {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.bloque_s img {
    width: 100%;
}

.bloque_s {
    padding: 15px;
}

.bloque_s h4 {
    color: #17AB34;
}

.opcional {
    width: 100%;
    text-align: center;
}

.opcional h4 {
    color: #17AB34;
}

.reserva h1 {
    font-family: 'Quicksand', sans-serif;
}

.comollegar {
    width: 100%;
    text-align: center;
    background: #17AB34;
    color: #fff;
}

.mapa {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.mapa iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

footer {
    text-align: center;
    padding-top: 25px;
}

.middle {
    text-align: right;
    width: 100%;
    align-content: center;
    padding-bottom: 5px;
    padding-top: 5px;
    padding-right: 25px;
}


/* RESPONSIVE */

@media screen and (max-width: 750px) {
    .titulos {
        position: absolute;
        z-index: 99;
        width: 100%;
        color: #fff;
        text-align: center;
        padding-top: 50px;
    }
    .titulos h1 {
        visibility: hidden;
        font-size: 250%;
        font-family: 'Comforter', cursive;
    }
    .logo h5 {
        color: #fff;
        font-size: 12px;
    }
    .titulos p {
        font-size: 100%;
        padding-top: 50px;
    }
    .logo {
        position: absolute;
        z-index: 99;
        padding-left: 10px;
        padding-top: 10px;
    }
    .logo img {
        width: 100px;
        margin-left: 10px;
    }
    .bloques_servicios {
        width: 100%;
        display: block;
    }
}


/* PARA WHASAPP */

.wsp {
    background-color: #0ad64e;
    border: 1px solid #fff;
    position: fixed;
    z-index: 99;
    border-radius: 50%;
    bottom: 100px;
    right: 25px;
    padding: 15px;
    transition: ease 0.3s;
    animation: efecto 1s infinite;
}

.boton {
    width: 30px;
    transition: ease 1s;
}

.boton:hover {
    width: 60px;
    transition: ease 1s;
}

@keyframes efecto {
    0% {
        box-shadow: 0 0 0 0 rgb(165, 165, 172);
    }
    100% {
        box-shadow: 0 0 0 25px rgb(0, 0, 0, 0);
    }
}