/* =========================================================
   RESET
========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #111111;
  color: #111111;
}

button {
  font-family: inherit;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;

  background: #111111;
  color: #f5f2eb;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 9998;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);

  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0.4s ease;
}

.site-header.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-header-logo {
  width: 135px;
  height: auto;
  display: block;
}


/* =========================================================
   COVER
========================================================= */

.cover {
  min-height: 100vh;

  background:
    linear-gradient(
      rgba(0, 0, 0, 0.48),
      rgba(0, 0, 0, 0.58)
    ),
    url("images/cover.jpg");

  background-size: cover;
  background-position: center;

  color: #f5f2eb;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  position: relative;
}

.cover-content {
  width: min(900px, 90%);
}

.brand {
  font-size: 12px;
  letter-spacing: 9px;
  margin-bottom: 12px;
}

.subtitle {
  font-size: 9px;
  letter-spacing: 5px;
  opacity: 0.85;
}

.line {
  width: 50px;
  height: 1px;
  background: currentColor;
  margin: 28px auto;
  opacity: 0.7;
}

.cover h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(55px, 8vw, 105px);
  line-height: 0.88;
  font-weight: 400;
  letter-spacing: -4px;
}

.description {
  max-width: 500px;
  margin: 35px auto 0;

  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 1px;

  opacity: 0.85;
}

.open-button {
  margin-top: 42px;

  padding: 15px 25px;

  background: transparent;
  border: 1px solid rgba(245, 242, 235, 0.7);

  color: #f5f2eb;

  font-size: 9px;
  letter-spacing: 3px;

  cursor: pointer;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.open-button span {
  margin-left: 12px;
}

.open-button:hover {
  background: #f5f2eb;
  color: #111111;
  transform: translateY(-2px);
}


/* =========================================================
   INTRO
========================================================= */

.packages-header {
  min-height: 420px;

  background: #f5f2eb;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  padding: 80px 30px;
}

.section-number {
  font-size: 9px;
  letter-spacing: 4px;
  margin-bottom: 25px;
}

.packages-header h2 {
  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(50px, 7vw, 100px);
  line-height: 0.9;

  font-weight: 400;
  letter-spacing: -3px;
}

.packages-header > p:last-child {
  max-width: 560px;

  margin-top: 30px;

  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.7px;
}


/* =========================================================
   PACKAGES
========================================================= */

.packages {
  width: 100%;
}

.package-section {
  width: 100%;
  min-height: 100vh;

  display: grid;
  grid-template-columns: 1fr 1fr;
}

.package-dark {
  background: #111111;
  color: #f5f2eb;
}

.package-light {
  background: #f5f2eb;
  color: #111111;
}


/* =========================================================
   PACKAGE VISUAL
========================================================= */

.package-visual {
  width: 100%;
  height: 100%;

  min-height: 100vh;

  overflow: hidden;
}

.package-visual img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform 1s ease;
}

.package-section:hover .package-visual img {
  transform: scale(1.025);
}


/* =========================================================
   PACKAGE INFO
========================================================= */

.package-info {
  min-height: 100vh;

  padding: 75px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.package-number {
  font-size: 9px;
  letter-spacing: 4px;
  margin-bottom: 25px;
  opacity: 0.65;
}

.package-type {
  font-size: 9px;
  letter-spacing: 4px;
  margin-bottom: 15px;
  opacity: 0.7;
}

.package-info h3 {
  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(65px, 7vw, 115px);

  line-height: 0.85;

  font-weight: 400;

  letter-spacing: -5px;
}

.hours {
  margin-top: 35px;

  font-size: 11px;
  letter-spacing: 8px;
}

.package-line {
  width: 100%;
  height: 1px;

  background: currentColor;

  opacity: 0.25;

  margin: 32px 0;
}

.package-list {
  list-style: none;
}

.package-list li {
  font-size: 13px;
  line-height: 1.9;
}

.package-list li::before {
  content: "— ";
}

.price {
  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(55px, 6vw, 90px);

  line-height: 1;

  margin-top: 50px;

  letter-spacing: -3px;
}


/* =========================================================
   PACKAGE BUTTON
========================================================= */

.package-button {
  align-self: flex-start;

  margin-top: 35px;

  padding: 14px 20px;

  background: transparent;

  border: 1px solid currentColor;

  color: inherit;

  font-size: 8px;
  letter-spacing: 2.5px;

  cursor: pointer;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.package-button span {
  margin-left: 12px;
}

.package-dark .package-button:hover {
  background: #f5f2eb;
  color: #111111;
  transform: translateY(-2px);
}

.package-light .package-button:hover {
  background: #111111;
  color: #f5f2eb;
  transform: translateY(-2px);
}


/* =========================================================
   ORDEN DESKTOP
========================================================= */

#standard .package-info {
  order: 1;
}

#standard .package-visual {
  order: 2;
}

#premium .package-info {
  order: 1;
}

#premium .package-visual {
  order: 2;
}


/* =========================================================
   REGALO 2027 — VIP / PREMIUM
========================================================= */

.gift-box {
  width: 100%;

  margin-top: 38px;

  padding: 28px 30px 25px;

  border: 1px solid currentColor;

  position: relative;

  overflow: hidden;
}

.gift-label {
  font-size: 8px;
  letter-spacing: 5px;

  margin-bottom: 18px;

  opacity: 0.75;
}

.gift-box h4 {
  font-family: Georgia, "Times New Roman", serif;

  font-size: 25px;
  line-height: 1;

  font-weight: 400;

  margin-bottom: 20px;
}

.gift-options {
  width: 100%;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    auto
    minmax(0, 1fr);

  align-items: center;

  gap: 14px;
}

.gift-option {
  width: 100%;
  min-width: 0;

  height: 72px;

  padding: 0;

  position: relative;

  overflow: hidden;

  background: transparent;

  border: 1px solid currentColor;

  color: inherit;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}


/* Las fotos NO aparecen dentro de los botones */

.gift-option img {
  display: none !important;
}

.gift-option span {
  position: relative;

  z-index: 2;

  font-size: 9px;

  letter-spacing: 4px;

  text-align: center;
}

.gift-option small {
  display: none;
}

.package-light .gift-option:hover {
  background: #111111;

  color: #f5f2eb;

  transform: translateY(-2px);
}

.package-dark .gift-option:hover {
  background: #f5f2eb;

  color: #111111;

  transform: translateY(-2px);
}

.gift-or {
  width: 40px;
  height: 40px;

  border: 1px solid currentColor;

  border-radius: 50%;

  display: flex;

  align-items: center;
  justify-content: center;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 16px;

  flex-shrink: 0;
}

.gift-note {
  width: 100%;

  margin-top: 17px;

  font-size: 8px;

  letter-spacing: 0.6px;

  line-height: 1.5;

  text-align: left;

  white-space: nowrap;

  opacity: 0.75;
}


/* =========================================================
   MODAL DE REGALOS
========================================================= */

.gift-modal {
  position: fixed;

  inset: 0;

  z-index: 10000;

  background: rgba(0, 0, 0, 0.8);

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 30px;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.gift-modal.active {
  opacity: 1;

  visibility: visible;
}

.gift-modal-content {
  width: min(850px, 100%);

  background: #f5f2eb;

  color: #111111;

  display: grid;

  grid-template-columns: 1fr 1fr;

  position: relative;

  transform: translateY(20px);

  transition: transform 0.4s ease;
}

.gift-modal.active .gift-modal-content {
  transform: translateY(0);
}

.gift-modal-content > img {
  width: 100%;

  height: 100%;

  min-height: 450px;

  object-fit: cover;
}

.gift-modal-info {
  padding: 60px;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.gift-modal-info > p:first-child {
  font-size: 8px;

  letter-spacing: 4px;

  margin-bottom: 20px;
}

.gift-modal-info h3 {
  font-family: Georgia, "Times New Roman", serif;

  font-size: 60px;

  line-height: 0.9;

  font-weight: 400;

  margin-bottom: 25px;
}

.gift-modal-info > p {
  font-size: 12px;

  line-height: 1.8;

  opacity: 0.75;
}

.gift-modal-includes {
  margin-top: 28px;
}

.gift-modal-includes.is-hidden {
  display: none;
}

.gift-modal-includes > p {
  margin-bottom: 14px;

  font-size: 8px;

  letter-spacing: 4px;

  opacity: 0.65;
}

.gift-modal-includes ul {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 10px 18px;

  list-style: none;
}

.gift-modal-includes li {
  font-size: 10px;

  line-height: 1.45;
}

.gift-modal-includes li::before {
  content: "✓";

  margin-right: 7px;
}

.close-modal {
  position: absolute;

  top: 15px;
  right: 15px;

  width: 40px;
  height: 40px;

  border: none;

  background: #111111;

  color: #f5f2eb;

  font-size: 25px;

  cursor: pointer;

  z-index: 5;
}

.gift-select {
  margin-top: 30px;

  padding: 15px 20px;

  align-self: flex-start;

  background: #111111;

  color: #f5f2eb;

  border: 1px solid #111111;

  font-size: 8px;

  letter-spacing: 3px;

  cursor: pointer;

  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.gift-select:hover {
  background: transparent;

  color: #111111;
}


/* =========================================================
   GALERÍA
========================================================= */

.gallery-section {
  width: 100%;

  background: #111111;

  color: #f5f2eb;

  padding: 130px 6vw 140px;
}

.gallery-header {
  max-width: 700px;

  margin: 0 auto 80px;

  text-align: center;
}

.gallery-header .section-number {
  margin-bottom: 25px;
}

.gallery-header h2 {
  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(65px, 9vw, 125px);

  font-weight: 400;

  line-height: 0.85;

  letter-spacing: -5px;
}

.gallery-header > p:last-child {
  max-width: 450px;

  margin: 30px auto 0;

  font-size: 11px;

  line-height: 1.8;

  letter-spacing: 1px;

  opacity: 0.7;
}

.gallery-grid {
  width: 100%;

  max-width: 1400px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(12, 1fr);

  grid-auto-rows: 260px;

  gap: 12px;
}

.gallery-item {
  position: relative;

  overflow: hidden;
}

.gallery-item.gallery-large {
  grid-column: span 7;

  grid-row: span 2;
}

.gallery-item:nth-child(2) {
  grid-column: span 5;
}

.gallery-item:nth-child(3) {
  grid-column: span 5;
}

.gallery-item.gallery-wide {
  grid-column: span 6;
}

.gallery-item:nth-child(5) {
  grid-column: span 3;
}

.gallery-item:nth-child(6) {
  grid-column: span 3;
}


/* =========================================================
   GALERÍA PLACEHOLDERS
========================================================= */

.gallery-placeholder {
  background:
    linear-gradient(
      135deg,
      #2a2a2a 0%,
      #444444 50%,
      #1d1d1d 100%
    );

  display: flex;

  align-items: center;

  justify-content: center;

  color: rgba(245, 242, 235, 0.35);
}

.gallery-placeholder span {
  border: 1px solid rgba(245, 242, 235, 0.2);

  padding: 10px 16px;

  font-size: 10px;

  letter-spacing: 3px;

  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

.gallery-placeholder:hover span {
  color: rgba(245, 242, 235, 0.7);

  border-color: rgba(245, 242, 235, 0.5);
}

/* =========================================================
   TESTIMONIOS — ELLOS LO DICEN
========================================================= */

.testimonials-section {
  width: 100vw;
  max-width: none;

  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  background: #f5f2eb;
  color: #111111;

  padding: 80px 6vw 120px;

  box-sizing: border-box;
  overflow: hidden;
}


/* ---------- HEADER ---------- */

.testimonials-header {
  max-width: 850px;
  margin: 0 auto 80px;
  text-align: center;
}

.testimonials-header .section-number {
  margin-bottom: 25px;
}

.testimonials-header h2 {
  margin: 0;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(65px, 9vw, 125px);

  font-weight: 400;

  line-height: 0.82;

  letter-spacing: -5px;
}

.testimonials-header h2 em {
  font-style: italic;
}

.testimonials-header > p:last-child {
  max-width: 500px;

  margin: 35px auto 0;

  font-size: 11px;

  line-height: 1.8;

  letter-spacing: 2px;

  opacity: 0.7;
}


/* ---------- GRID ---------- */

.testimonials-grid {
  width: 100%;
  max-width: 1400px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 24px;

  box-sizing: border-box;
}


/* ---------- CARD ---------- */

.testimonial-card {
  min-height: 430px;

  padding: 38px 40px;

  border: 1px solid rgba(17, 17, 17, 0.22);

  display: flex;

  flex-direction: column;

  justify-content: space-between;
}


/* ---------- CARD DESTACADA ---------- */

.testimonial-card-featured {
  background: #111111;

  color: #f5f2eb;

  border-color: #111111;
}


/* ---------- PARTE SUPERIOR ---------- */

.testimonial-top {
  width: 100%;

  display: flex;

  align-items: center;

  gap: 28px;
}


/* ---------- FOTO CIRCULAR ---------- */

.testimonial-photo {
  width: 125px;

  height: 125px;

  flex-shrink: 0;

  border-radius: 50%;

  overflow: hidden;
}

.testimonial-photo img {
  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;

  object-position: center;
}


/* ---------- NOMBRE ---------- */

.testimonial-name {
  flex: 1;

  padding-left: 28px;

  border-left: 1px solid currentColor;
}

.testimonial-name h3 {
  margin: 0;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(25px, 2.4vw, 38px);

  font-weight: 400;

  line-height: 0.95;

  letter-spacing: -1.5px;
}


/* ---------- CONTENIDO ---------- */

.testimonial-content {
  margin-top: 35px;
}


/* ---------- COMILLAS ---------- */

.testimonial-mark {
  font-family: Georgia, "Times New Roman", serif;

  font-size: 65px;

  line-height: 0.45;

  margin-bottom: 25px;
}


/* ---------- TEXTO ---------- */

.testimonial-card blockquote {
  max-width: 430px;

  margin: 0;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(18px, 1.5vw, 23px);

  line-height: 1.35;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

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

  .testimonial-card {
    min-height: auto;

    padding: 32px 28px;
  }

}


@media (max-width: 700px) {

  .testimonials-section {
    padding: 90px 18px 100px;
  }


  /* HEADER */

  .testimonials-header {
    margin-bottom: 50px;
  }

  .testimonials-header h2 {
    font-size: 65px;

    letter-spacing: -4px;
  }

  .testimonials-header > p:last-child {
    margin-top: 25px;

    font-size: 9px;

    letter-spacing: 1.5px;
  }


  /* GRID */

  .testimonials-grid {
    gap: 12px;
  }


  /* CARD */

  .testimonial-card {
    padding: 28px 22px;

    min-height: 0;
  }


  /* FOTO + NOMBRE */

  .testimonial-top {
    gap: 20px;

    align-items: center;
  }

  .testimonial-photo {
    width: 95px;

    height: 95px;
  }

  .testimonial-name {
    padding-left: 20px;
  }

  .testimonial-name h3 {
    font-size: 27px;

    letter-spacing: -1px;
  }


  /* TEXTO */

  .testimonial-content {
    margin-top: 30px;
  }

  .testimonial-mark {
    font-size: 55px;

    margin-bottom: 18px;
  }

  .testimonial-card blockquote {
    font-size: 18px;

    line-height: 1.35;
  }

}


/* =========================================================
   WHATSAPP FLOTANTE
========================================================= */

.whatsapp-float {
  position: fixed;

  right: 25px;

  bottom: 25px;

  width: 58px;

  height: 58px;

  background: #111111;

  color: #f5f2eb;

  border: 1px solid rgba(245, 242, 235, 0.4);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  z-index: 9997;

  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.25);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);

  background: #f5f2eb;

  color: #111111;
}

.whatsapp-float svg {
  width: 22px;

  height: 22px;

  fill: currentColor;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  width: 100%;
  min-height: 260px;

  background: #111111;
  color: #f5f2eb;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  text-align: center;

  padding: 55px 20px 40px;
}


/* LOGO */

.footer-logo {
  width: 150px;
  height: auto;

  display: block;

  margin: 0 0 25px;
}


/* TEXTO */

.footer-info {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  margin: 0 0 22px;
}

.footer-info p {
  margin: 0;

  font-size: 8px;
  letter-spacing: 1.2px;
  line-height: 1.2;

  opacity: 0.65;
}


/* REDES SOCIALES */

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 25px;

  margin: 0;
}

.footer-socials a {
  width: 18px;
  height: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #f5f2eb;
  text-decoration: none;

  opacity: 0.65;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.footer-socials a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 17px;
  height: 17px;

  display: block;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.footer-socials a:nth-child(2) svg,
.footer-socials a:nth-child(3) svg {
  fill: currentColor;
  stroke: none;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

  .site-footer {
    min-height: 230px;
    padding: 40px 20px 35px;
  }

  .footer-logo {
    width: 125px;
    margin-bottom: 20px;
  }

  .footer-info {
    gap: 6px;
    margin-bottom: 18px;
  }

  .footer-info p {
    font-size: 7px;
    letter-spacing: 0.8px;
  }

  .footer-socials {
    gap: 21px;
  }

  .footer-socials a {
    width: 17px;
    height: 17px;
  }

  .footer-socials svg {
    width: 16px;
    height: 16px;
  }

}
/* =========================================================
   ANIMACIONES
========================================================= */

.package-section,
.gallery-item,
.gallery-header {
  opacity: 1;
}


/* =========================================================
   MODAL CONSULTA DISPONIBILIDAD
========================================================= */

.contact-modal {
  position: fixed;

  inset: 0;

  z-index: 10001;

  background: rgba(0, 0, 0, 0.82);

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 25px;

  opacity: 0;

  visibility: hidden;

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.contact-modal.active {
  opacity: 1;

  visibility: visible;
}

.contact-modal-content {
  width: min(620px, 100%);

  max-height: 92vh;

  overflow-y: auto;

  background: #f5f2eb;

  color: #111111;

  padding: 55px 60px;

  position: relative;

  transform: translateY(25px);

  transition: transform 0.4s ease;
}

.contact-modal.active .contact-modal-content {
  transform: translateY(0);
}


/* =========================================================
   CABECERA FORMULARIO
========================================================= */

.contact-modal-header {
  margin-bottom: 40px;
}

.contact-modal-header > p {
  font-size: 8px;

  letter-spacing: 4px;

  margin-bottom: 20px;

  opacity: 0.6;
}

.contact-modal-header h3 {
  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(42px, 6vw, 65px);

  line-height: 0.88;

  font-weight: 400;

  letter-spacing: -3px;

  margin-bottom: 25px;
}

.contact-modal-header span {
  display: block;

  max-width: 430px;

  font-size: 10px;

  line-height: 1.7;

  letter-spacing: 0.5px;

  opacity: 0.65;
}


/* =========================================================
   CERRAR FORMULARIO
========================================================= */

.contact-close {
  position: absolute;

  top: 18px;

  right: 18px;

  width: 38px;

  height: 38px;

  border: none;

  background: #111111;

  color: #f5f2eb;

  font-size: 24px;

  line-height: 1;

  cursor: pointer;

  z-index: 2;
}


/* =========================================================
   FORMULARIO
========================================================= */

.contact-form {
  display: flex;

  flex-direction: column;

  gap: 24px;
}

.form-group {
  display: flex;

  flex-direction: column;

  gap: 9px;
}

.form-group.is-hidden {
  display: none;
}

.form-group label {
  font-size: 8px;

  letter-spacing: 3px;

  opacity: 0.65;
}

.form-group input,
.form-group select {
  width: 100%;

  height: 48px;

  padding: 0 14px;

  border: 1px solid rgba(17, 17, 17, 0.25);

  border-radius: 0;

  background: transparent;

  color: #111111;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 12px;

  outline: none;

  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.form-group input::placeholder {
  color: #111111;

  opacity: 0.35;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #111111;

  background: rgba(17, 17, 17, 0.025);
}

.form-group input[readonly] {
  background: rgba(17, 17, 17, 0.06);

  color: #111111;

  letter-spacing: 2px;
}


/* =========================================================
   SELECT DISTRITOS
========================================================= */

.form-group select {
  appearance: none;

  -webkit-appearance: none;

  background-image:
    linear-gradient(
      45deg,
      transparent 50%,
      #111 50%
    ),
    linear-gradient(
      135deg,
      #111 50%,
      transparent 50%
    );

  background-position:
    calc(100% - 18px) 20px,
    calc(100% - 13px) 20px;

  background-size:
    5px 5px,
    5px 5px;

  background-repeat: no-repeat;

  cursor: pointer;
}


/* =========================================================
   BOTÓN ENVIAR
========================================================= */

.contact-submit {
  width: 100%;

  height: 58px;

  margin-top: 10px;

  background: #111111;

  color: #f5f2eb;

  border: 1px solid #111111;

  font-size: 9px;

  letter-spacing: 3px;

  cursor: pointer;

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 0 20px;

  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.contact-submit span {
  font-size: 18px;

  line-height: 1;
}

.contact-submit:hover {
  background: transparent;

  color: #111111;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 900px) {

  .package-info {
    padding: 50px;
  }

  .gift-box {
    padding: 22px;
  }

  .gift-options {
    gap: 10px;
  }

  .gift-note {
    font-size: 7px;
  }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 700px) {/* =========================================================
   AJUSTE FOTOS DE PAQUETES — MÓVIL
   Fotos originales: 4:5
========================================================= */

@media (max-width: 700px) {

  .package-section .package-image {
    aspect-ratio: 4 / 5;
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  .package-section .package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }

}

  /* HEADER */

  .site-header {
    height: 60px;
  }

  .site-header-logo {
    font-size: 11px;

    letter-spacing: 6px;
  }


  /* COVER */

  .cover {
    min-height: 100svh;
  }

  .cover h1 {
    font-size: clamp(48px, 14vw, 75px);

    letter-spacing: -3px;
  }

  .brand {
    font-size: 10px;

    letter-spacing: 7px;
  }

  .subtitle {
    font-size: 8px;

    letter-spacing: 4px;
  }

  .description {
    font-size: 10px;

    padding: 0 15px;
  }


  /* INTRO */

  .packages-header {
    min-height: 350px;

    padding: 60px 25px;
  }

  .packages-header h2 {
    font-size: clamp(45px, 13vw, 70px);
  }


  /* PACKAGES */

  .package-section {
    display: flex;

    flex-direction: column;

    min-height: auto;
  }

  .package-visual {
    order: 1 !important;

    width: 100%;

    height: 65vw;

    min-height: 300px;
  }

  .package-info {
    order: 2 !important;

    min-height: auto;

    padding: 55px 25px 65px;
  }

  .package-info h3 {
    font-size: clamp(60px, 17vw, 90px);
  }

  .price {
    font-size: clamp(55px, 15vw, 80px);

    margin-top: 40px;
  }


  /* GIFT */

  .gift-box {
    margin-top: 35px;

    padding: 22px 18px 20px;
  }

  .gift-label {
    font-size: 7px;

    letter-spacing: 4px;

    margin-bottom: 14px;
  }

  .gift-box h4 {
    font-size: 21px;

    margin-bottom: 16px;
  }

  .gift-options {
    grid-template-columns:
      minmax(0, 1fr)
      auto
      minmax(0, 1fr);

    gap: 8px;
  }

  .gift-option {
    height: 58px;
  }

  .gift-option span {
    font-size: 7px;

    letter-spacing: 2px;
  }

  .gift-or {
    width: 32px;

    height: 32px;

    font-size: 13px;
  }

  .gift-note {
    margin-top: 14px;

    white-space: normal;

    font-size: 7px;

    line-height: 1.5;
  }


  /* GALERÍA */

  .gallery-section {
    padding: 90px 18px 100px;
  }

  .gallery-header {
    margin-bottom: 50px;
  }

  .gallery-header h2 {
    font-size: 65px;

    letter-spacing: -4px;
  }

  .gallery-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    grid-auto-rows: 190px;

    gap: 8px;
  }

  .gallery-item.gallery-large {
    grid-column: span 2;

    grid-row: span 2;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3) {
    grid-column: span 1;
  }

  .gallery-item.gallery-wide {
    grid-column: span 2;
  }

  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6) {
    grid-column: span 1;
  }


  /* TESTIMONIOS */

  .testimonials-section {
    padding: 90px 18px 100px;
  }

  .testimonials-header {
    margin-bottom: 50px;
  }

  .testimonials-header h2 {
    font-size: 65px;

    letter-spacing: -4px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;

    gap: 8px;
  }

  .testimonial-card {
    min-height: 280px;

    padding: 35px 25px;
  }

  .testimonial-card blockquote {
    max-width: 100%;

    font-size: 22px;
  }


  /* WHATSAPP */

  .whatsapp-float {
    width: 52px;

    height: 52px;

    right: 18px;

    bottom: 18px;
  }

  .whatsapp-float svg {
    width: 20px;

    height: 20px;
  }


  /* MODAL REGALO */

  .gift-modal {
    padding: 20px;
  }

  .gift-modal-content {
    grid-template-columns: 1fr;

    max-height: 90vh;

    overflow-y: auto;
  }

  .gift-modal-content > img {
    height: 260px;

    min-height: 260px;
  }

  .gift-modal-info {
    padding: 35px 25px 40px;
  }

  .gift-modal-info h3 {
    font-size: 45px;
  }

  .gift-modal-includes ul {
    grid-template-columns: 1fr;
  }


  /* MODAL CONSULTA */

  .contact-modal {
    padding: 15px;
  }

  .contact-modal-content {
    max-height: 94vh;

    padding: 45px 22px 30px;
  }

  .contact-modal-header {
    margin-bottom: 30px;
  }

  .contact-modal-header h3 {
    font-size: 43px;

    letter-spacing: -2px;
  }

  .contact-form {
    gap: 20px;
  }

  .form-group input,
  .form-group select {
    height: 46px;

    font-size: 11px;
  }


  /* FOOTER */

  .site-footer {
    min-height: 220px;

    padding: 50px 20px;
  }

  .site-footer p {
    font-size: 9px;

    letter-spacing: 2px;
  }

}/* =========================================================
   FOTOS DE PAQUETES — AJUSTE MÓVIL 4:5
========================================================= */

@media (max-width: 700px) {

  .package-section .package-visual {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    overflow: hidden;
  }

  .package-section .package-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
  }

}
/* =========================================================
   GALERÍA — FOTOGRAFÍAS
========================================================= */

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}
/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  width: 100%;
  background: #111111;
  color: #f5f2eb;

  padding: 80px 20px 35px;

  text-align: center;
}

.footer-logo {
  width: 170px;
  height: auto;

  display: block;

  margin: 0 auto 45px;
}

.site-footer p {
  margin: 8px 0;

  font-size: 8px;

  letter-spacing: 2px;

  opacity: 0.6;
}

@media (max-width: 700px) {

  .site-footer {
    padding: 65px 20px 30px;
  }

  .footer-logo {
    width: 140px;
    margin-bottom: 35px;
  }

}
@media (max-width: 700px) {
  .site-header-logo {
    width: 115px;
  }
}
/* =========================================================
   BOTONES — CONSULTAR DISPONIBILIDAD
========================================================= */

/* PAQUETES CON FONDO CREMA */
.package-light .package-button {
  background: #111111;
  color: #f5f2eb;
  border: 1px solid #111111;

  min-width: 275px;
  min-height: 54px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

/* HOVER — CREMA */
.package-light .package-button:hover {
  background: #f5f2eb;
  color: #111111;
  border-color: #111111;

  transform: translateY(-2px);
}


/* PAQUETES CON FONDO NEGRO */
.package-dark .package-button {
  background: #f5f2eb;
  color: #111111;
  border: 1px solid #f5f2eb;

  min-width: 275px;
  min-height: 54px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

/* HOVER — NEGRO */
.package-dark .package-button:hover {
  background: #111111;
  color: #f5f2eb;
  border-color: #f5f2eb;

  transform: translateY(-2px);
}


/* FLECHA */
.package-button span {
  margin-left: 16px;
  font-size: 15px;
  line-height: 1;
}
/* =========================================================
   LOGO DE PORTADA
========================================================= */

.cover-logo {
  display: flex;
  justify-content: center;
  align-items: center;

  margin-bottom: 12px;
}

.cover-logo img {
  width: 180px;
  height: auto;
  display: block;

  filter: brightness(0) invert(1);
}

@media (max-width: 700px) {

  .package-info {
    text-align: center;
    align-items: center;
  }

  .package-info .package-list {
    width: fit-content;
    margin: 0 auto;
    padding: 0;
    text-align: left;
    list-style: none;
  }

  .package-info .package-list li {
    text-align: left;
  }

  .package-info .package-button {
    margin-left: auto;
    margin-right: auto;
  }

}