* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* Hero Image Styles */

.hero-image {
    background-image:linear-gradient(to top,  rgba(0, 0, 0, 0.601), rgba(0, 0, 0, 0)), url('/img/IMG_2906_16x9_2.jpg');
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-attachment: fixed; */
}


.hero-text {
    color: white;
    text-align: center;
    position: absolute;
    top: 79%;
    left: 40%;
    transform: translate(-70%, -70%);
    
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 100;
    margin-bottom: 50px;
    text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.342);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 2px;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-text a {
  transition: ease 0.3s;
  font-weight: 100;
  /* font-size: 1rem; */
}

.hero-text .border-btn {
  border: 1px solid rgba(255, 255, 255, 0.79);
  border-radius: 40px;
    padding: 20px 20px;
}

.border-btn:hover {
  background-color: rgba(255, 255, 255, 0.026);
  color: #000000;
  text-decoration: none;
  box-shadow: 1px 1px 10px rgba(255, 255, 255, 0.342);
}

.hero-text a:hover {
    
    /* background-color: #555; */
    color: white;
    
    text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.533);
}


/* Catalogo Overlay Styles */

.catalogo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
}

.catalogo-overlay.active {
  opacity: 1;
  visibility: visible;
}


.catalogo-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 4rem 2rem;
  color: white;
  overflow-y: auto;

}

.catalogo-lista {
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
  padding: 0;

}


.catalogo-item {
  margin-bottom: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);

}

.catalogo-item h3 {
  margin-bottom: 0.5rem;
  font-weight: 400;
  font-size: 1.5rem;
}

.catalogo-close {
  position: fixed;
  top: 2rem;
  right: 2rem;

  background: none;
  border: none;
  color: white;
  font-size: 2.2rem;
  font-weight: 300;
  cursor: pointer;
  z-index: 10000;

  transition: transform 0.2s ease, opacity 0.2s ease;
}

.catalogo-close:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.catalogo-links a {
  /* display: inline-block; */
  margin-right: 2rem;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.catalogo-links a:hover {
  /* color: white; */
  border-bottom: 1px solid rgba(255, 255, 255, 0.397);
}

/* Breakpoints responsivos */

@media (max-width: 768px) {
    .hero-image {
        background-image:linear-gradient(to top,  rgba(0, 0, 0, 0.601), rgba(0, 0, 0, 0)), url('/img/portada_mariaguiraoWeb2_vertical.jpg');
        background-position: left;
        background-size: contain;
    }
    .hero-text h1 {
        font-size: 2.1rem;
         
    }
    .hero-text {
        top: 70%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .hero-text a {
        display: block;
    }
    .hero-text .border-btn {
        padding: 20px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-image {
        background-image:linear-gradient(to top,  rgba(0, 0, 0, 0.601), rgba(0, 0, 0, 0)), url('/img/portada_mariaguiraoWeb2_vertical.jpg');
        background-position: right;
        background-size: cover;
        
    }
    .hero-text h1 {
        font-size: 2rem;
         
    }
    .hero-text {
        top: 65%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .hero-text .border-btn {
        padding: 15px 15px;
        font-size: 0.8rem;
    }
    .catalogo-content {
    padding: 3rem 1.5rem;
  }
}

