:root {
    --primary: #000758;
    --secondary: #031296;
    --accent: #db9900;
    --light-blue: #9bbcda;
    --white: #ffffff;
    --gray: #f4f4f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--primary);
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Navbar */
.navbar {
    background: var(--white);
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-content {
    display: none;
    position: absolute;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    top: 100%;
}

.dropdown-content a {
    color: var(--primary);
    padding: 12px 16px;
    display: block;
    text-transform: none;
}

.dropdown:hover .dropdown-content { display: block; }
.dropdown-content a:hover { background: var(--gray); }

/* Hero Banner */
.hero-banner {
    height: 80vh;
    background-image: url('banner.png');
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover { background: var(--secondary); }

/* Grid Section (Estilo 002) */
.grid-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 20px 5%;
}

/* Busca .grid-item en el CSS y déjalo así: */
.grid-item {
    height: 400px;
    position: relative;
    overflow: hidden;
    /* Propiedades añadidas para fotos de fondo: */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--white);
}

.overlay h3 { color: var(--white); font-size: 1.8rem; margin-bottom: 10px; }

.btn-small {
    background: var(--white);
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.8rem;
}

/* Features (Estilo 003) */
.features-section {
    display: flex;
    gap: 10px;
    padding: 0 5%;
}

.feature-card {
    flex: 1;
    text-align: center;
}

/* Busca .img-placeholder en el CSS y déjalo así: */
.img-placeholder {
    height: 500px;
    background: #eee; /* Color por defecto si no carga la foto */
    margin-bottom: 15px;
    /* Propiedades añadidas para fotos: */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.feature-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    text-transform: uppercase;
}

/* Formulario */
.contact-section {
    background: var(--gray);
    padding: 50px 5%;
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
}

.main-form label { display: block; margin-top: 15px; font-weight: 500; }
.main-form input, .main-form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn-submit {
    background: var(--primary) !important;
    color: white;
    border: none !important;
    margin-top: 20px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
}
/* =========================================
   ESTILOS FAQ & UBICACIÓN (MEJORADOS)
   ========================================= */

.info-section {
    padding: 100px 5%;
    background-color: var(--gray); /* Fondo gris claro para separar secciones */
}

.info-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dos columnas iguales */
    gap: 50px; /* Espacio entre columnas */
    align-items: start;
}

/* Estilos Generales de Tarjetas */
.faq-card, .location-card {
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,7,88, 0.05); /* Sombra suave con tu azul primary */
}

.faq-card h2, .location-card h2 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--primary);
    font-size: 2.8rem;
    margin-bottom: 40px;
    text-align: center;
}

/* --- FAQ (Acordeón) --- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border-bottom: 1px solid #eee; /* Línea divisoria suave */
    padding-bottom: 15px;
}

.faq-item summary {
    list-style: none; /* Oculta el triángulo por defecto */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-weight: 500;
    color: var(--primary);
    transition: 0.3s;
}

.faq-item summary::-webkit-details-marker {
    display: none; /* Para Safari */
}

.faq-item summary:hover {
    color: var(--secondary);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent); /* Usamos el color dorado */
    transition: transform 0.3s;
}

/* Animación del Icono al abrir */
.faq-item[open] .faq-icon {
    transform: rotate(45deg); /* Gira el '+' para que parezca un 'x' */
}

.faq-answer {
    padding: 15px 0;
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
}

/* --- UBICACIÓN --- */
.location-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location-details {
    display: flex;
    gap: 20px;
    align-items: start;
}

.location-icon {
    font-size: 2.5rem;
    color: var(--primary);
    line-height: 1;
}

.location-text h4 {
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 5px;
}

.location-text p {
    color: #555;
    margin-bottom: 15px;
}

.btn-maps {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.btn-maps:hover {
    border-bottom: 2px solid var(--accent);
}

/* Mapa */
/* Mapa */
.map-wrapper{
  width: 100%;
  border-radius: 15px;
  overflow: hidden; /* mantiene las esquinas redondeadas */
  border: 1px solid #eee;
}

.map-frame{
  width: 100%;
  height: 350px; /* ajustá la altura si querés */
  background: #e0e0e0;
}

/* IMPORTANTÍSIMO: el iframe ocupa TODO el contenedor */
.map-frame iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block; /* evita el “espacio” abajo */
}/* Responsive (para móviles) */
@media (max-width: 992px) {
    .info-container {
        grid-template-columns: 1fr; /* Una columna en tablets/móviles */
        gap: 30px;
    }
    
    .faq-card, .location-card {
        padding: 40px;
    }
    
    .faq-card h2, .location-card h2 {
        font-size: 2.2rem;
    }
}
/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 50px 5% 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-links a, .footer-social a {
    display: block;
    color: var(--light-blue);
    text-decoration: none;
    margin-bottom: 10px;
}

.spacer { height: 50px; }
/* AÑADE ESTO AL FINAL DE TU CSS */

/* Cuadrado 1: SHOPs */
.grid-item.item-1 {
    background-image: url('shops.png');
}

/* Cuadrado 2: Abrigate con Unifor */
.grid-item.item-2 {
    background-image: url('abrigateconunifor.png');
}

/* Cuadrado 3: ¿Tenes una empresa? */
.grid-item.item-3 {
    background-image: url('tenesunaempresa.png');
}

/* Cuadrado 4: ¿Sos directivo? */
.grid-item.item-4 {
    background-image: url('sosdirectivo.png');
}

/* AÑADE ESTO AL FINAL DE TU CSS */

.img-placeholder.botones-bg {
    background-image: url('botonera.png');
}

.img-placeholder.bordado-bg {
    background-image: url('img/foto-bordado.png');
}

.img-placeholder.costura-bg {
    background-image: url('img/foto-corte.png');
}
/* =========================================
   ESTILOS SECCIÓN ESCUELAS (NUEVA)
   ========================================= */

.schools-section {
    padding: 100px 5%;
    background-color: var(--white); /* Usamos fondo blanco para que resalten los logos */
}

.container-schools {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px; /* Espacio entre el encabezado y la grilla */
}

/* --- Encabezado --- */
.schools-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.schools-header h1 {
    font-family: 'Playfair Display', serif;
    font-style: italic; /* Important for the desired look */
    color: var(--primary);
    font-size: 3.2rem; /* Título principal, más grande */
    margin-bottom: 20px;
}

.schools-header p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400; /* Regular content */
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* --- Grilla de Logos --- */
.schools-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 logos por fila por defecto */
    gap: 30px; /* Espacio entre las tarjetas */
}

/* --- Tarjeta de Escuela (Individual) --- */
.school-card {
    background: var(--white);
    padding: 20px; /* Menos padding para logos */
    border-radius: 15px; /* Esquinas redondeadas */
    box-shadow: 0 8px 24px rgba(0,7,88, 0.04); /* Sombra suave con color primario */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px; /* Altura fija para ordenar la grilla */
    overflow: hidden; /* Contener el logo */
    transition: 0.3s ease; /* Para el efecto hover */
    border: 2px solid transparent; /* Preparar para el borde hover */
}

/* Imagen dentro de la tarjeta */
.school-card img {
    max-width: 90%; /* Escalar logo sin deformar */
    max-height: 100px; /* Altura máxima del logo */
    width: auto;
    height: auto;
    display: block;
}

/* --- Efecto Hover para Tarjeta --- */
.school-card:hover {
    transform: scale(1.05); /* Escala suave */
    border-color: var(--accent); /* Borde dorado de acento */
    box-shadow: 0 12px 32px rgba(0,7,88, 0.08); /* Sombra más fuerte */
}

/* Responsive (para móviles) */
@media (max-width: 1200px) {
    .schools-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 logos por fila */
    }
}

@media (max-width: 768px) {
    .schools-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 logos por fila */
    }
    .schools-header h1 {
        font-size: 2.6rem;
    }
    .school-card {
        height: 120px;
    }
}

@media (max-width: 576px) {
    .schools-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 logos por fila */
    }
    .school-card {
        padding: 15px;
    }
}
/* Botón Flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #FFF;
}
/* --- Estilos Indumentaria Comercial --- */

.hero-comercial {
    height: 60vh;
    background-color:#9bbcda;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-comercial h1 {
    color: var(--white);
    font-size: 3.5rem;
}

.intro-comercial {
    padding: 80px 10%;
    text-align: center;
    background-color: var(--white);
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.intro-text p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #666;
}

/* Clases para las fotos del Grid Comercial */
.com-item-1 { background-image: url('img/waterchombas.png'); }
.com-item-2 { background-image: url('img/visionremera.png'); }


/* Clases para las fotos del Grid industrial*/
.com-item-3 { background-image: url('img/abrudel.jpeg'); }
.com-item-4 { background-image: url('img/solis.jpeg'); }

/* Clases para las fotos del Grid hotelera */
.com-item-5 { background-image: url('img/huertita.jpeg'); }
.com-item-6 { background-image: url('img/potrero.jpeg'); }

/* Clases para las fotos del Grid gastronommica */
.com-item-7 { background-image: url('img/salmon.jpeg'); }
.com-item-8 { background-image: url('img/sarten.jpeg'); }


.cta-comercial {
    padding: 100px 5%;
    text-align: center;
    background-color: var(--primary);
    color: var(--white);
}

.cta-comercial h2 {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 2rem;
}

/* Ajuste de los textos en el overlay para que sean legibles */
.overlay p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}
/* =========================================
   OPTIMIZACIÓN PARA CELULARES (RESPONSIVE)
   ========================================= */

@media (max-width: 768px) {
    /* Navbar: Escondemos el menú y mostramos la hamburguesa */
    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        color: var(--primary);
        cursor: pointer;
    }

    .nav-menu {
        display: none; /* Se esconde por defecto */
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        text-align: center;
        gap: 15px;
    }

    /* Clase que activaremos con JS para mostrar el menú */
    .nav-menu.active {
        display: flex;
    }

    .dropdown-content {
        position: static; /* En celulares, el menú desplegable fluye hacia abajo */
        box-shadow: none;
        background: var(--gray);
    }

    /* Grid de Novedades: Una sola columna */
    .grid-section {
        grid-template-columns: 1fr;
    }

    /* FAQ y Ubicación: Ajuste de espacios */
    .info-section {
        padding: 50px 5%;
    }

    .info-container {
        grid-template-columns: 1fr; /* Apilamos una arriba de otra */
        gap: 30px;
    }

    .faq-card, .location-card {
        padding: 30px 20px;
    }

    .faq-card h2, .location-card h2 {
        font-size: 2rem;
    }

    /* Ubicación: Ajuste del mapa */
    .location-details {
        flex-direction: column;
        text-align: center;
    }

    .map-frame {
        height: 250px; /* Mapa más chico en celulares */
    }

    /* Sección de Botones/Bordado/Costura */
    .features-section {
        flex-direction: column;
        gap: 30px;
    }
    
    .img-placeholder {
        height: 350px; /* Menos altura en móvil para no scrollear tanto */
    }
}
/* =========================================
   OPTIMIZACIÓN PARA CELULARES (RESPONSIVE)
   ========================================= */

/* Ocultar el icono de menú en computadoras */
.menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    /* 1. Navbar y Menú Hamburguesa */
    .menu-toggle {
        display: block; /* Aparece en celulares */
        font-size: 1.8rem;
        color: var(--primary);
        cursor: pointer;
    }

    .nav-menu {
        display: none; /* Se oculta por defecto */
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        text-align: center;
        gap: 20px;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex; /* Se muestra al tocar las rayitas */
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        background: var(--gray);
    }

    /* 2. FAQ y Ubicación (Se apilan uno abajo del otro) */
    .info-container {
        grid-template-columns: 1fr !important; /* Cambia de 2 columnas a 1 */
        gap: 30px;
    }

    .faq-card, .location-card {
        padding: 30px 20px;
    }

    .faq-card h2, .location-card h2 {
        font-size: 1.8rem;
    }

    /* 3. Ajuste de Mapa y Ubicación */
    .location-details {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .map-frame iframe {
        width: 100%;
        height: 250px;
    }

    /* 4. Sección de Botones/Bordado/Costura */
    .features-section {
        flex-direction: column;
        gap: 20px;
    }

    .img-placeholder {
        height: 300px; /* Reducimos la altura para que no sea infinito el scroll */
    }

    /* 5. Banner Principal */
    .hero-banner h1 {
        font-size: 2.2rem;
    }
}
/* =========================================
   ESTILOS PÁGINA DE SHOPS (NUEVA)
   ========================================= */

.shops-page {
    background-color: var(--f4f4f4); /* Usamos el gris claro corporativo como fondo */
}

.shops-main-section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* --- Encabezado --- */
.shops-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px; /* Margen inferior para separar la grilla */
}

.shops-header h1 {
    font-family: 'Playfair Display', serif;
    font-style: italic; /* Important for the desired look */
    color: var(--primary);
    font-size: 3.2rem; /* Título principal, más grande */
    margin-bottom: 20px;
}

.shops-header p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; /* Medium content, similar a subtítulos */
    color: var(--primary); /* Usamos el color primario como en escuelas */
    font-size: 1.1rem;
    line-height: 1.6;
}

/* --- Grilla de Logos --- */
.shops-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 logos por fila como en escuelas */
    gap: 30px; /* Espacio entre las tarjetas */
}

/* --- Tarjeta de Shop (Individual) --- */
.shop-card {
    background: var(--white);
    padding: 30px; /* Padding generoso */
    border-radius: 15px; /* Esquinas redondeadas corporativas */
    box-shadow: 0 8px 24px rgba(0,7,88, 0.04); /* Sombra suave con color primario */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px; /* Altura fija para ordenar la grilla */
    overflow: hidden; /* Contener el logo */
    transition: 0.3s ease; /* Para el efecto hover */
    border: 2px solid transparent; /* Preparar para el borde hover */
}

/* Imagen dentro de la tarjeta */
.shop-card img {
    max-width: 90%; /* Escalar logo sin deformar */
    max-height: 140px; /* Altura máxima del logo */
    width: auto;
    height: auto;
    display: block;
}

/* --- Efecto Hover para Tarjeta --- */
.shop-card:hover {
    transform: scale(1.05); /* Escala suave */
    border-color: var(--accent); /* Borde dorado de acento */
    box-shadow: 0 12px 32px rgba(0,7,88, 0.08); /* Sombra más fuerte */
}

/* Responsive (para móviles) */
@media (max-width: 992px) {
    .shops-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 logos por fila */
    }
}

@media (max-width: 768px) {
    .shops-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 logos por fila */
    }
    .shops-header h1 {
        font-size: 2.6rem;
    }
    .shop-card {
        height: 140px;
    }

.hero-banner {
    background-image: url('banner-mobile.png'); /* Móvil */
    background-position: center; /* o "top" si querés que se vea más la parte superior */
  }
.intro-content h2 {
  font-size: 2.2rem;
}

.intro-content p {
  font-size: 1rem;
}

}
.shop-card {
    /* ... (tus estilos anteriores) ... */
    text-decoration: none; /* Quita cualquier subrayado */
    cursor: pointer;       /* Asegura que aparezca la mano al pasar el mouse */
    display: flex;         /* Mantiene el logo centrado */
}

/* =========================================
   SECCIÓN INTRO ENTRE HERO Y GRID
========================================= */

.intro-section {
  padding: 80px 10%;
  background-color: var(--white);
  text-align: center;
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
}

.intro-content h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.intro-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}

/* --- Estilos Página Trabajá con nosotros --- */

.hiring-hero {
    background-color: #031296 ;
    background-size: cover;
    background-position: center;
    padding: 100px 5%;
    text-align: center;
    color: var(--white);
}

.hiring-hero h1 {
    color: var(--white);
    font-size: 3rem;
}

.hiring-main {
    padding: 80px 5%;
    background-color: var(--gray);
}

.hiring-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hiring-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hiring-areas {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--primary);
}

.area-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Tarjeta del Formulario/Acción */
.hiring-form-card {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,7,88, 0.1);
    text-align: center;
}

.hiring-form-card h3 {
    margin-bottom: 15px;
}

.hiring-btn-primary, .hiring-btn-secondary {
    display: block;
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: 0.3s ease;
}

.hiring-btn-primary {
    background-color: #25d366;
    color: white;
}

.hiring-btn-secondary {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.hiring-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3); }
.hiring-btn-secondary:hover { background: var(--primary); color: white; }

.hiring-note {
    display: block;
    margin-top: 20px;
    font-size: 0.8rem;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .hiring-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .area-item {
        justify-content: center;
    }

    .hiring-hero h1 {
        font-size: 2.2rem;
    }
}

/* Contenedor de cada card + texto */
.shop-item{
  display: flex;
  flex-direction: column;
  align-items: center;   /* centra el texto debajo de la card */
}

/* Texto debajo de cada card */
.shop-caption{
  margin-top: 12px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #555;
  max-width: 260px;      /* evita que se haga muy ancho */
  line-height: 1.4;
}


.shop-item:hover .shop-caption{
  color: var(--primary);
}
``


/* --- Estilos Página de Condiciones --- */

.terms-hero {
    background-image: linear-gradient(rgba(3, 18, 150, 0.7), rgba(3, 18, 150, 0.7)), url('img/banner-condiciones.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 5%;
    text-align: center;
    color: var(--white);
}

.terms-container {
    max-width: 900px;
    margin: -50px auto 80px; /* Sube un poco sobre el banner */
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.term-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 7, 88, 0.08);
    display: flex;
    gap: 30px;
    align-items: flex-start;
    border-left: 5px solid var(--accent); /* Detalle en color Oro */
    transition: transform 0.3s ease;
}

.term-card:hover {
    transform: translateY(-5px);
}

.term-icon {
    font-size: 2.5rem;
    color: var(--secondary); /* Tu azul #031296 */
    min-width: 60px;
}

.term-content h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-style: italic;
}

.term-content p {
    color: #555;
    line-height: 1.7;
}

.payment-methods {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.payment-methods span {
    background: var(--gray);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.terms-note {
    background: #fff8e1; /* Un color crema suave para resaltar la nota */
    padding: 25px;
    border-radius: 10px;
    border: 1px dashed var(--accent);
    text-align: center;
    color: #795548;
}

/* Ajuste Celular */
@media (max-width: 768px) {
    .term-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 30px 20px;
    }
    
    .term-icon {
        margin: 0 auto;
    }

    .payment-methods {
        justify-content: center;
    }
}

/* --- Ajuste del Hero para centrado perfecto --- */
.terms-hero, .hiring-hero {
    height: 60vh; /* Ajustamos altura para que no sea tan gigante */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    overflow: hidden; /* Evita cualquier desplazamiento raro */
}

.hero-content {
    width: 100%; /* Obligamos al contenido a ocupar todo el ancho */
    max-width: 1000px; /* Pero con un tope para que no se estiren tanto las líneas */
    margin: 0 auto;
}

.terms-hero h1, .hiring-hero h1 {
    margin: 0 auto 15px auto !important; /* Forzamos el margen automático a los costados */
    display: block;
    width: 100%;
    font-size: 3.5rem;
    line-height: 1.2;
}

.terms-hero p, .hiring-hero p {
    margin: 0 auto;
    max-width: 600px; /* Para que el texto de abajo no quede en una sola línea eterna */
}


/* --- Estilos Página Error 404 --- */

.error-page {
    background-color: var(--gray);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-container {
    text-align: center;
    padding: 20px;
}

.error-logo {
    max-width: 180px;
    margin-bottom: 30px;
}

.error-content h1 {
    font-size: 8rem;
    color: var(--secondary); /* Tu azul #031296 */
    margin: 0;
    line-height: 1;
    font-family: 'Montserrat', sans-serif; /* Número en sans para que sea legible */
    font-weight: 600;
    font-style: normal;
}

.error-content h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-style: italic; /* Tu toque distintivo Playfair */
}

.error-content p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Botón de regreso */
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--secondary); /* Azul #031296 */
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(3, 18, 150, 0.2);
}

.btn-back:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 7, 88, 0.3);
}

/* Ajuste Celular */
@media (max-width: 768px) {
    .error-content h1 {
        font-size: 5rem;
    }
    .error-content h2 {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .terms-hero h1, .hiring-hero h1 {
        font-size: 2.2rem;
    }
}
