/* =================================================================
   HISTORIA
================================================================= */
.historia { background: #f29002; color: #ffffff; overflow: hidden; }
.historia .section-title { color: #ffffff; }
/* Eyebrow "— nuestra historia" y "cosiendo historias" en blanco como el resto. */
.historia .section-title em { color: #ffffff; font-style: italic; }
.historia .section-eyebrow { color: #ffffff; }
.historia-grid { display: grid; grid-template-columns: 1fr; gap: 5rem; align-items: center; }
.historia-text p { font-size: 1.05rem; color: #ffffff; margin-bottom: 1.5rem; line-height: 1.7; }
.historia-stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem; margin-top: 3rem; padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.3);
}
.stat .num { font-family: var(--serif); font-size: 3rem; color: #ffffff; line-height: 1; margin-bottom: 0.5rem; }
.stat .label { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: #ffffff; }

/* Responsive — historia */
@media (max-width: 1024px) {
    .historia-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
    .historia-stats { grid-template-columns: 1fr; }
}
