/* =========================================
   ESTILOS BASE
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f7f2;
    color: #333;
}

/* Navegación */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 8%;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #065535;
}

.logo span {
    color: #ce1126;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ce1126;
}

/* =========================================
   BANNER PRINCIPAL (HERO)
   ========================================= */
.hero {
    height: 75vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1565299585323-38d6b0865b47?auto=format&fit=crop&q=80&w=1200') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ce1126;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #a00d1d;
    transform: scale(1.05);
}

/* =========================================
   SECCIONES DE CONTENIDO
   ========================================= */
.content-section {
    padding: 5rem 10%;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.content-section h2 {
    color: #065535;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Accesos Rápidos / Categorías */
.categories {
    padding-bottom: 5rem;
    padding-left: 8%;
    padding-right: 8%;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.image-placeholder {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.card p {
    margin-bottom: 1.5rem;
    color: #777;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    background: #1a1a1a;
    color: #999;
    text-align: center;
    padding: 3rem;
}

/* Móvil */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .navbar { flex-direction: column; gap: 15px; }
    .nav-links li { margin: 0 10px; }
}