/* Estilos para o widget WhatsApp */
.whatsapp-widget-container {
    display: inline-block;
    width: 100%;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 25px;
    background-color: #25D366;
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    color: #ffffff;
}

.whatsapp-button:focus {
    outline: 2px solid #25D366;
    outline-offset: 2px;
}

.whatsapp-icon {
    font-size: 1.2em;
    line-height: 1;
}

.whatsapp-text {
    line-height: 1;
}

/* Alinhamentos */
.elementor-align-left .whatsapp-widget-container {
    text-align: left;
}

.elementor-align-center .whatsapp-widget-container {
    text-align: center;
}

.elementor-align-right .whatsapp-widget-container {
    text-align: right;
}

.elementor-align-justify .whatsapp-button {
    width: 100%;
}

/* Responsividade */
@media (max-width: 768px) {
    .whatsapp-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .elementor-align-justify .whatsapp-button,
    .whatsapp-widget-container .whatsapp-button {
        width: 100%;
        justify-content: center;
    }
}
