/* =========================================================
   CALL TO ACTION
   ========================================================= */
.call_action { background-color: var(--bg-2); }

.call_action .call_action_card {
    background-color: var(--paper);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(6, 18, 37, .10);
    display: flex;
    overflow: visible;
}

/* --- Panel de texto --- */
.call_action_info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
}

/* Eyebrow */
.ca_eyebrow {
    display: flex;
    align-items: center;
    gap: 0.5em;
    color: var(--brand);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 0.8em;
}
.ca_dot {
    width: 9px;
    height: 9px;
    background: var(--brand);
    border-radius: 50%;
    flex-shrink: 0;
}

.call_action_info h2 {
    margin: 0 0 0.55em;
    color: var(--brand-dark);
    font-weight: 800;
    line-height: 1.1;
}

.ca_desc {
    color: var(--muted);
    margin: 0 0 1.6em;
    line-height: 1.65;
}

/* --- Fila de ventajas --- */
.ca_features {
    display: flex;
    gap: 1.6em;
    margin-bottom: 2em;
    flex-wrap: wrap;
}

.ca_feature {
    display: flex;
    align-items: center;
    gap: 0.55em;
}

.ca_feature_icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ca_feature_icon img,
.ca_feature_icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ca_feature p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--fuente);
    font-weight: 600;
    line-height: 1.3;
}

/* --- Botones --- */
.ca_buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75em;
    align-items: center;
}

.ca_btn_contact {
    gap: 0.5em;
    font-weight: 700;
    padding: 0.75rem 1.8rem;
}

.ca_btn_whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.55em;
    padding: 0.72rem 1.4rem;
    border-radius: 50px;
    border: 1.5px solid #d0d0d0;
    background: var(--paper);
    color: var(--fuente);
    font-size: clamp(0.65rem, 1vw, 0.85rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    cursor: pointer;
    transition: border-color .25s, color .25s;
}

.ca_btn_whatsapp:hover {
    border-color: #25D366;
    color: #25D366;
}

/* --- Visor 3D (Three.js) --- */
.call_action_visor {
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
}

.threejs-ca-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.threejs-ca-wrap canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* =========================================================
   RESPONSIVE: MÓVILES / TABLET (≤ 959px)
   ========================================================= */
@media (max-width: 959px) {
    .call_action .section_container { padding: 3em 7%; }

    .call_action_card { flex-direction: column; }

    .call_action_visor {
        width: 100%;
        height: 260px;
        margin-top: -1em;
    }

    .call_action_info {
        padding: 2em 1.8em 1.5em;
        order: 1;
    }
    .call_action_visor { order: 0; }

    .call_action_info h2 { font-size: clamp(1.7rem, 6vw, 2.2rem); }

    .ca_desc { font-size: 0.9rem; }
}

/* =========================================================
   RESPONSIVE: ESCRITORIO (≥ 960px)
   ========================================================= */
@media (min-width: 960px) {
    .call_action .section_container { padding: 5em 20% 4em; }

    .call_action_info {
        width: 58%;
        padding: 3em 3em 3em 3.5em;
    }
    .call_action_visor {
        width: 42%;
        align-self: stretch;
        margin-bottom: -4em;
        min-height: 380px;
    }

    .call_action_info h2 { font-size: clamp(2rem, 3vw, 2.6rem); }

    .ca_desc { font-size: 0.95rem; }
}
