/*============================
INFORMACIÓN
============================*/
.info-wrapper {
    padding-top: 120px !important;
}

.info-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    align-items: stretch;
}

.info-card {
    flex: 1 1 calc(50% - 15px);
    max-width: calc(50% - 15px);
    display: flex;
}

.card {
   background: #2a5498;
    border: 1px solid #2a5498;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    width: 100%;
    height: 100%;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    border-color: #2a5498;
}

.card-img-top {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #eee;
}

.card-body {
    padding: 24px;
    background: #2a5498;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card-text {
    font-size: 1.5rem;
    color: white;
    text-align: justify;
    line-height: 1.8;
    flex-grow: 1;
    font-family: 'Georgia', serif;
    text-shadow: 0.5px 0.5px 2px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
    .info-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .info-row {
        flex-direction: column;
        gap: 20px;
    }

    .card-img-top {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}



/* Hover título */
.card:hover .card-title {
    color: #ffdc73;
}
