* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #f9f9f9;
}

header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.logo img {
    width: 70px;
    display: block;
    margin: 0 auto;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px 0;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1rem;
}

.hero {
    background: url('img/logo.png') no-repeat center/cover;
    text-align: center;
    padding: 110px 20px;
    color: #fff;
    margin-top: 70px;
    min-height: 900px; /* Aumenta la altura mínima para computadoras */
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Capa oscura para mejorar contraste */
    z-index: 1;
}

.hero h1, .hero p, .hero .cta {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem; /* Mayor tamaño para computadoras */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Sombra para legibilidad */
}

.hero p {
    font-size: 1.4rem; /* Mayor tamaño para mejor lectura */
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta {
    background-color: #e63946;
    color: #fff;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta:hover {
    background-color: #6a994e;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.productos-grid, .eventos-grid, .zonas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.producto img, .eventos-grid img {
    width: 100%;
    border-radius: 10px;
}

.producto h3 {
    font-size: 1.5rem;
    margin: 10px 0;
}

.producto p {
    font-size: 1rem;
    color: #666;
}

.zonas-grid a {
    background-color: #6a994e;
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.zonas-grid a:hover {
    background-color: #e63946;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

footer h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

footer p {
    font-size: 1rem;
    margin-bottom: 10px;
}

footer a {
    color: #e63946;
    text-decoration: none;
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.whatsapp-btn img {
    width: 50px;
}

@media (max-width: 768px) {
    .hero {
        min-height: 300px; /* Menor altura para móviles */
        padding: 80px 20px;
    }
    .hero h1 {
        font-size: 2rem; /* Tamaño ajustado para móviles */
    }
    .hero p {
        font-size: 1.1rem;
    }
}