:root {
  --bg-main: #EAE1CB;
  --primary: #D18E97;
  --accent: #D2A432;
  --secondary: #979E6C;
  --dark: #5B3B1E;
  --highlight: #BC5727;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', Helvetica, Arial, sans-serif;
}

/* RESET */
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-main);
  color: var(--dark);
}

/* ANIMACIONES */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

/* ESTADO ACTIVO */
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


.logo{
  display:flex;
  align-items:center;
  gap:.9rem;
  text-decoration:none;
}

.logo-img{
   width:48px;
  height:48px;

  object-fit:contain;

  transform:scale(1.4);

  transform-origin:center;

}

.logo-text{
  position:relative;
  display:flex;
  flex-direction:column;
  line-height:1;
}

.logo-title{
  font-family: "Gloria Hallelujah", cursive;
  font-size:1.7rem;
  letter-spacing:.09em;
  font-weight: 700;
  opacity:.60;
  color:#5B3B1E;
}



/* /* NAVBAR */
.navbar {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  box-sizing: border-box;

  z-index: 1000;

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

  padding: 18px 40px;

  background: rgba(234, 225, 203, 0.45);

  backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(91, 59, 30, 0.06);

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

/* SCROLL */
.navbar.scrolled {
  background: rgba(234, 225, 203, 0.88);

  border-bottom: 1px solid rgba(91, 59, 30, 0.08);

  box-shadow:
    0 6px 20px rgba(0,0,0,0.03);
}

/* NAV LINKS */
.nav a {
  position: relative;

  margin: 0 12px;

  text-decoration: none;

  color: var(--dark);

  text-transform: uppercase;

  letter-spacing: 1.5px;

  font-size: 13px;
}

/* HOVER LINE */
.nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -6px;

  width: 0%;
  height: 1px;

  background: var(--accent);

  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* MENU TOGGLE */
.menu-toggle {
  display: none;

  position: relative;

  width: 48px;
  height: 48px;

  padding: 0;

  border: none;
  background: transparent;

  cursor: pointer;

  z-index: 1200;
}

/* LINES */
.menu-toggle span {
  position: absolute;

  left: 50%;

  width: 22px;
  height: 1.5px;

  background: var(--dark);

  border-radius: 999px;

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

/* TOP LINE */
.menu-toggle span:first-child {
  transform: translate(-50%, -5px);
}

/* BOTTOM LINE */
.menu-toggle span:last-child {
  transform: translate(-50%, 5px);
}

/* MOBILE-ONLY DRAWER ELEMENTS */
.nav-brand,
.nav-signature,
.nav-overlay {
  display: none;
}
/* ========================================
   MOBILE NAVBAR
======================================== */

@media (max-width: 768px) {
  .navbar {
    padding: 16px 20px;
  }

  /* DESKTOP NAV HIDDEN */
  .navbar .open-booking {
  display: none;
}

  /* MOBILE TOGGLE */
  .menu-toggle {
    display: flex;

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

    flex-shrink: 0;

    -webkit-tap-highlight-color: transparent;
  }

  /* NAV BRAND */
.nav-brand {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: 34px;

  opacity: 0.9;
}

.nav-brand img {
 width: 64px;
 height: 64px;

  object-fit: contain;
}

.nav-brand span {
  font-family: "Gloria Hallelujah", cursive;

  font-size: 1.55rem;

  letter-spacing: 0.06em;

  color: var(--dark);

  opacity: 0.75;
}

  /* MOBILE DRAWER */
.nav {
  position: fixed;

  top: 0;
  right: 0;

  width: min(82vw, 340px);
  height: 100vh;

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

  gap: 28px;

  padding:
  calc(88px + env(safe-area-inset-top))
  32px
  calc(48px + env(safe-area-inset-bottom));

  background:
    rgba(234, 225, 203, 0.92);

  backdrop-filter: blur(14px);

  border-left:
    1px solid rgba(91, 59, 30, 0.08);

  box-shadow:
    -10px 0 30px rgba(0,0,0,0.06);

  transform: translateX(100%);

  transition:
    transform 0.45s cubic-bezier(.22,.61,.36,1);

  z-index: 1100;
}

/* SIGNATURE */
.nav-signature {
  margin-top: 34px;

  width: 100%;

  padding-top: 42px;

  display: flex;
  flex-direction: column;

  gap: 18px;

  opacity: 0.72;
}

/* LINE */
.nav-signature-line {
  width: 100%;

  height: 1px;

  background:
    linear-gradient(
      to right,
      rgba(91,59,30,0),
      rgba(91,59,30,0.14),
      rgba(91,59,30,0)
    );
}

/* TEXT */
.nav-signature span {
  font-family: "Gloria Hallelujah", cursive;

  font-size: 1rem;

  letter-spacing: 0.04em;

  color: var(--dark);

  text-align: center;
}

/* DRAWER LINKS */
.nav a {
  position: relative;

  margin: 0;

  font-size: 1rem;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  text-decoration: none;

  color: var(--dark);

  opacity: 0;

  transform: translateY(12px);

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

/* LINK SEPARATORS */
.nav a:not(:last-child) {
  padding-bottom: 18px;

  border-bottom:
    1px solid rgba(91, 59, 30, 0.08);

  width: 100%;
}

/* OVERLAY */
.nav-overlay {
  display: block;
  position: fixed;

  inset: 0;

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

  backdrop-filter: blur(3px);

  opacity: 0;
  pointer-events: none;

  transition:
    opacity 0.35s ease;

  z-index: 1050;
}

/* ACTIVE DRAWER */
.nav.active {
  transform: translateX(0);
}

/* LINK REVEAL */
.nav.active a {
  opacity: 1;
  transform: translateY(0);
}

/* STAGGER */
.nav.active a:nth-child(1) {
  transition-delay: 0.08s;
}

.nav.active a:nth-child(2) {
  transition-delay: 0.14s;
}

.nav.active a:nth-child(3) {
  transition-delay: 0.2s;
}

.nav.active a:nth-child(4) {
  transition-delay: 0.26s;
}

.nav.active a:nth-child(5) {
  transition-delay: 0.32s;
}

.nav.active a:nth-child(6) {
  transition-delay: 0.38s;
}

.nav a:hover {
  color: var(--highlight);
}

/* ACTIVE OVERLAY */
.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

  /* LOGO */
  .logo {
    gap: 1.5rem;
  }

  .logo-img {
    width: 58px;
    height: 58px;
  }
  .logo-text {
  transform: translateY(1px);
}

  .logo-title {
    font-size: 1.45rem;
  }

  /* TOGGLE ACTIVE */
.menu-toggle.active span:first-child {
  transform:
    translate(-50%, 0)
    rotate(45deg);
}

.menu-toggle.active span:last-child {
  transform:
    translate(-50%, 0)
    rotate(-45deg);
}

}

body.menu-open {
  overflow: hidden;
}

/* LANGUAGE */
.lang-toggle {
  background: none;

  border: none;

  cursor: pointer;
}

/* SECCIONES */
section {
  padding: 100px 40px;
  max-width: 1100px;
  margin: auto;
}

/* SMALL TAG */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 18px;

  font-size: 12px;
  font-weight: 500;

  letter-spacing: 2px;
  text-transform: uppercase;

  color: var(--secondary);
}

/* LINEA DECORATIVA */
.section-tag::before {
  content: "";

  width: 40px;
  height: 1px;

  background: var(--accent);

  opacity: 0.8;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

/* IMAGE + VIDEO */
.hero-image,
.hero-video-wrapper {
  position: absolute;
  inset: 0;

  z-index: 0;

  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  display: block;
}

.hero-video {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  display: block;
}

/* DESKTOP */
.hero-video-wrapper {
  display: none;
}

.hero-image {
  display: block;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(234, 225, 203, 0.4),
    rgba(234, 225, 203, 0.5)
  );
  z-index: 1;
}

/* HERO CONTENT */
.hero-content {
  position: relative;

  z-index: 2;

  text-align: center;

  max-width: 760px;

  padding: 20px;
}

/* TITLE */
.hero-content h1 {
  margin: 0 0 26px;

  font-size:  clamp(28px, 3vw, 44px);


  line-height: 0.95;

  font-weight: 500;

  letter-spacing: -0.03em;

  color: var(--dark);

  max-width: 900px;
}

/* TEXT */
.hero-content p {
  margin: 0 auto;

  max-width: 560px;

  font-size: clamp(16px, 1.4vw, 20px);

  line-height: 1.8;

  color:
    rgba(91,59,30,0.82);
}

.hero-actions {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

@media (max-width: 768px) {

  /* MOBILE HERO */
.hero {
  padding:
    calc(92px + env(safe-area-inset-top))
    24px
    42px;
}

/* CONTENT */
.hero-content {
  max-width: 540px;
}

/* TITLE */
.hero-content h1 {
  margin-bottom: 20px;

  font-size: clamp(2.2rem, 7vw, 3.1rem);

  line-height: 0.96;

  letter-spacing: -0.04em;
}

/* TEXT */
.hero-content p {
  max-width: 30ch;

  font-size: 1rem;

  line-height: 1.7;
}

/* ACTIONS */
.hero-actions {
  margin-top: 30px;
  justify-content: center;
}

.hero-actions .btn {
  min-width: 170px;
}

/* MEDIA */

.hero-image {
    display: none;
  }

  .hero-video-wrapper {
    display: block;
  }


}

/* ABOUT */
.about {
  padding: 100px 40px;
}

/* LAYOUT */
.about-container {
  display: grid;
  grid-template-columns: 0.70fr 1.30fr;
  gap: 60px;
  align-items: center;
}

/* IMAGEN */
.about-image {
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
}

/* TEXTO */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* BLOQUES */
.about-block p {
  margin: 0 0 15px;
  line-height: 1.7;
  max-width: 540px;
}

/* TITULO */
.about h2 {
  margin-bottom: 20px;
}

/* RESPIRACIÓN VISUAL */
.about-block {
  position: relative;
}

/* DETALLE SUTIL (línea decorativa) */
.about-block::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 10px;
  width: 2px;
  height: 70%;
  background: var(--accent);
  opacity: 0.6;
}

.about-quote {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--dark);
  max-width: 500px;
}


.about-link {
  display: inline-flex;
  align-items: center;
  position: relative;
  gap: 8px;

  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;

  color: var(--dark);

  text-decoration: none;

  transition: all 0.3s ease;
}

.about-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;

  width: 100%;
  height: 1px;

  background: var(--accent);

  transform: scaleX(0.4);
  transform-origin: left;

  transition: transform 0.3s ease;
}

.about-link:hover {
  opacity: 0.7;
  transform: translateX(3px);
}

.about-link:hover::after {
  transform: scaleX(1);
}


/* RESPONSIVE */

@media (max-width: 900px) { .about-container { grid-template-columns: 1fr; } .about-image { order: -1; } }
@media (max-width: 768px) {

   .about {
    padding: 88px 24px;
  }

  /* LAYOUT */
  .about-container {
    gap: 54px;
  }

  /* IMAGE */
  .about-image img {
    max-width: 100%;

    border-radius: 18px;
  }

  /* CONTENT */
  .about-content {
    gap: 34px;
  }

  /* BLOCKS */
  .about-block {
    padding-left: 18px;
  }

  .about-block::before {
    left: 0;

    top: 6px;

    height: calc(100% - 12px);

    opacity: 0.45;
  }

  /* TEXT */
  .about-block p {
    margin-bottom: 14px;

    max-width: 32ch;

    font-size: 1rem;

    line-height: 1.8;
  }

  /* QUOTE */
  .about-quote {
    font-size: clamp(1.45rem, 5vw, 1.9rem);

    line-height: 1.35;

    max-width: 14ch;
  }

  /* ACTION */
  .about-actions {
    padding-top: 8px;
  }
}

/* SERVICES */
.services {
  padding: 20px 40px;
}


.services-header {
  max-width: 700px;
  margin-bottom: 50px;
}


/* TITULO */
.services-header h2 {
  margin: 0;

  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;

  font-weight: 500;

  color: var(--dark);

  max-width: 600px;
}

.services-list {
  display: grid;

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

  gap: 28px;
}

.service-item {
  display: grid;

  grid-template-columns: 180px 1fr;

  gap: 22px;

  align-items: center;

  padding: 24px;

  border-radius: 28px;

  background: rgba(255,255,255,0.32);

  border: 1px solid rgba(91, 59, 30, 0.06);

  backdrop-filter: blur(4px);

  transition: all 0.35s ease;
}

.service-item:hover {
  transform: translateY(-4px);

  border-color: rgba(210, 164, 50, 0.2);
}

.service-image {
  width: 180px;
  flex-shrink: 0;
}


.service-image img {
  width: 100%;
  aspect-ratio: 4 / 5;

  object-fit: cover;
  object-position: center;

  border-radius: 20px;

  transition: transform 0.6s ease;
}

.service-image:hover img {
  transform: scale(1.04);
}

.service-content {
  max-width: 540px;
  display: flex;
  flex-direction: column;

  justify-content: center;
 
}


.service-content h3 {
  font-size: 20px;
  margin-bottom: 14px;
}

.service-content p {
  line-height: 1.8;
  margin-bottom: 25px;
  max-width: 500px;
}

.service-actions {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-top: 20px;

  flex-wrap: wrap;
}

/* BENEFITS */
.service-benefits {
  margin: 12px 0 0;
}

/* LABEL */
.benefits-label {
  display: inline-block;

  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: var(--secondary);

  margin-bottom: 18px;
}

/* LIST */
.benefits-list {
  display: flex;
  flex-direction: column;

  gap: 8px;
}


/* ITEM */
.benefit-item {
  position: relative;

  padding-left: 18px;

  line-height: 1.45;

  font-size: 14px;

  color: var(--dark);
}

/* DETALLE GRÁFICO */
.benefit-item::before {
  content: "";

  position: absolute;
  left: 0;
  top: 9px;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: var(--accent);

  opacity: 0.8;
}

/* SERVICE TEXT BUTTON */
.service-toggle {
  padding: 0;

  border: none;

  background: transparent;

  font: inherit;

  cursor: pointer;
}

/* RESPONSIVE */

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

@media (max-width: 768px) {

  .services {
    padding: 88px 24px;
  }

  /* HEADER */
  .services-header {
    margin-bottom: 42px;
  }

  .services-header h2 {
    line-height: 1.05;

    max-width: 12ch;
  }

  /* LIST */
  .services-list {
    grid-template-columns: 1fr;

    gap: 26px;
  }

  /* CARD */
  .service-item {
    grid-template-columns: 1fr;

    gap: 26px;

    padding: 22px;

    border-radius: 26px;
  }

  /* IMAGE */
  .service-image {
    width: 100%;
  }

  .service-image img {
    width: 100%;

    aspect-ratio: 4 / 4.8;

    border-radius: 22px;
  }

  /* CONTENT */
  .service-content {
    max-width: 100%;
  }

  .service-content h3 {
    margin-bottom: 18px;

    font-size: 1.45rem;

    line-height: 1.15;
  }

  /* BENEFITS */
  .benefits-label {
    margin-bottom: 16px;
  }

  .benefits-list {
    gap: 10px;
  }

  .benefit-item {
    font-size: 0.95rem;

    line-height: 1.6;
  }

  /* ACTIONS */
  .service-actions {
    margin-top: 28px;

    gap: 12px;
  }

}

@media (max-width: 900px) {
  .service-item {
    grid-template-columns: 1fr;
  }

  .service-item.reverse {
    direction: ltr;
  }
}

/* MODAL */
.service-modal {
  position: fixed;

  inset: 0;

  z-index: 2000;

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

  padding: 24px;

  opacity: 0;
  pointer-events: none;

  transition: opacity 0.3s ease;
}

/* ACTIVE */
.service-modal.active {
  opacity: 1;
  pointer-events: auto;
}

/* BACKDROP */
.service-modal-backdrop {
  position: absolute;
  inset: 0;

  background: rgba(20,20,20,0.35);

  backdrop-filter: blur(10px);
}

/* CONTENT */
.service-modal-content {
  position: relative;

  width: 100%;
  max-width: 700px;

  padding: 50px;

  border-radius: 28px;

  background:
    rgba(234,225,203,0.92);

  border:
    1px solid rgba(255,255,255,0.35);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.08);

  transform: translateY(10px);

  transition: transform 0.3s ease;
}

/* ACTIVE ANIMATION */
.service-modal.active .service-modal-content {
  transform: translateY(0);
}

/* CLOSE */
.service-modal-close {
  position: absolute;

  top: 18px;
  right: 20px;

  background: none;
  border: none;

  font-size: 28px;

  cursor: pointer;

  color: var(--dark);
}

/* BODY */
.service-modal-body h3 {
  font-size: 30px;

  margin-bottom: 20px;
}

.service-modal-body p {
  line-height: 1.8;

  margin-bottom: 18px;
}

/* META */
.service-modal-meta {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin-top: 30px;
}

.service-modal-meta span {
  padding: 8px 14px;

  border-radius: 999px;

  background: rgba(210,164,50,0.12);

  font-size: 12px;
}

/* ========================================
   SERVICE MODAL MOBILE
======================================== */

@media (max-width: 768px) {

  .service-modal {
    align-items: flex-end;

    padding: 0;
  }

  /* CONTENT */
  .service-modal-content {
    width: 100%;

    max-width: 100%;

    max-height: 92svh;

    overflow-y: auto;

    padding:
      72px 26px 34px;

    border-radius:
      28px 28px 0 0;

    transform:
      translateY(30px);
  }

  /* ACTIVE */
  .service-modal.active
  .service-modal-content {
    transform:
      translateY(0);
  }

  /* CLOSE */
  .service-modal-close {
    top: 18px;
    right: 18px;

    width: 40px;
    height: 40px;

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

    border-radius: 50%;

    background:
      rgba(91,59,30,0.05);

    font-size: 22px;
  }

  /* BODY */
  .service-modal-body h3 {
    font-size:
      clamp(2rem, 7vw, 2.4rem);

    line-height: 0.98;

    margin-bottom: 22px;
  }

  .service-modal-body p {
    font-size: 1rem;

    line-height: 1.85;

    margin-bottom: 18px;

    max-width: 34ch;
  }

  /* META */
  .service-modal-meta {
    margin-top: 30px;

    gap: 10px;
  }

}


/* PROCESS */
.process-section {
  padding: 60px 40px;
}

/* HEADER */
.process-header {
  max-width: 720px;

  margin-bottom: 60px;
}

.process-header h2 {
  margin: 0;

  font-size: clamp(28px, 3vw, 40px);

  line-height: 1.08;

  font-weight: 500;

  color: var(--dark);
}

/* STEPS */
.process-steps {
  display: grid;

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

  gap: 40px;
}

/* STEP */
.process-step {
  position: relative;

  padding-top: 28px;
}

/* LINE */
.process-step::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;

  height: 1px;

  background:
    rgba(91,59,30,0.08);
}

/* NUMBER */
.process-number {
  display: inline-block;

  margin-bottom: 18px;

  font-size: 11px;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: var(--secondary);
}

/* TEXT */
.process-step p {
  margin: 0;

  max-width: 220px;

  line-height: 1.8;

  color:
    rgba(91,59,30,0.9);
}


/* RESPONSIVE */
@media (max-width: 768px) {

  .process-section {
    padding: 88px 24px;
  }

  /* HEADER */
  .process-header {
    margin-bottom: 44px;
  }

  .process-header h2 {
    max-width: 12ch;

    line-height: 1.08;
  }

  /* STEPS */
  .process-steps {
    grid-template-columns: 1fr;

    gap: 30px;
  }

  /* STEP */
  .process-step {
    padding-top: 20px;
  }

  /* TEXT */
  .process-step p {
    max-width: 28ch;

    font-size: 1rem;

    line-height: 1.75;
  }

  /* NUMBER */
  .process-number {
    margin-bottom: 14px;

    letter-spacing: 0.18em;
  }

}

@media (max-width: 900px) {

  .process-section {
    padding: 120px 24px;
  }

  .process-steps {
    grid-template-columns: 1fr;

    gap: 32px;
  }

  .process-step p {
    max-width: 100%;
  }

}

/* FREE SESSION */
.intro-session {
  padding: 40px 40px;
}

/* CONTAINER */
.intro-session-container {
  max-width: 850px;

  margin: 0 auto;
  padding: 80px 60px;

  text-align: center;

  border: 1px solid rgba(91, 59, 30, 0.08);
  border-radius: 24px;

  background: rgba(255, 255, 255, 0.45);

  backdrop-filter: blur(6px);
}

/* TITULO */
.intro-session h2 {
  margin: 0 0 24px;
  font-family: "Gloria Hallelujah", cursive;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;

  max-width: 700px;
  margin-inline: auto;
}

/* TEXTO */
.intro-session p {
  max-width: 580px;

  margin: 0 auto 35px;

  line-height: 1.8;
}

/* ========================================
   INTRO SESSION MOBILE
======================================== */

@media (max-width: 768px) {

  .intro-session {
    padding: 32px 24px 88px;
  }

  /* CONTAINER */
  .intro-session-container {
    padding: 54px 28px;

    border-radius: 28px;
  }

  /* TITLE */
  .intro-session h2 {
    margin-bottom: 22px;

    font-size:
      clamp(2rem, 7vw, 2.8rem);

    line-height: 1.22;

    max-width: 12ch;
  }

  /* TEXT */
  .intro-session p {
    max-width: 30ch;

    margin-bottom: 30px;

    font-size: 1rem;

    line-height: 1.8;
  }

}

/* EDITORIAL TEXT LINK */
.link {
  color: inherit;
  
  text-decoration: underline;

  text-decoration-thickness: 1px;

  text-underline-offset: 6px;

  text-decoration-color:
    rgba(91,59,30,0.22);

  transition:
    text-decoration-color 0.3s ease,
    opacity 0.3s ease;
}

.link:hover {
  opacity: 0.75;

  text-decoration-color:
    rgba(210,164,50,0.55);
}

/* RESOURCES */
.resources-section {
  display: grid;

  grid-template-columns:
    1fr 0.8fr;

  gap: 30px;

  align-items: center;

  padding: 40px 40px 100px;
}

/* CONTENT */
.resources-content {
  max-width: 640px;
}

.resources-content h2 {
  margin: 0 0 26px;

  font-size: clamp(28px, 3vw, 40px);

  line-height: 1.08;

  font-weight: 500;

  color: var(--dark);
}

.resources-content p {
  max-width: 520px;

  margin-bottom: 34px;

  line-height: 1.9;
}

/* IMAGE */
.resources-image img {
  width: 100%;
  height: 420px;

  object-fit: cover;

  border-radius: 28px;
}

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

@media (max-width: 768px) {

  .resources-section {
    gap: 42px;

    padding:
      24px
      24px
      96px;
  }

  /* CONTENT */
  .resources-content {
    max-width: 100%;
  }

  .resources-content h2 {
    margin-bottom: 22px;

    max-width: 13ch;

    line-height: 1.08;
  }

  .resources-content p {
    max-width: 30ch;

    margin-bottom: 28px;

    font-size: 1rem;

    line-height: 1.85;
  }

  /* LINK */
  .resources-content .link {
    font-size: 0.98rem;
  }

  /* IMAGE */
  .resources-image img {
    height: 320px;

    border-radius: 24px;
  }

}

@media (max-width: 900px) {

  .resources-image img {
    height: 340px;
  }
   .resources-section {
    grid-template-columns: 1fr;

    gap: 50px;

    padding:
      0 24px 120px;
  }
}


/* TESTIMONIOS */
.testimonials {
  padding: 40px 40px 120px;

  background: var(--secondary);

  color: white;
}

.testimonials .section-tag {
  color: rgba(255,255,255,0.7);
}

.testimonials .section-tag::before {
  background: rgba(255,255,255,0.5);
}

/* HEADER */
.testimonials-header {
  max-width: 700px;
  margin-bottom: 40px;
}

.testimonials h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  font-weight: 500;
  
}


/* GRID */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 30px;
}

/* CARD */
.testimonial-card {
  display: flex;
  flex-direction: column;

  justify-content: space-between;

  height: 100%;

  padding: 35px;

  border-radius: 20px;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(8px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: all 0.3s ease;
}

/* HOVER */
.testimonial-card:hover {
  transform: translateY(-6px);

  background: rgba(255, 255, 255, 0.12);
}

/* STARS */
.testimonial-stars {
  margin-bottom: 20px;

  letter-spacing: 3px;

  color: #F4D675;
}

/* TEXT */
.testimonial-text {
  line-height: 1.8;

  margin-bottom: 30px;

  color: rgba(255,255,255,0.92);
}

/* AUTHOR */
.testimonial-author {
  display: flex;
  align-items: center;

  gap: 14px;
}

/* AVATAR */
.testimonial-author img {
  width: 52px;
  height: 52px;

  border-radius: 50%;

  object-fit: cover;
}

/* NAME */
.testimonial-author span {
  font-size: 14px;
  letter-spacing: 0.5px;
}

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

@media (max-width: 768px) {

  .testimonials {
    padding:
      88px
      24px
      96px;
  }

  /* HEADER */
  .testimonials-header {
    margin-bottom: 38px;
  }

  .testimonials h2 {
    max-width: 13ch;

    line-height: 1.06;
  }

  /* GRID */
  .testimonials-grid {
    gap: 22px;
    align-items: stretch;
  }

  /* CARD */
  .testimonial-card {
    padding: 28px;
    height: auto;
    border-radius: 24px;
  }

  /* STARS */
  .testimonial-stars {
    margin-bottom: 18px;

    letter-spacing: 2px;
  }

  /* TEXT */
  .testimonial-text {
    margin-bottom: 26px;

    max-width: 28ch;

    font-size: 1rem;

    line-height: 1.85;
  }

  /* AUTHOR */
  .testimonial-author {
    gap: 12px;
  }

  .testimonial-author img {
    width: 48px;
    height: 48px;
  }

}


/* ==========
 FOOTER 
 ===========*/
.footer {
  padding: 100px 40px 40px;

  background: var(--dark);

  color: rgba(255,255,255,0.82);
}

/* TOP */
.footer-top {
  display: grid;

  grid-template-columns:
    1.4fr
    1fr
    1fr;

  gap: 60px;

  padding-bottom: 60px;

  border-bottom:
    1px solid rgba(255,255,255,0.08);
}

/* FOOTER LOGO */
.footer-logo{
  display:flex;

  align-items:center;

  gap:1rem;

  width:fit-content;

  text-decoration:none;

  margin-bottom:24px;
}

/* ICON */
.footer-logo-img{
  width:58px;

  height:58px;

  object-fit:contain;

  flex-shrink:0;
}

/* TEXT */
.footer-logo-text{
  position:relative;

  display:flex;

  flex-direction:column;

  line-height:1;
}

/* CASA SOMA */
.footer-logo-title{
  font-family: "Gloria Hallelujah", cursive;
  font-size:1.7rem;
  letter-spacing:.09em;
  font-weight: 700;
  opacity:.82;
  color:#EAE1CB
}

/* BRAND */
.footer-brand h3 {
  margin-bottom: 18px;

  font-size: 28px;

  color: white;
}

.footer-brand p {
  max-width: 320px;

  line-height: 1.8;
}

/* LABEL */
.footer-label {
  display: inline-block;

  margin-bottom: 20px;

  font-size: 11px;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: rgba(255,255,255,0.45);
}

/* LINKS */
.footer a:not(.footer-logo) {
  display: block;

  width: fit-content;

  margin-bottom: 14px;

  text-decoration: none;

  color: rgba(255,255,255,0.82);

  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 0.6;
}

/* BOTTOM */
.footer-bottom {
  display: flex;

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

  gap: 20px;

  padding-top: 30px;
}

/* LEGAL */
.footer-legal {
  display: flex;

  flex-wrap: wrap;

  gap: 24px;
}

/* COPYRIGHT */
.footer-copy {
  font-size: 13px;

  color: rgba(255,255,255,0.4);
}

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

@media (max-width: 768px) {

  .footer {
    padding:
      88px
      24px
      calc(34px + env(safe-area-inset-bottom));
  }

  /* TOP */
  .footer-top {
    gap: 42px;

    padding-bottom: 42px;
  }

  /* BRAND */
  .footer-brand p {
    max-width: 28ch;

    line-height: 1.85;
  }

  /* LOGO */
  .footer-logo {
    margin-bottom: 20px;
  }

  .footer-logo-img {
    width: 64px;
    height: 64px;
  }

  .footer-logo-title {
    font-size: 1.9rem;
  }

  /* LABEL */
  .footer-label {
    margin-bottom: 18px;

    letter-spacing: 0.18em;
  }

  /* LINKS */
  .footer a:not(.footer-logo) {
    margin-bottom: 16px;

    line-height: 1.6;
  }

  /* BOTTOM */
  .footer-bottom {
    padding-top: 24px;

    gap: 24px;
  }

  /* LEGAL */
  .footer-legal {
    gap: 12px;
  }

  .footer-legal a {
    line-height: 1.6;
  }

  /* COPY */
  .footer-copy {
    font-size: 0.82rem;
  }

}

@media (max-width: 900px) {

  .footer-top {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;

    gap: 20px;
  }

.footer-legal {
  flex-direction: row;

  flex-wrap: wrap;

  gap: 14px 18px;
}

.footer-legal a {
  font-size: 0.82rem;

  opacity: 0.82;
}

  }


/* =========================================
   BOOKING MODAL
========================================= */

.booking-modal {
  position: fixed;

  inset: 0;

  z-index: 4000;

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

  padding: 32px;

  opacity: 0;
  pointer-events: none;

  transition:
    opacity 0.35s ease;
}

/* ACTIVE */
.booking-modal.active {
  opacity: 1;
  pointer-events: auto;
}

/* BACKDROP */
.booking-backdrop {
  position: absolute;
  inset: 0;

  background:
    rgba(15,15,15,0.55);

  backdrop-filter:
    blur(8px);
}

/* WINDOW */
.booking-window {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: 980px;

  height: min(88vh, 920px);

  display: flex;
  flex-direction: column;

  padding: 20px 20px 24px;

  border-radius: 30px;

  background:
    #fffdf9;

  box-shadow:
    0 30px 90px rgba(0,0,0,0.16);

  overflow: hidden;
}

/* CLOSE */
.booking-close {
  position: absolute;

  top: 22px;
  right: 22px;

  width: 38px;
  height: 38px;

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

  border: none;

  border-radius: 50%;

  background:
    rgba(91,59,30,0.05);

  color:
    rgba(91,59,30,0.7);

  font-size: 14px;

  cursor: pointer;

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

.booking-close:hover {
  background:
    rgba(91,59,30,0.1);

  color:
    var(--dark);

  transform:
    rotate(90deg);
}

/* EMBED */
.booking-embed {
  flex: 1;

  min-height: 0;
}

.booking-embed iframe {
  width: 100%;
  height: 100%;

  border: none;

  border-radius: 18px;

  background: white;
}

/* LEGAL */
.booking-legal {
  display: flex;
  flex-wrap: wrap;

  gap: 18px;

  margin-top: 22px;

  padding-top: 22px;

  border-top:
    1px solid rgba(91,59,30,0.08);
}

/* RESPONSIVE */

/* ========================================
   BOOKING MODAL MOBILE
======================================== */

@media (max-width: 768px) {

  .booking-modal {
    padding: 0;

    align-items: flex-end;
  }

  /* WINDOW */
  .booking-window {
    width: 100%;

    height: 100svh;

    max-height: 100svh;

    padding:
      calc(70px + env(safe-area-inset-top))
      14px
      calc(20px + env(safe-area-inset-bottom));

    border-radius:
      28px 28px 0 0;
  }

  /* EMBED */
  .booking-embed iframe {
    border-radius: 20px;
  }

  /* CLOSE */
  .booking-close {
    top: calc(18px + env(safe-area-inset-top));
    right: 18px;

    width: 42px;
    height: 42px;

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

    backdrop-filter:
      blur(10px);

    box-shadow:
      0 4px 18px rgba(0,0,0,0.08);
  }

  /* LEGAL */
  .booking-legal {
    justify-content: center;

    text-align: center;
  }

}

@media (max-width: 900px) {

  .booking-modal {
    padding: 16px;
  }

  .booking-window {
    height: 92vh;

    padding: 24px;

    border-radius: 24px;
  }

  .booking-header {
    margin-bottom: 18px;
  }

  .booking-title {
    font-size:
      clamp(24px, 7vw, 34px);
  }

  .booking-legal {
    gap: 14px;

    margin-top: 18px;

    padding-top: 18px;
  }

}

/* BOTONES */
.btn {
  padding: 12px 24px;
  text-decoration: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition:
  background-color 0.3s ease,
  color 0.3s ease,
  border-color 0.3s ease,
  transform 0.3s ease;
}

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

.btn.primary:hover {
  background: var(--highlight);
}

.btn.ghost {
  border: 1px solid var(--dark);
  color: var(--dark);
}

/* BUTTON RESET */
button.btn {
   appearance: none;

  -webkit-appearance: none;

  background: none;

  border: none;
}