/* =====================================================
   Bloque "Solicita tu cotización" / Contactanos
   Sección: page-title.cotizacion-section
   ===================================================== */

.contenido-general {
    display: flex;
    justify-content: right;
    align-items: center;
    position: relative;
    z-index: 9;
}

.cotizacion-block {
    width: 100%;
    max-width: 500px;
    text-align: left !important;
    gap: 18px;
}

.cotizacion-titulo {
    font-size: 56px;
    line-height: 1.05;
    font-weight: 800;
    color: #ffffff !important;
    margin: 0;
    width: 100%;
}

.cotizacion-titulo span {
    color: #41FFFF !important;
    font-weight: 800;
}

.cotizacion-desc {
    color: #ffffff !important;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 !important;
    padding: 0 !important;
}

.cotizacion-cta {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.cotizacion-247 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    font-style: italic;
}

.cotizacion-247 span {
    color: #41FFFF;
}

.cotizacion-separador {
    width: 2px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.5);
    display: inline-block;
}

.btn-cotizar-ahora {
    display: inline-block;
    background-color: transparent;
    color: #41FFFF !important;
    border: 2px solid #41FFFF;
    border-radius: 50px;
    padding: 12px 38px;
    font-size: 22px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cotizar-ahora_white {
    color: #ffffff !important;
    border: 2px solid #ffffff;
}

.btn-cotizar-ahora:hover {
    background-color: #41FFFF;
    color: #0066f7 !important;
    box-shadow: 0 0 20px rgba(65, 255, 255, 0.5);
}

.btn-cotizar-ahora_white:hover {
    background-color: #FFBB00;
    color: #ffffff !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

@media only screen and (max-width: 767px) {
    .cotizacion-block {
        text-align: center !important;
    }

    .cotizacion-titulo {
        font-size: 38px;
    }

    .cotizacion-247 {
        font-size: 36px;
    }

    .cotizacion-separador {
        height: 38px;
    }

    .btn-cotizar-ahora {
        font-size: 18px;
        padding: 10px 28px;
    }

    .cotizacion-cta {
        justify-content: center;
    }
}