.crew-section {
    padding: 60px 5%;
    background: #fff;
}

.crew-header {
    text-align: center;
    margin-bottom: 40px;
}

.crew-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.crew-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.crew-img-container {
    position: relative;
    aspect-ratio: 3/4; /* Formato vertical tipo revista */
    overflow: hidden;
    background: #f0f0f0;
}

.crew-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%); /* Efecto vintage */
    transition: filter 0.5s ease, transform 0.5s ease;
}

.crew-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.crew-card:hover .crew-overlay {
    opacity: 1;
}

.crew-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.role {
    color: #fff;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

.crew-info {
    padding-top: 15px;
}

.crew-info h3 {
    font-family: 'Spicy Rice', cursive; /* Usando tu fuente del proyecto */
    font-size: 1.5rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.crew-info p {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* --- Estilo Minimalista Vecchia Scuola (Inspiración Bershka) --- */

:root {
    --primary-black: #000000;
    --secondary-gray: #767676; /* Color de texto suave Bershka */
    --bg-white: #ffffff;
    --accent-gray: #f2f2f2;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.history-section {
    background-color: var(--bg-white);
    padding: 80px 20px;
    font-family: var(--font-main);
    color: var(--primary-black);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Título de sección discreto */
.section-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 60px;
    font-weight: 600;
    text-align: center;
}

.history-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap; /* Para móviles */
}

.history-text {
    flex: 1;
    min-width: 300px;
}

.history-text h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.history-text p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--secondary-gray);
    margin-bottom: 20px;
    text-align: justify;
}

.history-text strong {
    color: var(--primary-black);
    font-weight: 600;
}

.history-text em {
    display: block;
    font-style: normal;
    font-weight: 700;
    color: var(--primary-black);
    margin: 30px 0;
    padding-left: 15px;
    border-left: 2px solid var(--primary-black);
}

/* Badge de fecha y ubicación */
.history-badge {
    margin-top: 40px;
    display: flex;
    gap: 30px;
    border-top: 1px solid var(--accent-gray);
    padding-top: 20px;
}

.history-badge span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

/* Imagen con estética de lookbook */
.history-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.history-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(20%); /* Toque urbano sutil */
    transition: filter 0.4s ease;
}

.history-image img:hover {
    filter: grayscale(0%);
}

/* Acento minimalista (cuadrado decorativo) */
.image-accent {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    border: 1px solid var(--primary-black);
    z-index: -1;
}

/* --- Media Queries para Móviles --- */
@media (max-width: 768px) {
    .history-content {
        flex-direction: column-reverse; /* La imagen abajo o arriba según prefieras */
        gap: 40px;
    }
    
    .history-text h3 {
        font-size: 24px;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
}