/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 6.5rem;

  /*========== Colors ==========*/
  --first-color: #D4AF37;
  --first-color-alt: #B8860B;
  --title-color: #FFFFFF;
  --text-color: #E2E2E2;
  --text-color-light: #A5A5A5;
  --body-color: #0B0B0B;
  --container-color: #161616;
  --white-color: #FFFFFF;
  --black-color: #000000;
  --black-color-alt: #111111;

  /*========== Font and typography ==========*/
  --body-font: 'Montserrat', sans-serif;
  --title-font: 'Playfair Display', serif;
  --biggest-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== Margins Bottom ==========*/
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.6;
}

h1,
h2,
h3 {
  color: var(--title-color);
  font-family: var(--title-font);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

button,
input {
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: 4.5rem 0 2rem;
}

.section__title {
  font-size: var(--h1-font-size);
  text-align: center;
  margin-bottom: var(--mb-1);
}

.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
  color: var(--first-color);
  text-align: center;
  margin-bottom: var(--mb-3);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.container {
  max-width: 1024px;
  margin-left: var(--mb-1-5);
  margin-right: var(--mb-1-5);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.main {
  overflow: hidden;
}

/*=============== HEADER ===============*/
.header {
  width: 100%;
  background-color: var(--white-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  transition: .4s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  height: 100%;
  padding: .25rem 0;
  position: relative;
  top: 4px;
}

.nav__logo-img {
  width: auto;
  height: 100px;
  max-width: 250px;
  object-fit: contain;
  transition: transform .3s ease;
}

.nav__logo-img:hover {
  transform: scale(1.03);
}

.nav__toggle {
  display: block;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-left: auto;
  z-index: 20;
}


.nav__social {
  display: flex;
  align-items: center;
  column-gap: 2rem;
}

.nav__social-link {
  font-size: 1.8rem;
  color: var(--black-color);
  transition: .3s;
  display: flex;
}

.nav__social-link:hover {
  color: var(--first-color);
}

.nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2.5rem;
}

.nav__link {
  color: var(--black-color);
  font-weight: var(--font-semi-bold);
  text-transform: uppercase;
  transition: .3s;
}

.nav__link:hover {
  color: var(--first-color);
}

.nav__close {
  position: absolute;
  top: .75rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--black-color);
  cursor: pointer;
}

.show-menu {
  top: 0;
}

.scroll-header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
}

.active-link {
  position: relative;
  color: var(--first-color);
}

.active-link::after {
  content: '';
  position: absolute;
  bottom: -.5rem;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--first-color);
}

/*=============== MOBILE NAV ===============*/
@media screen and (max-width: 767px) {
  :root {
    --header-height: 6rem;
  }

  body {
    margin-top: var(--header-height);
  }

  .nav {
    position: relative;
    height: var(--header-height);
  }

  .nav__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 4px;
    height: auto;
    padding: 0;
    z-index: 15;
  }

  .nav__logo-img {
    height: 90px;
    width: auto;
    max-width: 280px;
    max-height: none;
  }

  .nav__toggle {
    display: block;
    margin-left: auto;
    z-index: 20;
  }

  .nav__social {
    display: none !important;
  }

  .nav__menu {
    position: fixed;
    background-color: var(--white-color);
    top: -110%;
    left: 0;
    width: 100%;
    padding: 7rem 0 3rem;
    transition: .4s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 1.5rem 1.5rem;
    z-index: var(--z-fixed);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
  }

  .nav__menu.show-menu {
    top: 0;
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
  }

  .nav__item .nav__link {
    color: var(--first-color);
    font-weight: var(--font-semi-bold);
  }

  .nav__link:hover {
    color: var(--black-color);
  }
}

/*=============== HOME ===============*/
.home {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('../img/WhatsApp Image 2026-03-06 at 9.28.33 AM (4).jpeg');
  background-size: cover;
  background-position: center;
  text-align: center;
  margin-top: calc(-1 * var(--header-height));
}

.home__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home__title {
  font-size: var(--biggest-font-size);
  margin-bottom: var(--mb-1);
}

.home__title span {
  color: var(--first-color);
}

.home__description {
  margin-bottom: var(--mb-2);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.home__buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: var(--mb-3);
  flex-wrap: wrap;
}

/* Sliding Gallery */
.home__slider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  padding: 1rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.home__slider-track {
  display: flex;
  width: calc(250px * 10);
  animation: scroll 30s linear infinite;
}

.home__slider-item {
  width: 250px;
  height: 150px;
  padding: 0 10px;
  flex-shrink: 0;
}

.home__slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: .5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: .3s;
}

.home__slider-item img:hover {
  border-color: var(--first-color);
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 5));
  }
}

/*=============== BUTTONS ===============*/
.button {
  display: inline-block;
  padding: 1rem 1.75rem;
  border-radius: .5rem;
  font-weight: var(--font-medium);
  transition: .3s;
}

.button--gold {
  background-color: var(--first-color);
  color: var(--black-color);
}

.button--gold:hover {
  background-color: var(--first-color-alt);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.button--outline {
  border: 2px solid var(--white-color);
  color: var(--white-color);
}

.button--outline:hover {
  background-color: var(--white-color);
  color: var(--black-color);
}

.button--small {
  padding: .75rem 1.5rem;
  background-color: var(--container-color);
  color: var(--first-color);
  border: 1px solid var(--first-color);
}

/*=============== TRUST BLOCK ===============*/
.trust {
  background-color: var(--black-color);
  padding: 4rem 0;
}

.trust__container {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.trust__card {
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-radius: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: .4s;
}

.trust__card:hover {
  transform: translateY(-10px);
  border-color: var(--first-color);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
}

.trust__icon {
  font-size: 2.5rem;
  color: var(--first-color);
  margin-bottom: var(--mb-1);
}

.trust__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-5);
}

.trust__description {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

/*=============== GALLERY ===============*/
.gallery__filters {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: var(--mb-3);
  flex-wrap: wrap;
}

.gallery__filter-btn {
  background: transparent;
  color: var(--text-color-light);
  padding: .5rem 1rem;
  border-radius: .5rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: .3s;
  text-transform: uppercase;
  font-size: var(--smaller-font-size);
  letter-spacing: 1px;
}

.gallery__filter-btn:hover {
  color: var(--first-color);
  border-color: var(--first-color);
}

.active-filter {
  background-color: var(--first-color);
  color: var(--black-color);
  border-color: var(--first-color);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  min-height: 400px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  height: 300px;
  cursor: pointer;
  transition: transform .4s, opacity .4s;
}

.gallery__item.hide {
  display: none;
}

.gallery__item.show {
  animation: fadeIn .5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: .5rem;
  opacity: 0;
  transition: .4s;
}

.gallery__overlay i {
  font-size: 2rem;
  color: var(--first-color);
}

.gallery__overlay span {
  color: var(--white-color);
  font-family: var(--title-font);
  font-size: var(--h3-font-size);
  text-align: center;
  padding: 0 1rem;
}

.gallery__item:hover .gallery__img {
  transform: scale(1.1);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

/*=============== LIGHTBOX MODAL ===============*/
.modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 2rem;
  backdrop-filter: blur(5px);
}

.modal__content {
  max-width: 900px;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}

.modal__content img,
.modal__video {
  max-width: 100%;
  max-height: 80vh;
  border: 2px solid var(--first-color);
  border-radius: .5rem;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--white-color);
  font-size: 3rem;
  cursor: pointer;
  z-index: 1001;
  transition: .3s;
}

.modal__close:hover {
  color: var(--first-color);
  transform: scale(1.1);
}

.modal__video {
  display: none;
  width: 100%;
}

/*=============== PRICING ===============*/
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing__card {
  background-color: var(--black-color-alt);
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: .4s;
  display: flex;
  flex-direction: column;
}

.pricing__card:hover {
  transform: translateY(-10px);
  border-color: var(--first-color);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
}

.pricing__img-container {
  height: 220px;
  overflow: hidden;
}

.pricing__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

.pricing__card:hover .pricing__img {
  transform: scale(1.1);
}

.pricing__content {
  padding: 2rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.pricing__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
}

.pricing__price {
  display: block;
  font-size: 2rem;
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-1);
}

.pricing__description {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  margin-bottom: var(--mb-2);
  line-height: 1.6;
}

.pricing__content .button {
  width: 100%;
  margin-top: auto;
}

.pricing__more {
  margin-top: 4rem;
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(145deg, #151515, #080808);
  border-radius: 1.5rem;
  border: 1px dashed var(--first-color);
}

.pricing__more p {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1-5);
  font-family: var(--title-font);
}

.button--whatsapp {
  background-color: #25D366;
  color: #fff;
}

.button--whatsapp:hover {
  background-color: #128C7E;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/*=============== CONTACT ===============*/
.contact__container {
  row-gap: 3rem;
}

.contact__info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.contact__card {
  background-color: var(--container-color);
  padding: 1.5rem;
  border-radius: .75rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact__icon {
  font-size: 1.5rem;
  color: var(--first-color);
  margin-bottom: var(--mb-0-5);
}

.contact__title {
  font-size: var(--h3-font-size);
}

.contact__data {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.contact__content {
  text-align: center;
}

.contact__form-title {
  margin-bottom: var(--mb-1);
}

.contact__content p {
  margin-bottom: var(--mb-2);
}

.contact__coverage-highlight {
  font-size: 1.25rem;
  color: var(--first-color);
  background: rgba(212, 175, 55, 0.1);
  padding: 1rem;
  border-radius: .5rem;
  display: inline-block;
  margin-top: var(--mb-1);
}

.contact__special {
  grid-column: 1 / -1;
  background-color: var(--black-color-alt);
  padding: 3rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact__special p {
  margin-bottom: var(--mb-2);
  font-size: var(--normal-font-size);
}

/*=============== FOOTER ===============*/
.footer {
  background-color: #050505;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding-bottom: 3rem;
}

.footer__container {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  row-gap: 3rem;
  text-align: left;
}

.footer__logo {
  font-size: 1.5rem;
  color: var(--first-color);
  font-family: var(--title-font);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-1);
  display: block;
}

.footer__description {
  margin-bottom: var(--mb-1-5);
}

.footer__location {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--text-color-light);
}

.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.footer__link {
  color: var(--text-color);
  transition: .3s;
}

.footer__link:hover {
  color: var(--first-color);
}

.footer__socials {
  display: flex;
  gap: 1.25rem;
  margin-bottom: var(--mb-2);
}

.footer__social {
  font-size: 1.5rem;
  color: var(--white-color);
  transition: .3s;
}

.footer__social:hover {
  color: var(--first-color);
  transform: translateY(-5px);
}

.footer__link-wa {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--white-color);
  font-weight: var(--font-medium);
  transition: .3s;
}

.footer__link-wa:hover {
  color: var(--first-color);
}

.footer__copy {
  margin-top: 5rem;
  text-align: center;
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
}

/*=============== WHATSAPP BUTTON ===============*/
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25D366;
  color: #FFF;
  padding: .75rem 1.5rem;
  border-radius: 3rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  z-index: var(--z-fixed);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  font-weight: var(--font-semi-bold);
  transition: .3s;
  animation: pulse 2s infinite;
}

.whatsapp-btn i {
  font-size: 1.5rem;
}

.whatsapp-btn:hover {
  transform: translateY(-5px) scale(1.05);
  background-color: #128C7E;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media screen and (max-width: 350px) {
  .whatsapp-text {
    display: none;
  }

  .whatsapp-btn {
    padding: 1rem;
    border-radius: 50%;
  }
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  left: 2rem;
  bottom: -20%;
  background-color: var(--first-color);
  color: var(--black-color);
  padding: .5rem;
  border-radius: .4rem;
  display: flex;
  z-index: var(--z-tooltip);
  transition: .4s;
}

.scrollup:hover {
  transform: translateY(-.25rem);
}

.show-scroll {
  bottom: 2rem;
}

/*=============== ANIMATIONS (REVEAL) ===============*/
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all .8s ease;
}

.active-reveal {
  opacity: 1;
  transform: translateY(0);
}

/*=============== FAQ / PREGUNTAS FRECUENTES ===============*/
.faq {
  background-color: var(--black-color-alt);
}

.faq__container {
  max-width: 800px;
  margin: 0 auto;
}

.faq__grid {
  grid-template-columns: 1fr;
  row-gap: 1.5rem;
}

.faq__item {
  background: var(--container-color);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: .3s;
}

.faq__item:hover {
  border-color: var(--first-color);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.05);
}

.faq__question {
  font-size: var(--h3-font-size);
  color: var(--first-color);
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.faq__answer {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  line-height: 1.6;
}

/*=============== MEDIA QUERIES ===============*/
@media screen and (min-width: 767px) {
  body {
    margin: 0;
  }

  .nav {
    height: var(--header-height);
    column-gap: 3rem;
  }

  .nav__toggle,
  .nav__close {
    display: none;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 3rem;
  }

  .home {
    height: 100vh;
  }

  .contact__info {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 576px) {
  .home__title {
    font-size: 1.8rem;
  }

  .home__description {
    padding: 0 1rem;
  }

  .gallery__grid,
  .pricing__grid {
    grid-template-columns: 1fr;
  }

  .contact__info {
    grid-template-columns: 1fr;
  }

  .whatsapp-btn {
    right: 1rem;
    bottom: 1rem;
  }

  .scrollup {
    left: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
}