/* ==========================================================================
   ESTILOS EXCLUSIVOS PARA EL NUEVO DISEÑO DEL HOME (JUNIO 2026)
   Aislamiento total para no alterar otras páginas del sitio web.
   ========================================================================== */

/* Fuentes y Variables Generales */
.home-page-wrapper {
    font-family: 'Montserrat', sans-serif;
    color: #334155;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* ==========================================================================
   0. FRANJA DE CREDENCIALES Y RESPALDO (LONJA DE BOGOTÁ Y 50 AÑOS)
   ========================================================================== */
.home-credenciales-bar {
    background-color: #0b2d55;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.home-credenciales-bar .container {
    min-height: 68px;
}

.credencial-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.credencial-logo-lonja {
    height: 62px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.credencial-sello-50 {
    height: 62px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.credencial-logo-lonja:hover,
.credencial-sello-50:hover {
    transform: scale(1.03);
}

.credencial-divider {
    width: 1px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.28);
}

@media (max-width: 576px) {
    .home-credenciales-bar {
        padding: 8px 0;
    }

    .credencial-logo-lonja,
    .credencial-sello-50 {
        height: 34px;
    }
}

/* ==========================================================================
   1. SECCIÓN BUSCADOR ("Tu próximo inmueble a un clic")
   ========================================================================== */
.home-buscador-section {
    padding: 60px 0 40px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafd 100%);
}

.home-buscador-title {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 800;
    font-size: 2.3rem;
    color: #336699;
    text-align: center;
    margin-bottom: 25px;
}

.home-buscador-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(11, 45, 85, 0.08);
    border: 1px solid #e2e8f0;
    padding: 30px;
    margin: 0 auto 30px auto;
    max-width: 1050px;
}

/* Pestañas Venta / Arriendo */
.home-tabs-gestion {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.home-tab-btn {
    border: none;
    padding: 10px 36px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

.home-tab-btn.active {
    background-color: #336699;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(11, 45, 85, 0.25);
}

.home-tab-btn:not(.active) {
    background-color: #e2e8f0;
    color: #475569;
}

.home-tab-btn:not(.active):hover {
    background-color: #cbd5e1;
    color: #0b2d55;
}

/* Campos de Selección */
.home-form-label {
    font-size: 13px;
    font-weight: 700;
    color: #0b2d55;
    margin-bottom: 6px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.home-select-control {
    width: 100%;
    height: 46px;
    border-radius: 8px;
    border: 1.5px solid #d1d5db;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    background-color: #ffffff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.home-select-control:focus {
    border-color: #0b2d55;
    box-shadow: 0 0 0 3px rgba(11, 45, 85, 0.15);
}

/* Botones de Acción */
.home-btn-buscar {
    background-color: #336699;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    height: 46px;
    padding: 0 28px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s ease;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(11, 45, 85, 0.2);
}

.home-btn-buscar:hover {
    background-color: #164377;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(11, 45, 85, 0.25);
}

.home-btn-borrar {
    background-color: #f1f5f9;
    color: #475569;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    height: 46px;
    padding: 0 22px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.25s ease;
    cursor: pointer;
}

.home-btn-borrar:hover {
    background-color: #e2e8f0;
    color: #0b2d55;
    border-color: #94a3b8;
}

/* ==========================================================================
   2. SECCIÓN INMUEBLES DESTACADOS
   ========================================================================== */
.home-destacados-section {
    padding: 30px 0 50px 0;
    background-color: #ffffff;
}

.home-destacados-title {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 800;
    font-size: 1.7rem;
    color: #336699;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.home-destacados-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #c9a050;
    border-radius: 2px;
}

/* Slider Controls */
.home-slider-nav-btn {
    background-color: #0b2d55;
    color: #ffffff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.home-slider-nav-btn:hover {
    background-color: #1a4f8b;
    transform: scale(1.08);
}

/* Tarjeta de Inmueble Rediseñada */
.card-inmueble-pdf {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 270px;
    min-width: 270px;
    display: flex;
    flex-direction: column;
}

.card-inmueble-pdf:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(11, 45, 85, 0.12);
    border-color: #cbd5e1;
}

.card-inmueble-pdf-img-box {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background-color: #f1f5f9;
}

.card-inmueble-pdf-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card-inmueble-pdf:hover .card-inmueble-pdf-img {
    transform: scale(1.06);
}

.card-inmueble-pdf-btn-vermas {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #336699;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 11px;
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.card-inmueble-pdf-btn-vermas:hover {
    background-color: #ce995f;
}

.card-inmueble-pdf-body {
    padding: 14px 16px 16px 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-inmueble-pdf-header-price {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.card-inmueble-pdf-price {
    font-weight: 800;
    font-size: 1.2rem;
    color: #0b2d55;
    line-height: 1.2;
}

.card-inmueble-pdf-tag {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: capitalize;
}

.card-inmueble-pdf-features {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    font-size: 12.5px;
    font-weight: 500;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
}

.card-inmueble-pdf-features span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.card-inmueble-pdf-features i {
    color: #0b2d55;
    font-size: 13px;
}

.card-inmueble-pdf-title {
    font-size: 13.5px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.35;
    margin-bottom: 8px;
    min-height: 38px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-inmueble-pdf-code {
    font-size: 11.5px;
    color: #94a3b8;
    font-weight: 500;
    margin-top: auto;
}

/* ==========================================================================
   3. FRANJA DE MÉTRICAS / ESTADÍSTICAS (+50, +1.000, +30K)
   ========================================================================== */
.home-stats-banner {
    background-color: #0b2d55;
    color: #ffffff;
    padding: 55px 0;
    margin: 40px 0 0 0;
}

.home-stat-box {
    text-align: center;
    padding: 15px;
}

.home-stat-number {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 10px;
}

.home-stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #dbeafe;
}

/* ==========================================================================
   4. SECCIÓN SERVICIOS ("¿EN QUÉ PODEMOS AYUDARTE?")
   ========================================================================== */
.home-servicios-section {
    padding: 75px 0;
    background-color: #f8fafd;
}

.home-servicios-title {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 800;
    font-size: 2.4rem;
    color: #336699;
    text-align: center;
    margin-bottom: 50px;
}

.home-servicio-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    padding: 35px 25px 30px 25px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.home-servicio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(11, 45, 85, 0.09);
    border-color: #cbd5e1;
}

.home-servicio-icon-box {
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-servicio-name {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #0b2d55;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.home-servicio-name a:link,
.home-servicio-name a:visited {
    text-decoration: none;
    color: inherit;
}

.home-servicio-desc {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 22px;
    min-height: 48px;
}

.home-servicio-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #336699;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 10px 24px;
    border-radius: 17px;
    text-decoration: none;
    transition: all 0.25s ease;
    margin: 0 auto;
    box-shadow: 0 3px 8px rgba(11, 45, 85, 0.2);
}

.home-servicio-btn:hover {
    background-color: #ce995f;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(201, 160, 80, 0.35);
}

/* ==========================================================================
   5. SECCIÓN ZONA DE CLIENTES Y CANDIDATO A ARRENDATARIO
   ========================================================================== */
.home-clientes-section {
    padding: 70px 0 80px 0;
    background-color: #ffffff;
}

.home-clientes-title {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: #336699;
    text-align: center;
    margin-bottom: 6px;
}

.home-clientes-subtitle {
    font-size: 1.15rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 45px;
}

/* Recuadro sombreado contenedor para cada columna (Arrendatarios / Propietarios) */
.home-cliente-col-card {
    background: #ffffff;
    border: 1.5px solid #eef2f6;
    border-radius: 28px;
    padding: 35px 30px 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-cliente-col-card:hover {
    box-shadow: 0 15px 35px rgba(11, 45, 85, 0.09);
}

.home-cliente-header-badge {
    display: inline-block;
    background-color: #ce995f;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 11px 40px;
    border-radius: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 14px rgba(206, 153, 95, 0.35);
}

/* Fila interactiva interna (sin bordes individuales) */
.home-cliente-row-item {
    display: flex;
    align-items: center;
    gap: 22px;
    text-decoration: none;
    color: inherit;
    padding: 16px 14px;
    border-radius: 16px;
    transition: all 0.25s ease;
}

.home-cliente-row-item:hover {
    background-color: #f8fafc;
    transform: translateX(4px);
    color: inherit;
}

.home-cliente-img-icon {
    width: 58px;
    height: 58px;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.home-cliente-row-item:hover .home-cliente-img-icon {
    transform: scale(1.08);
}

.home-cliente-row-text {
    flex-grow: 1;
    font-size: 1.02rem;
    line-height: 1.45;
    color: #64748b;
    font-family: 'Montserrat', sans-serif;
}

.home-cliente-row-text strong {
    color: #334155;
    font-weight: 700;
}

/* Línea divisoria delgada de color #ce995f entre filas */
.home-cliente-divider {
    height: 1.5px;
    background-color: #ce995f;
    margin: 15px auto;
    width: 82%;
    opacity: 0.85;
}

/* Contenedor Candidato a Arrendatario / Inquilino */
.home-candidato-card {
    background: #ffffff;
    border: 1.5px solid #eef2f6;
    border-radius: 28px;
    padding: 35px 30px 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.home-candidato-row-top {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.home-candidato-row-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-candidato-link-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #475569;
    padding: 10px 18px;
    border-radius: 14px;
    transition: all 0.25s ease;
}

.home-candidato-link-item:hover {
    background-color: #f8fafc;
    color: #0b2d55;
    transform: translateY(-2px);
}

.home-candidato-img-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.home-candidato-link-item:hover .home-candidato-img-icon {
    transform: scale(1.08);
}

.home-candidato-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #64748b;
    letter-spacing: 0.2px;
}

.home-candidato-link-item:hover .home-candidato-text {
    color: #334155;
}

/* Línea divisoria vertical entre Solicitud aseguradora e inmobiliaria */
.home-candidato-v-divider {
    width: 1.5px;
    height: 44px;
    background-color: #ce995f;
    opacity: 0.85;
    margin: 0 15px;
}

/* Línea divisoria horizontal entre fila superior e inferior */
.home-candidato-h-divider {
    height: 1.5px;
    background-color: #ce995f;
    width: 46%;
    max-width: 400px;
    margin: 20px auto;
    opacity: 0.85;
}

/* ==========================================================================
   6. SECCIÓN ALIADOS ESTRATÉGICOS
   ========================================================================== */
.home-aliados-section {
    padding: 70px 0 85px 0;
    background-color: #f8fafc;
    text-align: center;
}

.home-aliados-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.3rem;
    color: #1e5288;
    margin-bottom: 45px;
}

/* Tarjeta contenedora de categoría de aliados */
.home-aliado-category-card {
    background: #ffffff;
    border: 1.5px solid #eef2f6;
    border-radius: 28px;
    padding: 28px 20px 35px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
    min-height: 410px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-aliado-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(6, 40, 77, 0.1);
}

/* Cabecera azul marino de cada categoría */
.home-aliado-badge-header {
    background-color: #06284d;
    color: #ffffff;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    width: 90%;
    max-width: 255px;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 25px;
    padding: 10px 18px;
    line-height: 1.2;
    box-shadow: 0 4px 10px rgba(6, 40, 77, 0.2);
}

/* Pila de logos dentro de cada tarjeta */
.home-aliado-logos-stack {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    gap: 20px;
    padding: 10px 0;
}

.home-aliado-logos-stack.home-aliado-logos-single {
    justify-content: center;
}

.home-aliado-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 72px;
    padding: 2px 10px;
    text-decoration: none;
    transition: transform 0.25s ease;
}

.home-aliado-logo-link:hover {
    transform: scale(1.06);
}

.home-aliado-logo-img {
    max-width: 180px;
    max-height: 52px;
    object-fit: contain;
    transition: transform 0.25s ease;
}

/* Ajustes ópticos para balance visual proporcional entre todos los logos */
.home-aliado-logo-metro {
    max-width: 185px;
    max-height: 50px;
}

.home-aliado-logo-fincaraiz {
    max-width: 185px;
    max-height: 44px;
}

.home-aliado-logo-ciencuadras {
    max-width: 210px;
    max-height: 50px;
}

.home-aliado-logo-libertador {
    max-width: 215px;
    max-height: 42px;
}

.home-aliado-logo-unifianza {
    max-width: 165px;
    max-height: 68px;
}

.home-aliado-logo-zurich {
    max-width: 185px;
    max-height: 46px;
}

.home-aliado-logo-lonja {
    max-width: 220px;
    max-height: 115px;
    object-fit: contain;
}

/* ==========================================================================
   FOOTER - REDES SOCIALES
   ========================================================================== */
.home-footer-social-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 10px 0 0 0;
    padding: 0;
}

.home-footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.home-footer-social-link:hover {
    transform: translateY(-3px) scale(1.1);
    filter: brightness(1.1);
}

.home-footer-social-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 50%;
}

/* ==========================================================================
   MODAL ASEGURADORAS (CANDIDATO A ARRENDATARIO)
   ========================================================================== */
.modal-aseguradoras-content {
    border-radius: 26px;
    border: 1.5px solid #eef2f6;
    box-shadow: 0 25px 60px rgba(11, 45, 85, 0.2);
    padding: 16px 14px 10px 14px;
    background: #ffffff;
}

.modal-aseguradoras-header {
    position: relative;
    padding-top: 10px;
}

.modal-aseguradoras-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ce995f, #b88349);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 50px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 12px rgba(206, 153, 95, 0.25);
}

.modal-aseguradoras-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #0b2d55;
    font-size: 1.65rem;
}

.modal-aseguradoras-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 4px;
}

.modal-aseguradoras-close {
    position: absolute;
    top: 5px;
    right: 12px;
    z-index: 10;
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.modal-aseguradoras-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.aseguradora-modal-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px 16px 20px 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    min-height: 220px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.aseguradora-modal-card:hover {
    transform: translateY(-5px);
    border-color: #ce995f;
    box-shadow: 0 14px 30px rgba(206, 153, 95, 0.22);
    background-color: #fffdf9;
}

.aseguradora-card-logo-box {
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.aseguradora-modal-logo {
    object-fit: contain;
    transition: transform 0.25s ease;
}

.aseguradora-modal-card:hover .aseguradora-modal-logo {
    transform: scale(1.06);
}

.logo-libertador {
    max-height: 48px;
    max-width: 165px;
}

.logo-unifianza {
    max-height: 58px;
    max-width: 155px;
}

.logo-zurich {
    max-height: 48px;
    max-width: 165px;
}

.aseguradora-card-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #0b2d55;
    margin-bottom: 12px;
    text-align: center;
}

.aseguradora-card-action {
    display: inline-flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ce995f;
    background: rgba(206, 153, 95, 0.1);
    padding: 7px 16px;
    border-radius: 50px;
    transition: all 0.25s ease;
}

.aseguradora-modal-card:hover > .aseguradora-card-action,
.aseguradora-card-actions-group .aseguradora-card-action:hover {
    background: #ce995f;
    color: #ffffff;
}

.aseguradora-card-actions-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    align-items: center;
}

.aseguradora-card-actions-group .aseguradora-card-action {
    width: 100%;
    max-width: 180px;
    justify-content: center;
    text-decoration: none;
    padding: 6px 14px;
    font-size: 0.82rem;
}

/* ==========================================================================
   RESPONSIVIDAD MÓVIL
   ========================================================================== */
@media (max-width: 768px) {
    .home-buscador-title {
        font-size: 1.8rem;
    }

    .home-buscador-card {
        padding: 20px 15px;
    }

    .home-stat-number {
        font-size: 2.8rem;
    }

    .home-stat-label {
        font-size: 0.85rem;
    }

    .home-servicios-title,
    .home-clientes-title,
    .home-aliados-title {
        font-size: 1.9rem;
    }

    .home-cliente-item-card {
        padding: 16px 18px;
    }

    .home-candidato-card {
        padding: 26px 16px;
    }

    .home-candidato-row-top {
        flex-direction: column;
        gap: 12px;
    }

    .home-candidato-h-divider {
        width: 80%;
    }

    .home-candidato-link-item {
        width: 100%;
        justify-content: center;
    }

    .home-cliente-header-badge {
        font-size: 0.95rem;
        padding: 9px 24px;
    }

    .modal-aseguradoras-title {
        font-size: 1.35rem;
    }

    .aseguradora-modal-card {
        min-height: 180px;
        padding: 20px 14px;
    }
}