/* ======================================================
   COTIZACIÓN HOME – VISUAL SPLIT
====================================================== */

/* .ca-cotizacion {
    margin-top: -90px;
    padding-bottom: 90px;
} */

.ca-cotizacion-card {
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 35px 90px rgba(0,0,0,0.14);
    overflow: hidden;
}

/* LAYOUT */
.ca-cotizacion-split {
    display: grid;
    grid-template-columns: 42% 58%;
}

/* IMAGEN */
.ca-cotizacion-media {
    position: relative;
}

.ca-cotizacion-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* LOGO SOBRE IMAGEN */
.ca-cotizacion-logo {
    position: absolute;
    bottom: 22px;
    left: 22px;
    background: rgba(0,0,0,0.55);
    padding: 14px 18px;
    border-radius: 14px;
    backdrop-filter: blur(6px);
}

.ca-cotizacion-logo img {
    height: 38px;
    display: block;
}

/* CONTENIDO */
.ca-cotizacion-content {
    padding: 46px 44px;
}

/* TEXTO */
.ca-cotizacion-info {
    margin-bottom: 30px;
}

.ca-cotizacion-info h2 {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.ca-cotizacion-info p {
    font-size: 1.05rem;
    color: var(--color-muted);
    max-width: 520px;
}

/* FORM */
.ca-cotizacion-form input,
.ca-cotizacion-form select,
.ca-cotizacion-form textarea {
    width: 100%;
    border: 1px solid #e2e6ef;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.ca-cotizacion-form input:focus,
.ca-cotizacion-form select:focus,
.ca-cotizacion-form textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(30,64,175,0.12);
}

/* BOTÓN */
.ca-cotizacion-form button {
    background: var(--color-secondary);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 14px 38px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
}

.ca-cotizacion-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.22);
}

/* MOBILE */
@media (max-width: 992px) {
    .ca-cotizacion-split {
        grid-template-columns: 1fr;
    }

    .ca-cotizacion-media {
        height: 220px;
    }

    .ca-cotizacion-content {
        padding: 36px 26px;
    }
}
/* ======================================================
   COTIZACIÓN – FOCUS EFFECT
====================================================== */

.ca-cotizacion-focus .ca-cotizacion-card {
    animation: cotizacionPulse 1.6s ease;
}

@keyframes cotizacionPulse {
    0% {
        box-shadow: 0 0 0 rgba(245, 158, 11, 0);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(245, 158, 11, 0.25);
        transform: scale(1.015);
    }
    100% {
        box-shadow: 0 35px 90px rgba(0,0,0,0.14);
        transform: scale(1);
    }
}
