:root {
  --bg: #f8f4f3;
  --bg-soft: rgba(255,255,255,0.72);
  --text: #3a2f32;
  --muted: #7c6a70;
  --primary: #efc3cf;
  --primary-dark: #d89dac;
  --accent: #b89aa3;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(80, 50, 60, 0.12);
  --radius: 22px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #f8f4f3;
  color: var(--text);
  overflow-x: hidden;
  position: relative;
  padding-top: 82px;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
  position: relative;
  z-index: 2;
}

.watermark {
  position: fixed;
  inset: 0;
  background: url('../assets/watermark-dark.png') center center / 72% no-repeat;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.72);
  border-bottom: 1px solid rgba(216, 157, 172, 0.18);
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.header.hide {
  transform: translateY(-100%);
}

.header.scrolled {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 8px 25px rgba(80, 50, 60, 0.08);
}

.nav-container {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 52px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  gap: 28px;
}

.desktop-nav a,
.mobile-nav a {
  color: var(--text);
  font-weight: 500;
  transition: 0.3s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--primary-dark);
}

.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  margin: 6px auto;
  transition: 0.3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 0 4% 20px;
  background: rgba(255,255,255,0.94);
}

.mobile-nav.active {
  display: flex;
}

.hero {
  min-height: 92vh;
  background: url('../assets/banner-hero.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(35,25,28,0.62), rgba(35,25,28,0.22));
}

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

.hero-text {
  max-width: 720px;
  color: white;
}

.tag,
.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(239, 195, 207, 0.18);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  font-size: 0.9rem;
}

.eyebrow {
  color: var(--primary-dark);
  background: rgba(239, 195, 207, 0.2);
  border: 1px solid rgba(216, 157, 172, 0.2);
}

.hero h1,
.section-heading h2,
.cta h2 {
  font-family: 'Playfair Display', serif;
  line-height: 1.08;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  margin-bottom: 18px;
}

.hero p,
.section-heading p,
.about-card p,
.location-info p,
.faq-list p,
.cta p,
.footer p {
  line-height: 1.8;
}

.hero p {
  font-size: 1.05rem;
  max-width: 620px;
  margin-bottom: 24px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--primary);
  color: #3a2228;
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: white;
}

.btn-secondary {
  background: rgba(255,255,255,0.14);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.24);
}

.btn-outline {
  border: 1px solid var(--primary-dark);
  color: var(--primary-dark);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary-dark);
  color: white;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-card,
.location-info,
.map-wrap,
.cta-box,
.faq-list details {
  background: var(--bg-soft);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(216, 157, 172, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-card {
  padding: 30px;
}

.about-card h3 {
  margin-bottom: 12px;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 520px;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 460px;
}

.carousel-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 240px;
  height: 340px;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: all 0.55s ease;
  cursor: pointer;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,0.15);
  background: linear-gradient(180deg, #f6efed, #e9d8d6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

/* Cuidado con reels verticales */
.carousel-item.vertical img {
  object-fit: cover;
  object-position: center;
}

.carousel-item.active {
  opacity: 1;
  z-index: 5;
  transform: translate(-50%, -50%) scale(1);
}

.carousel-item.prev-1 {
  opacity: 0.75;
  z-index: 4;
  transform: translate(-155%, -50%) scale(0.88);
}

.carousel-item.prev-2 {
  opacity: 0.45;
  z-index: 3;
  transform: translate(-235%, -50%) scale(0.76);
}

.carousel-item.next-1 {
  opacity: 0.75;
  z-index: 4;
  transform: translate(55%, -50%) scale(0.88);
}

.carousel-item.next-2 {
  opacity: 0.45;
  z-index: 3;
  transform: translate(135%, -50%) scale(0.76);
}

.item-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  background: linear-gradient(to top, rgba(34,24,28,0.78), transparent);
  color: white;
}

.item-caption h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.item-caption p {
  font-size: 0.88rem;
  opacity: 0.9;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.88);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  background: #d8c7cc;
  cursor: pointer;
  transition: 0.3s;
}

.carousel-dots button.active {
  width: 28px;
  background: var(--primary-dark);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 15, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 2000;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  width: min(1000px, 100%);
  background: white;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: stretch;
}

.lightbox-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  min-height: 500px;
  max-height: 80vh;
  background: linear-gradient(180deg, #f8f4f3, #efe4e1);
  padding: 12px;
}

.lightbox-info {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 2;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
}

.location-info,
.map-wrap {
  padding: 30px;
}

.map-wrap {
  min-height: 420px;
  overflow: hidden;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list details {
  padding: 22px 24px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-list details p {
  margin-top: 12px;
  color: var(--muted);
}

.cta-box {
  text-align: center;
  padding: 48px 28px;
}

.footer {
  padding: 40px 0;
  background: rgba(34, 24, 28, 0.96);
  color: white;
  position: relative;
  z-index: 3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 26px;
}

.footer-logo {
  height: 56px;
  margin-bottom: 14px;
}

.social-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1500;
}

.fab-main {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: var(--primary-dark);
  color: white;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: var(--shadow);
}

/* social icon*/
.social-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1500;
}

.fab-main {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: var(--primary-dark);
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fab-options {
  position: absolute;
  right: 0;
  bottom: 72px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.3s ease;
}

.social-fab.active .fab-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.fab-link {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fab-link:hover {
  transform: translateY(-2px) scale(1.05);
}

.fab-link.whatsapp {
  background: #25D366;
}

.fab-link.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

@media (max-width: 991px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .about-grid,
  .location-grid,
  .footer-grid,
  .lightbox-content {
    grid-template-columns: 1fr;
  }

  .carousel-track {
    height: 400px;
  }

  .carousel-item {
    width: 210px;
    height: 300px;
  }

  .carousel-item.prev-1 {
    transform: translate(-135%, -50%) scale(0.82);
  }

  .carousel-item.next-1 {
    transform: translate(35%, -50%) scale(0.82);
  }

  .carousel-item.prev-2,
  .carousel-item.next-2 {
    opacity: 0;
  }

  .lightbox-content img {
    min-height: 340px;
    max-height: 60vh;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: 88vh;
    background-position: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .carousel-wrapper {
    min-height: 430px;
  }

  .carousel-track {
    height: 350px;
  }

  .carousel-item {
    width: 190px;
    height: 270px;
  }

  .carousel-item.prev-1,
  .carousel-item.next-1 {
    opacity: 0.35;
  }

  .carousel-btn {
    width: 44px;
    height: 44px;
  }

  .watermark {
    background-size: 75%;
  }
}