/* Estilo de los cards */
.custom-card {
    border: none;
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
}

.custom-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--main-color), var(--secondary-color));
}

.custom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.custom-card img {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    object-fit: cover;
    height: 180px;
}

.custom-card-body {
    padding: 1.5rem;
    text-align: center;
}

.custom-card-title {
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 1rem;
}

.custom-card-text {
    color: #444;
    line-height: 1.6;
}

/* Estilo del texto adicional */
.additional-text-container {
    text-align: center;
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, rgba(108, 25, 71, 0.2), rgba(21, 57, 109, 0.2));
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.additional-text {
    font-weight: 500;
    color: #444;
    line-height: 1.8;
    font-size: 20px;
}

.additional-highlight {
    font-weight: 700;
    color: var(--secondary-color);
}
