/* ==========================================================================
   Componente: mk-cta-tasa
   Estándar: BEM MK Scoped
   ========================================================================== */

.mk-cta-tasa {
    --mk-cta-radius: 16px;
    --mk-cta-btn-bg: #25D366; /* Verde WhatsApp */
    --mk-cta-btn-hover: #20B958;
    
    width: 100%;
    padding: 0 0 60px 0; /* Margen inferior */
    font-family: var(--mk-font-body, 'Inter', sans-serif);
}

.mk-cta-tasa .mk-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Caja principal con imagen de fondo */
.mk-cta-tasa__box {
    position: relative;
    width: 100%;
    border-radius: var(--mk-cta-radius);
    overflow: hidden;
    background-color: #1A1D20;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* Sombras y ajustes para diseño High-End */
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Filtro oscuro encima de la foto (por si olvidan oscurecerla en Canva) */
.mk-cta-tasa__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26, 29, 32, 0.85) 0%, rgba(26, 29, 32, 0.6) 100%);
    z-index: 1;
}

/* Contenedor Flex interno */
.mk-cta-tasa__content {
    position: relative;
    z-index: 2;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

@media (min-width: 768px) {
    .mk-cta-tasa__content {
        padding: 64px 56px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

/* Columna de Textos */
.mk-cta-tasa__text-col {
    max-width: 600px;
}

.mk-cta-tasa__title {
    font-family: var(--mk-font-heading, 'Plus Jakarta Sans', sans-serif);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .mk-cta-tasa__title {
        font-size: 2.75rem;
    }
}

.mk-cta-tasa__desc {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 300;
}

/* Columna de Botón */
.mk-cta-tasa__btn-col {
    flex-shrink: 0;
}

.mk-cta-tasa__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--mk-cta-btn-bg);
    color: #FFFFFF;
    height: 56px;
    padding: 0 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.mk-cta-tasa__btn:hover {
    background-color: var(--mk-cta-btn-hover);
    transform: translateY(-2px);
    color: #FFFFFF;
}

.mk-cta-tasa__btn-icon {
    display: inline-flex;
    width: 24px;
    height: 24px;
}

.mk-cta-tasa__btn-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}