/* CONTENEDOR */
.side-buttons {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

/* BASE BOTÓN */
.side-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;

    background-color: #298345;
    box-shadow: -4px 4px 12px rgba(0,0,0,0.25);

    /* 👇 Forma */
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;

    /* 👇 ANCHO IGUAL */
    width: 100px;

    /* 👇 efecto escondido a la derecha */
    transform: translateX(60px);

    transition: all 0.3s ease;
    font-family: 'Br Regular';
    font-size: 14px;
}

/* HOVER → sale */
.side-btn:hover {
    background-color: #42B733;
    transform: translateX(0);
}

/* BOTÓN GRANDE */
.side-btn-large {
    height: 200px;
}

/* BOTÓN PEQUEÑO */
.side-btn-small {
    height: 90px;
}

/* IMAGEN */
.side-btn img {
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
}

/* TEXTO */
.side-btn span {
    font-size: 13px;
    text-align: center;
    padding: 0 6px;
}

/* 🔥 ANIMACIÓN DE ENTRADA (cuando carga) */
.side-btn {
    animation: slideIn 0.5s ease forwards;
}

/* delay para efecto más pro */
.side-btn-small {
    animation-delay: 0.1s;
}

.side-btn-large {
    animation-delay: 0.2s;
}

@keyframes slideIn {
    from {
        transform: translateX(10px);
        opacity: 0;
    }
    to {
        transform: translateX(10px);
        opacity: 1;
    }
}