html,
body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

@media screen and (min-width: 700px) {
    .contenedor_superior {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.cqs_section,
.cs_section,
.cpf_section,
.contenedor_footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 20%;
}

.cu_mapa {
    width: 90%;
}

.separador_imagen {
    height: 80vh;
}

.separador_imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radio_bordes);
}

.boton_whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.boton_whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    width: 100%;
}

.boton_whatsapp:hover {
    transform: scale(1.1);
}

.boton_whatsapp img {
    width: 32px;
    height: 32px;
}