/* buttons.css - ESTILO COMPLETO E ORGANIZADO */

/* Botão Base */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #9e9e9e;
    color: #fafafa;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.btn:hover {
    background-color: #fafafa;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color:#2A2C2D;
}

/* Botão WhatsApp Específico */
.btn-mapa {
    background-color: #25D366 !important;
    color: white !important;
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-mapa:hover {
    background-color: #128C7E !important;
    color: white !important;
}

/* Botão Flutuante WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

.whatsapp-btn i {
    font-size: 30px;
}