/* Basic WhatsApp CTA - Estilos */

.bwcta-container {
    display: inline-block;
    margin: 0;
}

.bwcta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.bwcta-link:hover {
    background-color: #128C7E;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.bwcta-link:active {
    transform: translateY(0);
}

/* Icono de WhatsApp */
.bwcta-link::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('../images/icon-whatsapp-white-59x60.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Responsive */
@media (max-width: 768px) {
    .bwcta-link {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .bwcta-link::before {
        width: 20px;
        height: 20px;
    }
}

