/* ============================================
   Why Us - Sección "¿Por qué elegirnos?"
   Fondo oscuro. Grid de 8 tarjetas numeradas
   (01-08) con los motivos clave, con bordes
   semi-transparentes y hover dorado.
   ============================================ */

.section-why-us { background: var(--dark); }
.why-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.why-card {
    padding: 32px; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
    transition: var(--transition);
}
.why-card:hover { border-color: var(--primary); box-shadow: 0 4px 20px rgba(200,169,126,0.15); }
.why-number {
    font-family: 'Playfair Display', serif; font-size: 36px;
    font-weight: 700; color: var(--primary); margin-bottom: 16px; opacity: 0.5;
}
.why-card h3 { font-size: 16px; margin-bottom: 10px; color: var(--white); }
.why-card p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }