/* =========================================================
   Estetica Dysee — dysee.css v4
   Tipografía: Outfit (títulos) + DM Sans (cuerpo)
   ========================================================= */

:root {
  --bg: #f5f0eb;
  --panel: #faf7f4;
  --card: #ffffff;
  --muted: #8a7d72;
  --muted-2: #c2b5aa;
  --accent: #b8945f;
  --accent-dark: #9a7a4a;
  --text: #2c2420;
  --max-width: 1080px;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;

  --ease-pop: cubic-bezier(.34, 1.56, .64, 1);
  --ease-soft: cubic-bezier(.2, .8, .2, 1);

  --t-fast: 140ms;
  --t-mid: 340ms;
  --t-slow: 540ms;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}

/* ── Container ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 20px 64px;
}

/* ── Typography ── */
h1,
h2,
h3 {
  font-family: 'Outfit', system-ui, sans-serif;
  line-height: 1.15;
  font-weight: 600;
}

h1 {
  font-size: clamp(30px, 5.5vw, 50px);
}

h2 {
  font-size: clamp(24px, 3.8vw, 36px);
  margin-bottom: 18px;
}

h3 {
  font-size: 19px;
}

em {
  font-style: italic;
}

.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.section-desc {
  color: var(--muted);
  margin-top: -10px;
  margin-bottom: 28px;
  font-size: 15px;
  max-width: 560px;
  line-height: 1.65;
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--t-slow) var(--ease-soft),
    transform var(--t-slow) var(--ease-soft);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Topbar ── */
.topbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: calc(100% - 40px);
  max-width: 1080px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-radius: 999px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
  border: 1px solid rgba(0, 0, 0, .06);
  transition: background var(--t-mid) ease, box-shadow var(--t-mid) ease;
}

.brand a {
  display: flex;
  align-items: center;
}

.logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
}

.navlinks a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .2px;
  transition: color var(--t-fast) ease, background var(--t-fast) ease, transform var(--t-fast) ease;
}

.navlinks a:hover {
  color: var(--text);
  background: rgba(0, 0, 0, .04);
  transform: translateY(-1px);
}

.topbar .reserve {
  flex-shrink: 0;
  padding: 9px 22px;
  background: var(--text);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
  transition: background var(--t-fast) ease, transform var(--t-fast) ease, box-shadow var(--t-fast) ease;
}

.topbar .reserve:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(154, 122, 74, .25);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 20px;
  padding: 4px 8px;
  color: var(--text);
}

/* ── Hero ── */
.hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
  margin-top: 82px;
  margin-left: -40px;
  margin-right: -40px;
  border-radius: var(--r-xl);
}

.hero img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, .35) 0%,
      rgba(0, 0, 0, .1) 25%,
      rgba(0, 0, 0, .08) 40%,
      rgba(0, 0, 0, .45) 70%,
      rgba(0, 0, 0, .72) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-content {
  padding: 52px 40px 60px;
  max-width: 700px;
  color: #fff;
  text-align: center;
}

.hero-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, .15);
}

.hero-label-wide {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 5px;
  padding: 12px 32px;
  margin-top: -6px;
  margin-bottom: 20px;
}

.hero-content h1 {
  margin-bottom: 16px;
  text-shadow: 0 3px 24px rgba(0, 0, 0, .45), 0 6px 50px rgba(0, 0, 0, .2);
  line-height: 1.1;
}

.hero-accent {
  color: var(--accent);
  font-style: normal;
}

.subtitle {
  color: rgba(255, 255, 255, .92);
  margin-bottom: 28px;
  font-size: 17px;
  line-height: 1.6;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-btn {
  padding: 13px 28px;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(198, 159, 132, .3);
}

.hero-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: background var(--t-fast) ease, border-color var(--t-fast) ease, transform var(--t-fast) ease;
}

.hero-btn-outline:hover {
  background: rgba(255, 255, 255, .22);
  border-color: rgba(255, 255, 255, .5);
  transform: translateY(-2px);
}

/* ── Btn ── */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: background var(--t-fast) ease,
    transform var(--t-fast) var(--ease-pop),
    box-shadow var(--t-fast) ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(170, 122, 87, .22);
}

.btn.secondary {
  background: #fff;
  color: #1a1210;
  border: 1px solid rgba(0, 0, 0, .08);
}

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

/* ── Sections ── */
.section {
  margin: 48px 0;
}

/* ── Cards (objetivos) ── */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: var(--card);
  padding: 32px 24px 28px;
  border-radius: var(--r-xl);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .06);
  border: 1px solid rgba(0, 0, 0, .06);
  text-align: center;
  transition: transform var(--t-mid) var(--ease-pop),
    box-shadow var(--t-mid) ease,
    background var(--t-mid) ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .08);
  background: linear-gradient(160deg, #fffbf7, #fff);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(198, 159, 132, .14), rgba(198, 159, 132, .06));
  font-size: 22px;
  color: var(--accent-dark);
  transition: transform var(--t-mid) var(--ease-pop),
    background var(--t-mid) ease;
}

.card:hover .card-icon {
  background: linear-gradient(135deg, rgba(198, 159, 132, .25), rgba(198, 159, 132, .10));
  transform: scale(1.1);
}

.card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--text);
}

.card p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}

/* ── Offer Carousel ── */
.offer-carousel {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin: 0 0 6px;
}

.carousel-track {
  display: flex;
  transition: transform 600ms cubic-bezier(.25, .1, .25, 1);
  will-change: transform;
  height: 280px;
}

.carousel-slide {
  flex: 0 0 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.carousel-text {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 24px;
}

.carousel-text h3 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(20px, 3.5vw, 32px);
  max-width: 640px;
  margin-bottom: 22px;
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .3);
}

.carousel-text h3 strong {
  display: inline-block;
  background: rgba(255, 255, 255, .25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 4px 14px;
  margin: 0 4px;
  border-radius: 10px;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, .3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
}

.carousel-btn {
  background: var(--text);
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  transition: background var(--t-fast) ease, transform var(--t-fast) ease;
}

.carousel-btn:hover {
  background: var(--accent-dark);
  transform: scale(1.03);
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .9);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .1);
  transition: transform var(--t-fast) ease, box-shadow var(--t-fast) ease;
  z-index: 10;
}

.carousel-control:hover {
  transform: translateY(-50%) scale(1.07);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .14);
}

.carousel-control.prev {
  left: 14px;
}

.carousel-control.next {
  right: 14px;
}

.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, .8);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background var(--t-fast) ease, transform var(--t-fast) ease;
}

.carousel-dot:hover {
  transform: scale(1.15);
}

.carousel-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.2);
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--card);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .06);
  border: 1px solid rgba(0, 0, 0, .06);
  cursor: pointer;
  transition: transform var(--t-mid) var(--ease-pop),
    box-shadow var(--t-mid) ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(0, 0, 0, .08);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--t-mid) var(--ease-soft);
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 20px;
}

.service-card-body strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.service-card-body p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.service-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-dark);
  background: rgba(198, 159, 132, .1);
  padding: 5px 14px;
  border-radius: 999px;
  transition: background var(--t-fast) ease, color var(--t-fast) ease;
}

.service-card:hover .service-tag {
  background: var(--accent-dark);
  color: #fff;
}

/* ── SPA & Wellness ── */
.spa-section {
  margin: 52px 0;
}

.spa-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: #1c1512;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

.spa-text {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.spa-text .section-label {
  color: var(--accent);
}

.spa-text h2 {
  margin-bottom: 0;
  color: #fff;
}

.spa-intro {
  color: rgba(255, 255, 255, .65);
  font-size: 14.5px;
  line-height: 1.7;
}

.spa-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 8px 0;
}

.spa-list li {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .06);
  cursor: pointer;
  transition: background var(--t-fast) ease, border-color var(--t-fast) ease;
}

.spa-list li:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(198, 159, 132, .2);
}

.spa-list li.spa-selected {
  background: rgba(45, 106, 79, .2);
  border-color: rgba(45, 106, 79, .4);
}

.spa-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(198, 159, 132, .12);
  border-radius: 50%;
}

.spa-list li div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.spa-list li strong {
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
}

.spa-list li span {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.55;
}

.spa-consult-btn {
  flex-shrink: 0;
  padding: 8px 18px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--t-fast) ease, transform var(--t-fast) ease;
}

.spa-consult-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.spa-consult-btn.selected {
  background: #2d6a4f;
}

.spa-btn {
  align-self: flex-start;
  background: var(--accent);
  margin-top: 6px;
}

.spa-btn:hover {
  background: var(--accent-dark);
}

.spa-visual {
  position: relative;
  min-height: 480px;
}

.spa-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Location ── */
.location-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 22px;
  align-items: stretch;
}

.location-info {
  background: var(--card);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
  border: 1px solid rgba(0, 0, 0, .06);
}

.location-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.loc-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.location-detail strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 3px;
}

.location-detail p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.location-detail a {
  color: var(--accent-dark);
  font-weight: 600;
}

.location-detail a:hover {
  text-decoration: underline;
}

.map-btn {
  align-self: flex-start;
  margin-top: 4px;
}

.map-embed {
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  min-height: 320px;
}

/* ── Contact ── */
.contact-section {
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, .06);
}

.contact-form {
  max-width: 660px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.field input {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, .1);
  background: var(--card);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  transition: border-color var(--t-fast) ease, box-shadow var(--t-fast) ease;
}

.field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 148, 95, .14);
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.form-note {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.6;
}

.form-message {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-dark);
  opacity: 0;
  transition: opacity var(--t-fast) ease;
}

.form-message.visible {
  opacity: 1;
}

.form-message.error {
  color: #c0392b;
}

/* ── Modales ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .46);
  backdrop-filter: blur(5px);
  z-index: 400;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--card);
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 640px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  animation: modalIn var(--t-mid) var(--ease-pop) forwards;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .22);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(.97);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(0, 0, 0, .06);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast) ease;
}

.modal-close:hover {
  background: rgba(0, 0, 0, .14);
}

.modal-header {
  margin-bottom: 22px;
}

.modal-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  margin: 6px 0 10px;
}

.modal-header p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* Treatment list */
.treatment-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.treatment-item {
  background: var(--panel);
  border-radius: var(--r-md);
  padding: 16px 18px;
  border: 1px solid rgba(0, 0, 0, .05);
  transition: border-color var(--t-fast) ease, box-shadow var(--t-fast) ease;
}

.treatment-item:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(198, 159, 132, .14);
}

.treatment-item.solo {
  background: var(--card);
  border-left: 3px solid var(--accent);
}

.treatment-item.featured {
  background: linear-gradient(135deg, #fff8f4, #fff);
  border-left: 4px solid var(--accent-dark);
  border-color: rgba(170, 122, 87, .3);
}

.treatment-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 7px;
}

.treatment-top strong {
  font-family: 'Outfit', sans-serif;
  font-size: 15.5px;
  font-weight: 500;
}

.treatment-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 13px;
}

.treatment-item p strong {
  color: var(--accent-dark);
  font-family: inherit;
}

.treatment-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(198, 159, 132, .13);
  color: var(--accent-dark);
  letter-spacing: .3px;
}

.brand-badge {
  background: rgba(170, 122, 87, .16);
  font-weight: 700;
}

.new-badge {
  background: linear-gradient(135deg, #e8c3ba, #d6a599);
  color: #fff;
  border-radius: 4px;
  padding: 3px 6px;
  font-size: 10px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(214, 165, 153, .3);
  vertical-align: middle;
  text-transform: uppercase;
}

.treatment-select-btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--t-fast) ease, transform var(--t-fast) ease;
}

.treatment-select-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.treatment-select-btn.selected {
  background: #2d6a4f;
}

/* ── Sobre Nosotras Detallado ── */
.about-detail-section {
  margin: 52px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin: 36px 0;
}

.team-card {
  background: var(--card);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
  border: 1px solid rgba(201, 168, 124, .08);
  transition: transform var(--t-fast) var(--ease-pop), box-shadow var(--t-fast) ease;
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .2);
}

.team-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--panel);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-mid) var(--ease-soft);
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.team-info h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}

.team-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.team-bio {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Footer ── */
.footer {
  background: var(--text);
  color: #fff;
  padding: 48px 20px 24px;
  margin-top: 64px;
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(242, 236, 230, .5);
  line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 14px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-social a {
  font-size: 14px;
  color: rgba(242, 236, 230, .5);
  transition: color var(--t-fast) ease;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #fff;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.social-links svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
}

/* ── Responsive ── */
@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 960px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .navlinks {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .navlinks.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    border-radius: var(--r-lg);
    padding: 12px;
    gap: 2px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .1);
    border: 1px solid rgba(0, 0, 0, .06);
  }

  .navlinks.open a {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--text);
  }

  .spa-inner {
    grid-template-columns: 1fr;
  }

  .spa-visual {
    min-height: 260px;
  }

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

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 720px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .location-wrapper {
    grid-template-columns: 1fr;
  }

  .map-embed {
    min-height: 240px;
  }

  .hero img {
    height: 420px;
  }

  .hero-content {
    padding: 28px 24px 32px;
  }
  
  .hero {
    margin-left: -20px;
    margin-right: -20px;
    border-radius: var(--r-md);
    margin-top: 60px;
    margin-bottom: 32px;
  }
  
  h1 { font-size: clamp(28px, 6vw, 36px); }
  h2 { font-size: clamp(22px, 5vw, 28px); margin-bottom: 12px; }
  
  .section { margin: 32px 0; }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  
  .hero-btn, .hero-btn-outline {
    width: 100%;
    justify-content: center;
  }

  .carousel-track,
  .carousel-slide img {
    height: 240px;
  }
  
  .carousel-text h3 {
    font-size: clamp(16px, 4vw, 22px);
    margin-bottom: 12px;
  }
  
  .carousel-text h3 strong {
    padding: 2px 8px;
    font-size: clamp(15px, 3.8vw, 20px);
  }
  
  .carousel-btn {
    padding: 8px 18px;
    font-size: 13px;
  }

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

  .modal {
    padding: 24px 18px;
  }

  .spa-text {
    padding: 32px 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 440px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    padding: 8px 14px;
    top: 10px;
  }
  
  .hero {
    margin-left: -15px;
    margin-right: -15px;
    border-radius: var(--r-md);
  }
  
  .hero-content {
    padding: 20px 16px 30px;
  }
  
  .hero-label-wide {
    font-size: 12px;
    padding: 8px 20px;
    letter-spacing: 3px;
  }
  
  .card, .team-info {
    padding: 24px 18px 20px;
  }

  h1 { font-size: 32px; }
  h2 { font-size: 26px; }

  .carousel-text h3 {
    font-size: 20px;
  }

  .spa-list li {
    padding: 10px;
    gap: 12px;
  }
  
  .spa-text {
    padding: 24px 16px;
  }

  .modal {
    padding: 24px 16px 36px;
    border-radius: 18px;
    max-height: 90vh;
  }
  
  .modal-close {
    top: 12px;
    right: 12px;
  }

  .treatment-item {
    padding: 14px 12px;
  }
  
  .treatment-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 8px;
  }

  .footer {
    padding: 36px 16px 20px;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}