/* Botones flotantes */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

.containerBoton,
.containerBoton2 {
    position: fixed;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    padding: 0;
    border: 1px solid #fff;
    transition: transform 0.3s ease;
    animation: efect 1.2s infinite;
    margin: 0;
    right: max(0.75rem, env(safe-area-inset-right));
    left: auto;
    overflow: hidden;
    box-sizing: border-box;
}

.containerBoton {
    background-color: #2e6329;
    bottom: calc(3.75rem + env(safe-area-inset-bottom));
}

.containerBoton:hover,
.containerBoton2:hover {
    transform: scale(1.05);
}

.containerBoton a,
.containerBoton2 a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    line-height: 1;
}

.botonW,
.botonT {
    width: 1.25rem;
    height: 1.25rem;
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
    transition: ease 1s;
}

.containerBoton2 {
    background-color: rgb(10, 156, 241);
    bottom: calc(7.5rem + env(safe-area-inset-bottom));
}

@media (min-width: 992px) {
    .containerBoton,
    .containerBoton2 {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .containerBoton,
    .containerBoton2 {
        right: max(0.6rem, env(safe-area-inset-right));
    }
}

@keyframes efect {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.85);
    }
    100% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
}