.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  padding: 1rem 3rem;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.25rem;
  opacity: 0.7;
}
.header__logo-image {
  width: 100px;
}
.header__container-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header__nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.header__nav-item {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.header__nav-item:hover {
  color: #ff6b35;
}
.header__cta {
  background: #ff6b35;
  color: #ffffff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.header__cta:hover {
  background: rgb(255, 69.6336633663, 2);
}
.header__cta-icon {
  width: 16px;
  height: 16px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}
.header__hamburger-line {
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.header__hamburger:hover .header__hamburger-line {
  background: #ff6b35;
}
.header__hamburger.active .header__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: #ff6b35;
}
.header__hamburger.active .header__hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.header__hamburger.active .header__hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: #ff6b35;
}

@media (max-width: 768px) {
  .header__container-right {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 80px;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }
  .header__nav.active {
    right: 0;
  }
  .header__nav-item {
    margin: 1rem 0;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  .header__nav-item:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateX(10px);
  }
  .header__cta {
    display: none;
  }
  .header__hamburger {
    display: flex;
  }
  .header::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    pointer-events: none;
  }
  .header.menu-open::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.footer {
  background: linear-gradient(135deg, #1f2937 0%, rgb(21.8081395349, 28.8430232558, 38.6918604651) 50%, rgb(36.5151162791, 48.2941860465, 64.7848837209) 100%);
  color: #ffffff;
  padding: 5rem 0 0 0;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.8) 0%, rgba(30, 58, 138, 0.6) 50%, rgba(220, 38, 38, 0.4) 100%);
}
.footer__container {
  margin: 0 auto;
}
.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding: 3rem 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__brand .footer__logo {
  margin-bottom: 2rem;
}
.footer__brand .footer__logo-image {
  width: 120px;
  height: auto;
}
.footer__description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 3rem;
  font-size: 0.95rem;
}
.footer__social {
  display: flex;
  gap: 1rem;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer__social-link:hover {
  border-color: #ff6b35;
  color: #ff6b35;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}
.footer__social-link svg {
  width: 18px;
  height: 18px;
}
.footer__section-title {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
.footer__link:hover {
  color: #ff6b35;
  transform: translateX(5px);
}
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}
.footer__contact-icon {
  color: #ff6b35;
  flex-shrink: 0;
}
.footer__bottom {
  padding: 3rem 3rem;
  background: rgba(0, 0, 0, 0.3);
}
.footer__bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer__copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}
.footer__legal {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer__legal-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}
.footer__legal-link:hover {
  color: #ff6b35;
}
.footer__developer {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}
.footer__developer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.footer__developer-link:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .footer__brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 4rem 0 0 0;
  }
  .footer__main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer__bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .footer__legal {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .footer__container {
    padding: 0 2rem;
  }
  .footer__social {
    justify-content: center;
  }
  .footer__legal {
    flex-direction: column;
    gap: 1rem;
  }
}
.hero--galeria {
  height: 40vh;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(30, 58, 138, 0.8) 50%, rgba(220, 38, 38, 0.7) 100%);
  position: relative;
}

.hero--galeria::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/gallery/IMG_8354.jpg") center/cover;
  opacity: 0.35;
  z-index: 0;
}

.hero--galeria::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero--galeria .hero__content {
  position: relative;
  z-index: 2;
}

.galeria {
  background: #fff;
  color: #1f2937;
  padding: 3rem 0 2rem;
}
.galeria__container {
  max-width: 90%;
  margin: 0 auto;
}
.galeria__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.galeria__item {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}
.galeria__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.galeria__item:hover img {
  transform: scale(1.06);
}
.galeria__lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
}
.galeria__lightbox.open {
  display: flex;
}
.galeria__lightbox-image {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.galeria__lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: transparent;
  color: #fff;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .galeria__container {
    max-width: 94%;
  }
}

/*# sourceMappingURL=galeria.css.map */
