/* Namespace Blindado: Todo está bajo .mk-cta-special */

.mk-cta-special {
    padding: 5rem 0;
    background-color: #f8f9ff;
}

.mk-cta-special__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.mk-cta-special__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    background: white;
    border: 1px solid rgba(190, 200, 207, 0.3);
    overflow: hidden;
}

.mk-cta-special__content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to right, #ffffff 50%, #eef2f5 100%);
}

.mk-cta-special__title {
    font-size: 2.5rem;
    color: #006481;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.mk-cta-special__text {
    color: #3e484e;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.mk-cta-special__btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #006481;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: transform 0.2s ease;
    width: fit-content;
}

.mk-cta-special__btn:hover {
    transform: translateY(-2px);
    background: #004d64;
    color: #bdc8cb;
}

.mk-cta-special__btn i { font-size: 1.2rem; }

.mk-cta-special__btn-info {
    display: flex;
    flex-direction: column;
}

.mk-cta-special__btn-info span { font-size: 1rem; }

.mk-cta-special__btn-info small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.mk-cta-special__media {
    width: 100%;
    height: 100%;
    background: #eef2f5;
}

.mk-cta-special__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .mk-cta-special__wrapper { grid-template-columns: 1fr; }
    
    .mk-cta-special__content { 
        padding: 2.5rem; 
        text-align: center; 
        align-items: center;
        background: linear-gradient(to bottom, #ffffff 85%, #eef2f5 100%);
    }

    .mk-cta-special__btn { 
        width: 100%; 
        justify-content: center; 
        padding: 0.8rem 1rem; 
        gap: 0.8rem;
    }

    .mk-cta-special__btn-info span {
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .mk-cta-special__btn-info small { font-size: 0.7rem; }
}

@media (max-width: 375px) {
    .mk-cta-special__content { padding: 1.5rem 1rem; }
    .mk-cta-special__title { font-size: 1.8rem; }
    .mk-cta-special__text { font-size: 0.95rem; }
    .mk-cta-special__btn { padding: 0.6rem 0.5rem; gap: 0.5rem; }
    .mk-cta-special__btn-info span { font-size: 0.75rem; }
}

/* Ajuste exclusivo para iPhone 12 Pro y similares (390px - 395px) */
@media screen and (min-width: 380px) and (max-width: 400px) {
    .mk-cta-special__content {
        padding: 2rem 1rem !important;
        align-items: center !important;
        text-align: center !important;
    }

    .mk-cta-special__btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 0.75rem 0.5rem !important;
        flex-wrap: wrap !important;
    }

    .mk-cta-special__btn-info {
        align-items: center !important;
    }

    .mk-cta-special__title {
        font-size: 1.7rem !important; /* Ajuste fino para centrar mejor el título */
    }
}