/* ==========================================
   SAO BEACH - Minimalista Mediterraneo v2
   ========================================== */

:root {
  --primary:      #d0ac78;
  --secondary:    #007895;
  --sand:         #f5f0e8;
  --sand-light:   #faf8f4;
  --sky:          #e8f4f8;
  --sea-light:    #d1eef5;
  --header-bg:    #007895;
  --header-link:  #f1f1f1;
  --header-active:#d0ac78;
  --footer-bg:    #f6f6f6;
  --footer-link:  #007895;
  --text:         #262626;
  --text-light:   #6b7280;
  --text-muted:   #9ca3af;
  --white:        #ffffff;
  --font-head:    'Poppins', sans-serif;
  --font-body:    'Montserrat', sans-serif;
  --max-w:        1140px;
  --header-h:     68px;
  --radius:       8px;
  --radius-lg:    16px;
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
}

html { font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ==========================================
   SECTION HEADERS
   ========================================== */

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header--left {
  text-align: left;
  margin-bottom: 2.5rem;
}

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.75rem;
  /* GSAP: clip-path reveal */
  overflow: hidden;
}

.section-title {
  font-family: var(--font-head);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 560px;
}

.section-header .section-subtitle { margin: 0 auto; }
.section-header--left .section-subtitle {margin: 0}
/* ==========================================
   BUTTONS
   ========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn__arrow { transition: transform 0.3s ease; flex-shrink: 0; }
.btn:hover .btn__arrow { transform: translateX(5px); }

.btn--primary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.btn--primary:hover { background: #006577; border-color: #006577; }

.btn--outline {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}
.btn--outline:hover { background: var(--secondary); color: var(--white); }

.btn--ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.25); }

.btn--small { padding: 0.5rem 1rem; font-size: 0.5rem; }

/* Shimmer dorado sobre el botón */
.btn--shine {
  position: relative;
  overflow: hidden;
}
.btn--shine::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
  animation: btn-shine 2.8s ease-in-out infinite;
}
@keyframes btn-shine {
  0%   { left: -75%; }
  60%  { left: 125%; }
  100% { left: 125%; }
}


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

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--header-bg);
  background: linear-gradient(180deg,rgba(0, 120, 149, 0.8) 18%, rgba(255, 255, 255, 0) 100%);
  transition: box-shadow 0.3s ease;
  backdrop-filter: blur(1px);
  transition: box-shadow 0.3s ease;
}

.header--scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.18);  background: var(--header-bg);}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  gap: 1rem;
}

.header__logo img { height: 40px; width: auto; padding-top:5px;}

.header__nav { display: none; }

.header__menu { display: flex; gap: 1.75rem; }

.header__link {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--header-link);
  letter-spacing: 0.03em;
  padding: 0.25rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--header-active);
  transition: width 0.3s ease;
}

.header__link:hover,
.header__link.active { color: var(--header-active); }
.header__link.active::after,
.header__link:hover::after { width: 100%; }

/* Status widget */
.header__status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
  animation: none;
}

.status-dot.open {
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.5);
  animation: pulse-green 2s infinite;
}

.status-dot.closed { background: #f87171; }

@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  70%  { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
/* Status text: corto en mobile, completo en tablet+ */
.status-short  { display: inline; }
.status-detail { display: none;   }

@media (min-width: 768px) {
  .status-short  { display: none;   }
  .status-detail { display: inline; }
}
/* Hamburger */
.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
}

.header__hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--header-link);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__hamburger.active span:nth-child(2) { opacity: 0; }
.header__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: var(--header-bg);
  padding: 1.5rem 1.25rem 2rem;
  transform: translateY(-105%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s var(--ease-out), opacity 0.3s ease;
  z-index: 99;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav__menu { display: flex; flex-direction: column; gap: 0.25rem; }

.mobile-nav__link {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--header-link);
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.3s ease;
}

.mobile-nav__link:hover { color: var(--header-active); }

.mobile-nav__status {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ==========================================
   HERO
   ========================================== */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background: url('../img/sao-beach-foto-portarda_web.jpg') center / cover no-repeat;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Video background */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero__video.loaded { opacity: 1; }

/* When video is active, darken overlay more */
.hero.has-video .hero__overlay {
  background: rgba(0,0,0,0.3);
}

.hero.has-video .hero__title { color: var(--white); }
.hero.has-video .hero__subtitle { color: rgba(255,255,255,0.85); }
.hero.has-video .hero__badge {
  color: var(--white);
  border-color: rgba(208,172,120,0.6);
  background: rgba(208,172,120,0.3);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.25);
  transition: background 0.6s ease;
}

.hero__monstera {
  position: absolute;
  opacity: 1;
  pointer-events: none;
}

.hero__monstera--right {
  bottom: -80px;
  right: -70px;
  width: 250px;
  height: auto;
  transform: rotate(12deg);
}

.hero__monstera--left {
  bottom: -50px; left: -50px;
  width: 260px; height: auto;
  transform: rotate(-18deg);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 1.25rem 5rem;
  max-width: 660px;
}

.hero__badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1.75rem;
  padding: 0.4rem 1.1rem;
  border: 1px solid rgba(0,120,149,0.35);
  border-radius: 100px;
}

.hero__title {
  font-family: var(--font-head);
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}

.hero__title-line { display: block; overflow: hidden; }

.hero__title--accent { color: var(--primary); }

.hero__subtitle {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 2.25rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--secondary));
  margin: 0 auto;
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}


 /* ==========================================
   SOCIAL ICONS
   ========================================== */

	.social{
	background: var(--sand-light);
	}
    .social-menu {
      display: flex;
      gap: 24px;
      list-style: none;
	  padding: 60px 0 0;
      margin: 0 auto;
	  width: fit-content;
    }

    .social-menu li {
      position: relative;
      width: 60px;
      height: 60px;
      flex-shrink: 0;
      transition: all 0.5s ease;
    }

    .social-menu li:hover {
      width: 180px;
    }

    .social-menu li a {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      background: white;
      border-radius: 50px;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.5s ease;
      box-shadow: 0 00px 25px rgba(108, 83, 43, 0.3);
      overflow: hidden;
    }

    .social-menu li:hover a {
      box-shadow: none;
    }

    /* Gradient background */
    .social-menu li a::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50px;
      background: linear-gradient(45deg, var(--gradient-from), var(--gradient-to));
      opacity: 0;
      transition: all 0.5s ease;
      z-index: 1;
    }

    .social-menu li a:hover::before {
      opacity: 1;
    }

    /* Blur glow effect */
    .social-menu li a::after {
      content: '';
      position: absolute;
      top: 10px;
      left: 0;
      right: 0;
      height: 100%;
      border-radius: 50px;
      background: linear-gradient(45deg, var(--gradient-from), var(--gradient-to));
      filter: blur(15px);
      opacity: 0;
      z-index: -1;
      transition: all 0.5s ease;
    }

    .social-menu li a:hover::after {
      opacity: 0.5;
    }

    /* Icon */
    .social-menu li a .icon {
  	position: relative;
 	 z-index: 10;
 	 width: 20px;
 	 height: 20px;
  	fill: var(--primary);
  	transition: all 0.5s ease;
    }

    .social-menu li a:hover .icon {
      transform: scale(0);
    }

    /* Title */
    .social-menu li a .title {
      position: absolute;
      color: white;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-size: 12px;
      font-weight: 600;
      transform: scale(0);
      transition: all 0.5s ease 0.15s;
      z-index: 10;
    }

    .social-menu li a:hover .title {
      transform: scale(1);
    }

    /* Instagram colors */
    .social-menu li.instagram a {
      --gradient-from: #f09433;
      --gradient-to: #e6683c;
    }

    /* Facebook colors */
    .social-menu li.facebook a {
      --gradient-from: #1877f2;
      --gradient-to: #0c63d4;
    }

    /* TikTok colors */
    .social-menu li.tiktok a {
      --gradient-from: #000000;
      --gradient-to: #ff0050;
    }

    /* WhatsApp colors */
    .social-menu li.whatsapp a {
      --gradient-from: #25d366;
      --gradient-to: #128c7e;
    }

/* ==========================================
   TESTIMONIOS / REVIEWS
   ========================================== */

.reviews {
  padding: 5rem 0;
  background: var(--sand-light);
}

.reviews__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.75rem;
  scrollbar-width: none;
}

.reviews__track::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(0,0,0,0.055);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.review-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.review-card__name { font-weight: 600; font-size: 0.875rem; }
.review-card__rating { color: var(--primary); font-size: 1.2rem; letter-spacing: 0.04em; line-height:0.7;}

.review-card__text {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-light);
}

.reviews__controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.reviews__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.reviews__btn:hover {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.reviews__footer { text-align: center; margin-top: 2rem; }

/* ==========================================
   CONTACTO
   ========================================== */

.contact {
  padding: 5rem 0;
  background: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact__address {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-light);
  margin-bottom: 1.75rem;
}

.contact__address svg { flex-shrink: 0; margin-top: 0.2rem; color: var(--secondary); }

.contact__hours-block { margin-bottom: 2rem; }

.contact__hours-title {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.875rem;
  color: var(--text);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(0,0,0,0.045);
}

.hours-row.today {
  font-weight: 600;
  color: var(--secondary);
}

.hours-row.today .hours-row__time { color: var(--secondary); }

.hours-row__day { color: var(--text); }
.hours-row__time { color: var(--text-light); }

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.contact__social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact__social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.contact__social-link:hover {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.contact__tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.contact__map-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sand);
}

.contact__map-wrap iframe { width: 100%; height: 100%; }

/* ==========================================
   GALERIA
   ========================================== */

.gallery {
  padding: 5rem 0;
  background: var(--sand-light);
}

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

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery__placeholder {
  aspect-ratio: 1;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}

.gallery__item:hover .gallery__placeholder { transform: scale(1.04); }

.gallery__placeholder span {
  font-family: var(--font-head);
  font-size: 1.125rem;
  color: var(--text-muted);
  font-weight: 600;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery__item:hover img { transform: scale(1.04); }

.gallery__item--tall .gallery__placeholder,
.gallery__item--tall img { aspect-ratio: auto; height: 100%; }

/* ==========================================
   LIGHTBOX
   ========================================== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox[hidden] { display: none; }

.lightbox__close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 44px; height: 44px;
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }

.lightbox__content { max-width: 90vw; max-height: 85vh; border-radius:6px;}

.lightbox__img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
}
.gallery__placeholder > span,
 .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
  
/* ==========================================
   HISTORIA / ABOUT
   ========================================== */

.about {
  padding: 5rem 0;
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.about__image-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--sand);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about__monstera {
  position: absolute;
  bottom: 0;
  right: -14px;
  width: 150px;
  opacity: 1;
  height: auto;
}

.about__image-text {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-muted);
  z-index: 1;
}

.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.about__tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(0,120,149,0.25);
  border-radius: 100px;
}

.about__intro {
  font-family: var(--font-head);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2rem;
}

.about__text p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-light);
}

.about__text strong { color: var(--text); font-weight: 600; }

.about__features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.about__feature svg { color: var(--secondary); flex-shrink: 0; }

/* ==================== GALERÍA ABOUT (3 imágenes) ==================== */

.about__gallery {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
  width: 100%;
}

.about__gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--sand);
  aspect-ratio: 1 / 1; /* Por defecto cuadrado */
}

.about__gallery-item--wide {
  aspect-ratio: 2 / 1; /* Horizontal alargado */
}

.about__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.about__gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .about__content {
  order: -1;
}
  } 

/* Responsive: en móvil se apilan verticalmente
@media (max-width: 768px) {*/
  /*.about__gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  } 
  
  .about__gallery-item,
  .about__gallery-item--wide {
    aspect-ratio: 4/3; 
  }
}
*/
/* Tablet: 2 columnas 
@media (min-width: 769px) and (max-width: 1024px) {
  .about__gallery {
    grid-template-columns: 1fr 1fr;
  }
  
  .about__gallery-item--wide {
    grid-column: span 2;
    aspect-ratio: 3 / 1;
  }
}
*/


/* ==========================================
   FAQ
   ========================================== */

.faq {
  padding: 5rem 0;
  background: var(--sand-light);
}

.faq-list {
  max-width: 100%;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  border: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  border-color: rgba(0,120,149,0.15);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.faq-item[open] {
  border-color: var(--secondary);
  box-shadow: 0 4px 12px rgba(0,120,149,0.08);
}

.faq-item summary {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  padding: 1.25rem 3rem 1.25rem 1.25rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  user-select: none;
  transition: color 0.3s ease, background 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--secondary);
  background: rgba(0,120,149,0.02);
}

/* Flecha indicadora */
.faq-item summary::after {
  content: '';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--secondary);
  border-bottom: 2px solid var(--secondary);
  transition: transform 0.3s var(--ease-out);
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(225deg);
}

.faq-answer {
  padding: 0 1.25rem 1.5rem 1.25rem;
  animation: fadeIn 0.4s ease;
}

.faq-answer p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ==========================================
   LEGAL
   ========================================== */
   
   .legal-page {
      padding: calc(var(--header-h) + 60px) 0 80px;
      min-height: 70vh;
      background: var(--sand-light);
    }
    .legal-page .container { max-width: 820px; }
    .legal-breadcrumb {
      font-family: var(--font-body);
      font-size: 0.8rem;
      color: var(--text-light);
      margin-bottom: 2rem;
      letter-spacing: 0.03em;
    }
    .legal-breadcrumb a {
      color: var(--secondary);
      text-decoration: none;
    }
    .legal-breadcrumb a:hover { text-decoration: underline; }
    .legal-breadcrumb span { margin: 0 0.4rem; }
    .legal-page h1 {
      font-family: var(--font-head);
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      font-weight: 700;
      color: var(--text);
      margin-bottom: 0.5rem;
      line-height: 1.2;
    }
    .legal-date {
      font-family: var(--font-body);
      font-size: 0.85rem;
      color: var(--text-light);
      margin-bottom: 2.5rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid rgba(0,0,0,0.08);
    }
    .legal-page h2 {
      font-family: var(--font-head);
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--text);
      margin: 2.5rem 0 0.75rem;
      padding-bottom: 0.4rem;
      border-bottom: 2px solid var(--primary);
      display: inline-block;
    }
    .legal-page p {
      font-family: var(--font-body);
      font-size: 0.95rem;
      line-height: 1.8;
      color: var(--text);
      margin-bottom: 1rem;
    }
    .legal-page ul {
      font-family: var(--font-body);
      font-size: 0.95rem;
      line-height: 1.8;
      color: var(--text);
      margin: 0 0 1rem 1.25rem;
    }
    .legal-page ul li { margin-bottom: 0.4rem; }
    .legal-page a { color: var(--secondary); text-decoration: underline; }
    .legal-page strong { font-weight: 600; }
    .legal-info-box {
      background: var(--sky);
      /*border-left: 3px solid var(--secondary);*/
      border-radius: var(--radius);
      padding: 1.25rem 1.5rem;
      margin: 1.5rem 0;
    }
    .legal-info-box p { margin: 0; font-size: 0.9rem; }
    .legal-info-box p + p { margin-top: 0.4rem; }
    .legal-back {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-family: var(--font-body);
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--secondary);
      text-decoration: none;
      margin-top: 3rem;
      padding: 0.6rem 1.25rem;
      border: 1.5px solid var(--secondary);
      border-radius: 99px;
      transition: background 0.2s, color 0.2s;
    }
    .legal-back:hover { background: var(--secondary); color: var(--white); }


@media (min-width: 768px) {
  #faq-title.section-title{
  	font-size: 1.5rem;
  }
  .faq-list{
    column-count: 2;
  }

  
  .faq {
    padding: 6rem 0;
  }

  .faq-item summary {
    font-size: 0.875rem;
    padding: 1.5rem 3.5rem 1.5rem 1.5rem;
  }

  .faq-answer {
    padding: 0 1.5rem 1.75rem 1.5rem;
  }

  .faq-answer p {
    font-size: 0.875rem;
  }
}
/* ==========================================
   FOOTER
   ========================================== */

.footer {
  background: var(--footer-bg);
  padding: 3rem 0 1.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__logo { height: 28px; width: auto; margin-bottom: 0.625rem; }

.footer__tagline {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer__social {
  display: flex;
  gap: 0.625rem;
}

.footer__social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.footer__social a:hover {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.footer__heading {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.footer__links a,
.footer__contact a,
.footer__contact li {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 2;
  transition: color 0.3s ease;
}

.footer__links a:hover,
.footer__contact a:hover { color: var(--footer-link); }

.footer__bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { color: var(--text-muted); transition: color 0.3s ease; }
.footer__legal a:hover { color: var(--footer-link); }

/* ==========================================
   COOKIE BANNER
   ========================================== */

.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.07);
}

.cookie-banner[hidden] { display: none; }

.cookie-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.cookie-banner__text {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.5;
}

.cookie-banner__actions { display: flex; gap: 0.5rem; }

/* ==========================================
   TABLET 768px+
   ========================================== */

@media (min-width: 768px) {
  .container { padding: 0 2rem; }

  .section-title { font-size: 2.25rem; }

  .header__nav { display: block; }
  .header__status { display: flex; }
  .header__hamburger { display: none; }

  .hero { min-height: 90vh; }
  .hero__title { font-size: 3.2rem; }

  .about__grid {
    grid-template-columns: 1fr 1.25fr;
    gap: 4rem;
    align-items: normal;
  }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.875rem;
  }

  .gallery__item--tall { grid-row: span 2; }

  .review-card { flex: 0 0 340px; }

  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .footer__grid { grid-template-columns: 2fr 1fr 1fr; }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
  }
}

/* ==========================================
   DESKTOP 1024px+
   ========================================== */

@media (min-width: 1024px) {
  .hero__title { font-size: 4.25rem; }
  .section-title { font-size: 2.5rem; }

  .reviews  { padding: 6rem 0; }
  .contact  { padding: 6rem 0; }
  .gallery  { padding: 6rem 0; }
  .about    { padding: 6rem 0; }

  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

/* ==========================================
   LANGUAGE SWITCHER
   ========================================== */
.footer__lang {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: 0.75rem;
}

.lang-switcher__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text-light);
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.8rem;
  font-family: var(--font-body);
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
  letter-spacing: 0.02em;
}

.lang-switcher__btn:hover,
.lang-switcher__btn:focus-visible {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.28);
  outline: none;
}

.lang-switcher__chevron { transition: transform 0.2s; }
.lang-switcher__btn[aria-expanded="true"] .lang-switcher__chevron { transform: rotate(180deg); }

.lang-switcher__menu {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.14);
  list-style: none;
  min-width: 158px;
  overflow: hidden;
  display: none;
  z-index: 200;
  padding: 4px 0;
}

.lang-switcher__menu.is-open { display: block; }

.lang-switcher__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: var(--text-dark);
  font-size: 0.875rem;
  font-family: var(--font-body);
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}

.lang-switcher__item:hover { background: var(--bg-cream); }

.lang-switcher__item.is-active {
  font-weight: 600;
  color: var(--primary);
  background: rgba(46,94,79,0.06);
}
