/* Estilos generales */
.card-custom {
    width: 100%;
    max-width: 350px;
    border-radius: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #176fa7 0%, #003D63 97%);
    color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #fff;
}

.title_Card {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
}

.description {
    font-size: 1rem;
    text-align: justify;
}

@media (max-width: 768px) {
    .card-custom {
        padding: 15px;
    }

    .title {
        font-size: 1.1rem;
    }

    .description {
        font-size: 0.9rem;
    }
}