/* Estilos Generales - Estética Hypebeast / Galería Urbana */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f4f4f5; /* Fondo gris cemento suave */
    color: #09090b; /* Negro profundo urbano para textos */
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    line-height: 1.5;
}

header {
    background-color: #ffffff;
    padding: 1.2rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #e4e4e7;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #09090b;
}

/* Botón solicitado con el texto exacto */
.btn-sucursal {
    background-color: #f97316; /* Naranja safety vibrante */
    color: #ffffff;
    padding: 0.65rem 1.4rem;
    border-radius: 4px; /* Esquinas sutiles, estilo urbano moderno */
    font-weight: 700;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease-in-out;
}

.btn-sucursal:hover {
    background-color: #ea580c;
    transform: translateY(-1px);
}

/* Sección Hero / Portada */
.hero {
    background: linear-gradient(rgba(244, 244, 245, 0.7), rgba(244, 244, 245, 0.9)), 
                url('https://images.unsplash.com/photo-1534215754734-18e55d13ce35?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 7.5rem 1.5rem;
    border-bottom: 1px solid #e4e4e7;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #09090b;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.15rem;
    color: #71717a;
    max-width: 700px;
    margin: 0 auto;
}

/* Sección Historia */
.historia {
    max-width: 800px;
    margin: 5rem auto;
    padding: 3rem;
    background-color: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.historia h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #09090b;
    text-transform: uppercase;
}

.historia p {
    font-size: 1rem;
    color: #27272a;
    text-align: justify;
    line-height: 1.7;
}

/* Sección Catálogo */
.catalogo {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.catalogo h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 4rem;
    color: #09090b;
    text-transform: uppercase;
}

.grid-productos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.producto-card {
    background-color: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.producto-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border-color: #f97316;
}

.producto-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #fafafa;
}

.producto-info {
    padding: 1.8rem;
}

.producto-titulo {
    font-size: 1.25rem;
    font-weight: 800;
    color: #09090b;
    margin-bottom: 0.5rem;
}

.producto-desc {
    font-size: 0.85rem;
    color: #71717a;
    margin-bottom: 1.5rem;
    height: 60px;
    overflow: hidden;
}

.producto-precio {
    font-size: 1.35rem;
    font-weight: 700;
    color: #09090b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f4f4f5;
    padding-top: 1rem;
}

/* Botón Hormar */
.btn-comprar {
    background-color: #09090b;
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-comprar:hover {
    background-color: #f97316;
}

/* Footer */
footer {
    background-color: #09090b;
    color: #a1a1aa;
    text-align: center;
    padding: 3rem;
    margin-top: 6rem;
    font-weight: 400;
    font-size: 0.85rem;
}

/* ==========================================================================
   VENTANA MODAL STREETWEAR / SUCURSAL MAYORISTA
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 9, 11, 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 3rem;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.8rem;
    font-size: 1.8rem;
    font-weight: 300;
    color: #71717a;
    cursor: pointer;
}

.modal-close:hover {
    color: #09090b;
}

.modal-header {
    text-align: left;
    margin-bottom: 2rem;
}

.modal-header h2 {
    color: #09090b;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.modal-header p {
    color: #71717a;
    font-size: 0.85rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #09090b;
    text-transform: uppercase;
}

.form-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #d4d4d8;
    background-color: #fafafa;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #09090b;
    outline: none;
    transition: all 0.2s;
}

.form-group input:focus {
    border-color: #f97316;
    background-color: #ffffff;
}

.btn-submit {
    width: 100%;
    background-color: #09090b;
    color: #ffffff;
    padding: 0.9rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background-color 0.2s;
}

.btn-submit:hover {
    background-color: #f97316;
}