/* Basic WhatsApp CTA - Estilos */

.bwcta-container {
    display: inline-block;
    margin: 0;
}

.bwcta-container {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #25D366;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.bwcta-container:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.bwcta-icon-link,
.bwcta-text-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.bwcta-icon-link:hover,
.bwcta-text-link:hover {
    color: #fff;
}

/* Icono de WhatsApp */
.bwcta-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
    .bwcta-container {
        padding: 10px 20px;
    }
    
    .bwcta-text-link {
        font-size: 14px;
    }
    
    .bwcta-icon {
        width: 20px;
        height: 20px;
    }
}

/* Estilos para Fixed CTA Widget Area */
.fixed-cta-widget-area .bwcta-container {
    display: flex;
    margin: 0;
}

/* Responsive para Fixed CTA - Solo imagen en móvil */
@media (max-width: 768px) {
    .fixed-cta-widget-area .widget {
        width: 50px;
        height: 50px;
        background-color: #25D366;
        border-radius: 10px;
        padding: 0;
        overflow: hidden;
    }
    
    .fixed-cta-widget-area .bwcta-container {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        gap: 0;
        line-height: 0;
    }
    
    .fixed-cta-widget-area .bwcta-text-link {
        display: none !important;
    }
    
    .fixed-cta-widget-area .bwcta-icon {
        width: 30px;
        height: 30px;
        margin: 0;
    }
}

