/* =========================================
   VIONEX - ESTILOS DE SUGERENCIAS
   ========================================= */

body {
    background: linear-gradient(to bottom, rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.95)), 
                url('../assets/fondo_cosultas.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
}

/* Tarjetas de Sugerencia */
.suggestion-card {
    background: rgba(17, 34, 64, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(100, 255, 218, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.card-image {
    width: 100%;
    height: 220px; /* Altura controlada para el grid */
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card-content {
    padding: 1.8rem;
    flex-grow: 1;
}

.card-content h3 {
    color: var(--vionex-cyan);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-content p {
    color: #8892b0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Hover Effects */
.suggestion-card:hover {
    transform: translateY(-10px);
    border-color: rgba(100, 255, 218, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.suggestion-card:hover .card-image img {
    transform: scale(1.1);
}

.suggestion-card:hover h3 {
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .suggestion-card {
        margin-bottom: 1rem;
    }
    .card-image {
        height: 180px;
    }
}