/* Estilo para el Efecto Parallax Scrolling */
.parallax-hero {
    background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1920&q=80');
    height: 80vh; /* Ocupa el 80% de la pantalla */
    background-attachment: fixed; /* Esto crea el efecto parallax */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

/* Manejador de Campañas Publicitarias (Punto 2) */
.banner-campaña {
    background: linear-gradient(90deg, #b8860b, #ffd700); /* Dorado elegante */
    color: #1a1a1a;
    font-weight: bold;
    padding: 10px 0;
    text-align: center;
    border-bottom: 2px solid #8b4513;
}

/* Galería Fotográfica (Punto 4) */
.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.05); /* Efecto interactivo */
}