/* TÍTULOS  */
.header-estilo-moderno {
    text-align: left;
    margin-bottom: 20px;
}

.subtitulo-linea {
    color: #003366;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.subtitulo-linea span {
    color: #222;
    margin-left: 6px;
}

.subtitulo-linea::after {
    content: "";
    display: inline-block;
    width: 100px;
    height: 1px;
    background-color: #ccc;
    margin-left: 15px;
}

.titulo-principal {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
    max-width: 800px;
    line-height: 1.2;
}

.texto-azul {
    color: #004b87;
}

/* TARJETAS */
.contenedor-tarjetas-cuadradas {
    display: grid;
    grid-template-columns: repeat(2, 280px);
    gap: 40px 120px;
    justify-content: center;
    margin-top: 30px;
}

.tramite_card_clean {
    background-color: #eef1f6;
    border-radius: 45px;
    padding: 30px 20px;
    text-align: center;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    aspect-ratio: 1 / 1;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tramite_card_clean:hover {
    transform: translateY(-8px);
    background-color: #e4e9f0;
    box-shadow: 0 15px 35px rgba(0, 51, 102, 0.1);
}

.tramite_card_clean .icon_box {
    font-size: 65px;
    color: #003366;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.tramite_card_clean:hover .icon_box {
    transform: scale(1.1);
}

.tramite_card_clean h4 {
    color: #003366;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}


.card-desc {
    color: #666666;
    font-size: 13px;
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 1.4;
    max-width: 95%;
}


@media (max-width: 768px) {
    .contenedor-tarjetas-cuadradas {
        grid-template-columns: 280px;
        gap: 30px;
    }
}


/* MODALES */
.tramite-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 30, 60, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.tramite-modal-box {
    background: #fff;
    border-radius: 15px;
    max-width: 1200px;
    width: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
    max-height: 90vh;
}

.tramite-modal-col-img {
    width: 50%;
    background: #f4f4f4;
    display: flex;
    align-items: center;
}

.tramite-modal-col-img img {
    width: 100%;
    height: auto;
}

.tramite-modal-col-body {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tramite-modal-title {
    font-size: 24px;
    color: #003366;
    font-weight: 700;
    margin-bottom: 15px;
}

.tramite-modal-desc {
    color: #666;
    margin-bottom: 20px;
}

.btn_tramite_link {
    display: block;
    padding: 12px;
    color: #fff !important;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.btn_tramite_link:hover {
    opacity: 0.8;
    text-decoration: none;
}

.bg-blue {
    background: #003366;
}

.bg-green {
    background: #28a745;
}

.bg-orange {
    background: #fca311;
}

.tramite-modal-cerrar {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    background: #eee;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .tramite-modal-box {
        flex-direction: column;
    }

    .tramite-modal-col-img,
    .tramite-modal-col-body {
        width: 100%;
    }

    .titulo-principal {
        font-size: 28px;
    }
}