:root {
  --navy-950: #2B3060;
  --navy-900: #343979;
  --navy-800: #4B5699;
  --blue-soft: #9DA5D0;
  --lavender: #C5B5D5;
  --pink-soft: #D4C0DD;
  --peach-soft: #EDD9DC;
  --aqua-soft: #C5B5D5;
  --teal: #B39EC5;
  --teal-dark: #4B5699;
  --cream: #FAF5F7;
  --paper: #FDF9FB;
  --white: #ffffff;
  --text: #2B3060;
  --muted: #6B6E9A;
  --line: rgba(75, 86, 153, 0.22);

  --font-title: "Cormorant Garamond", serif;
  --font-logo: "Cinzel", serif;
  --font-body: "DM Sans", sans-serif;

  --shadow-soft: 0 14px 34px rgba(43, 48, 96, 0.10);
  --shadow-strong: 0 26px 70px rgba(43, 48, 96, 0.16);
  --radius-sm: 18px;
  --radius-md: 26px;
  --radius-lg: 36px;
  --radius-full: 999px;
  --ease: cubic-bezier(.25, .46, .45, .94);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 12% 7%, rgba(179, 158, 197, .28), transparent 28%),
    radial-gradient(circle at 91% 10%, rgba(75, 86, 153, .14), transparent 24%),
    var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 252, 249, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background .25s ease;
}

.header.scrolled {
  background: rgba(255, 252, 249, 0.94);
  box-shadow: var(--shadow-soft);
}

.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.logo-text {
  display: block;
}

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: contain;
  padding: 6px;
  background: white;
  filter: drop-shadow(0 10px 18px rgba(92, 84, 142, 0.16));
}

.logo-title {
  display: block;
  font-family: var(--font-logo);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 5px;
  line-height: 1;
  color: var(--navy-900);
}

.logo-subtitle {
  display: block;
  margin-top: 4px;
  font-family: var(--font-title);
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.menu a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  transition: color .2s ease;
}

.menu a:hover {
  color: var(--navy-900);
}

.menu-button {
  padding: 11px 21px;
  color: var(--white) !important;
  background: linear-gradient(135deg, rgba(75, 86, 153, .92), rgba(179, 158, 197, .92));
  border: 1px solid rgba(255,255,255,.58);
  border-radius: var(--radius-full);
  box-shadow: 0 12px 26px rgba(75, 86, 153, 0.22);
}

.menu-button:hover {
  color: var(--white) !important;
  background: linear-gradient(135deg, rgba(43, 48, 96, .95), rgba(212, 192, 221, .92));
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  cursor: pointer;
  place-items: center;
  gap: 4px;
  padding: 12px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: calc(100svh - 88px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(rgba(16, 31, 39, 0.34), rgba(16, 31, 39, 0.34)),
    url("assets/mar_4k.jpg") center / cover no-repeat;
}

/* Lienzo canvas animado: el respaldo visual queda en .hero.
   Dejamos ::before apagado para no interferir. */
.hero::before {
  content: none;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
  will-change: transform;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(255, 252, 249, .76) 0%,
      rgba(255, 250, 252, .50) 38%,
      rgba(255, 250, 252, .14) 68%,
      rgba(255, 250, 252, .03) 100%
    ),
    linear-gradient(180deg, rgba(75, 86, 153, .04), rgba(212, 192, 221, .10)),
    radial-gradient(circle at 18% 25%, rgba(179, 158, 197, .10), transparent 28%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.00), rgba(255,248,251,.08));
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.00), rgba(255,248,251,.08));
}

.hero-orb {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(4px);
  opacity: .22;
  animation: floatOrb 8s ease-in-out infinite;
}

.hero-orb-one {
  width: 180px;
  height: 180px;
  left: 7%;
  top: 20%;
  background: rgba(179, 158, 197, .32);
}

.hero-orb-two {
  width: 280px;
  height: 280px;
  right: 3%;
  bottom: 8%;
  background: rgba(75, 86, 153, .16);
  animation-delay: -3s;
}

@keyframes floatOrb {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -18px, 0); }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(590px, calc(100% - 40px));
  max-width: 590px;
  margin-left: max(22px, calc((100vw - 1180px) / 2));
  margin-right: auto;
  padding: 34px 38px;
  text-align: left;
  border-radius: 34px;
  background: rgba(255, 253, 249, .54);
  border: 1px solid rgba(255, 255, 255, .62);
  box-shadow: 0 26px 70px rgba(99, 87, 142, .13);
  backdrop-filter: blur(3px);
}

.hero-logo {
  display: none;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 18px;
  border: 1px solid rgba(132, 201, 194, .50);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, .62);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-title);
  font-size: clamp(44px, 5.6vw, 70px);
  font-weight: 500;
  line-height: .98;
  color: var(--navy-900);
  letter-spacing: -.02em;
  margin-bottom: 22px;
}

.hero h1 em {
  color: var(--teal-dark);
  font-style: italic;
}

.hero p {
  max-width: 560px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 18px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  padding: 14px 28px;
  font-weight: 800;
  transition: transform .25s var(--ease), background .25s ease, box-shadow .25s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--navy-800), var(--lavender));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(43, 48, 96, .24);
}

.btn.primary:hover {
  background: linear-gradient(135deg, var(--navy-950), var(--pink-soft));
  transform: translateY(-3px);
}

.btn.secondary {
  color: var(--navy-900);
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(116, 123, 152, .18);
  box-shadow: 0 10px 24px rgba(87, 80, 130, .08);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, .94);
  transform: translateY(-3px);
}

.btn.secondary.light {
  color: var(--navy-900);
  background: rgba(255,255,255,.72);
  border-color: rgba(255,255,255,.55);
}

.stats {
  padding: 22px 0;
  background: linear-gradient(135deg, #FAF5F7, #EDD9DC 55%, #E8E2F0);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stats article {
  padding: 26px 22px;
  text-align: center;
  border: 1px solid rgba(174,185,226,.28);
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-soft);
}

.stats strong {
  display: block;
  color: var(--navy-900);
  font-family: var(--font-title);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 8px;
}

.stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .9px;
}

.section {
  padding: 108px 0;
}

.section-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading h2,
.content-block h2,
.contact-box h2,
.process-box h2 {
  font-family: var(--font-title);
  color: var(--navy-900);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1;
  font-weight: 600;
}

.section-heading p,
.content-block p,
.contact-box p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
}

.about {
  background: linear-gradient(180deg, var(--paper), #fff8fb);
}

.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 72px;
}

.about-visual {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-card {
  border: 1px solid rgba(174, 185, 226, .28);
  box-shadow: var(--shadow-strong);
}

.big-card {
  min-height: 430px;
  padding: 44px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 84% 18%, rgba(75, 86, 153, .16), transparent 28%),
    radial-gradient(circle at 14% 12%, rgba(179, 158, 197, .28), transparent 24%),
    linear-gradient(145deg, #FDF9FB, #EDD9DC);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}


.big-card h3 {
  font-family: var(--font-title);
  font-size: 42px;
  line-height: 1;
  color: var(--navy-900);
  margin-bottom: 16px;
}

.big-card p {
  color: var(--muted);
}

.mini-card {
  position: static;
  width: min(330px, 100%);
  align-self: flex-end;
  padding: 25px 28px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.78);
  color: var(--navy-900);
  backdrop-filter: blur(10px);
}

.mini-card strong {
  display: block;
  font-family: var(--font-logo);
  letter-spacing: 4px;
  margin-bottom: 5px;
}

.mini-card span {
  color: var(--muted);
  font-size: 13px;
}

.content-block p {
  margin-bottom: 13px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.values-grid span {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.68);
  color: var(--navy-900);
  font-weight: 800;
  border-left: 4px solid var(--teal);
  box-shadow: 0 10px 24px rgba(87,80,130,.07);
}

.specialties {
  background: linear-gradient(180deg, #FAF5F7, #EDD9DC);
}

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

.service-card {
  position: relative;
  min-height: 255px;
  padding: 42px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(174, 185, 226, .28);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.service-card.featured {
  background:
    radial-gradient(circle at 90% 15%, rgba(179, 158, 197, .34), transparent 28%),
    linear-gradient(135deg, #FDF9FB, #EDD9DC 52%, #E2DDF0);
  color: var(--navy-900);
}

.service-card h3 {
  font-family: var(--font-title);
  font-size: 36px;
  line-height: 1;
  margin-bottom: 16px;
  color: var(--navy-900);
}

.service-card p {
  color: var(--muted);
}

.service-card.featured p {
  color: var(--muted);
}

.card-number {
  position: absolute;
  right: 26px;
  bottom: -14px;
  font-family: var(--font-title);
  font-size: 112px;
  font-weight: 700;
  line-height: 1;
  opacity: .07;
  color: var(--navy-900);
}

.team {
  background: linear-gradient(180deg, #FDF9FB, #FAF5F7);
}

.team-panel {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items: start;
}

.team-categories {
  position: sticky;
  top: 112px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(174, 185, 226, .28);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.team-filter {
  width: 100%;
  min-height: 74px;
  border: 0;
  background: rgba(255,255,255,.82);
  color: var(--navy-900);
  border-radius: 22px;
  padding: 18px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s ease, color .25s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(87,80,130,.06);
}

.team-filter span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f4f1fb;
  color: var(--muted);
  display: grid;
  place-items: center;
  font-size: 12px;
  transition: background .25s ease, color .25s ease;
}

.team-filter:hover,
.team-filter.active {
  background: linear-gradient(135deg, rgba(75, 86, 153, .92), rgba(179, 158, 197, .82));
  color: var(--white);
  transform: translateX(6px);
}

.team-filter:hover span,
.team-filter.active span {
  background: rgba(255,255,255,.66);
  color: var(--navy-950);
}

.team-content {
  color: var(--text);
  background:
    radial-gradient(circle at 92% 8%, rgba(179, 158, 197, .24), transparent 28%),
    radial-gradient(circle at 15% 10%, rgba(75, 86, 153, .16), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,.88), #FAF5F7 55%, #E8E2F0);
  border: 1px solid rgba(75, 86, 153, .20);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.team-content-head {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 30px;
  align-items: end;
  margin-bottom: 34px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(116, 123, 152, .14);
}

.team-kicker {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.team-content h3 {
  font-family: var(--font-title);
  font-size: clamp(36px, 5vw, 58px);
  color: var(--navy-900);
  line-height: 1;
  margin-top: 8px;
}

.team-content-head p {
  color: var(--muted);
  font-size: 16px;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.member-card {
  position: relative;
  min-height: 280px;
  padding: 24px;
  border-radius: 27px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(174,185,226,.28);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform .25s var(--ease), background .25s ease;
  box-shadow: 0 12px 26px rgba(87,80,130,.08);
}

.member-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.9);
}

.member-card::after {
  content: "";
  position: absolute;
  width: 136px;
  height: 136px;
  right: -48px;
  bottom: -48px;
  border-radius: 50%;
  background: rgba(179, 158, 197, .16);
}

.member-avatar {
  width: 78px;
  height: 78px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(75, 86, 153, .18), rgba(179, 158, 197, .28));
  border: 1px solid rgba(174,185,226,.30);
  display: grid;
  place-items: center;
  font-family: var(--font-logo);
  color: var(--navy-900);
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.member-card h4 {
  position: relative;
  z-index: 1;
  font-family: var(--font-title);
  color: var(--navy-900);
  font-size: 30px;
  line-height: 1.03;
  margin-bottom: 6px;
}

.member-role {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 12px;
}

.member-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}

.member-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.member-tags span {
  padding: 7px 10px;
  border-radius: var(--radius-full);
  background: rgba(244, 241, 251, .82);
  border: 1px solid rgba(174,185,226,.26);
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 800;
}

.member-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 20px;
  color: var(--teal-dark);
  font-weight: 900;
  font-size: 14px;
}

.member-empty {
  grid-column: 1 / -1;
  padding: 34px;
  border-radius: 24px;
  background: rgba(255,255,255,.68);
  color: var(--muted);
  text-align: center;
}



/* Reseñas */
.reviews {
  background:
    radial-gradient(circle at 12% 16%, rgba(179, 158, 197, .22), transparent 25%),
    linear-gradient(180deg, #FAF5F7, #FDF9FB);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.review-card {
  min-height: 270px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(174,185,226,.30);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.review-stars {
  color: #a895cf;
  letter-spacing: 4px;
  font-size: 18px;
  margin-bottom: 16px;
}

.review-status {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: var(--radius-full);
  background: rgba(197,181,213,.28);
  color: var(--navy-800);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.review-card p {
  margin: 22px 0;
  color: var(--navy-900);
  font-family: var(--font-title);
  font-size: 25px;
  line-height: 1.18;
}

.review-card small {
  margin-top: auto;
  color: var(--muted);
  font-weight: 700;
}

.reviews-note {
  margin-top: 28px;
  padding: 20px 24px;
  border-radius: 22px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(174,185,226,.26);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

.reviews-note a {
  color: var(--navy-800);
  font-weight: 900;
}

/* Ubicación y mapa */
.location {
  background: linear-gradient(180deg, #FAF5F7, #FDF9FB);
  padding-top: 0;
}

.location-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 34px;
  align-items: stretch;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(174,185,226,.30);
  box-shadow: var(--shadow-strong);
}

.location-copy {
  padding: 24px 16px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.location-copy h2 {
  font-family: var(--font-title);
  color: var(--navy-900);
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1;
}

.location-copy > p {
  margin: 18px 0 20px;
  color: var(--muted);
  font-size: 17px;
}

.location-details {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--muted);
}

.location-details span {
  padding-left: 16px;
  border-left: 3px solid var(--lavender);
}

.map-card {
  min-height: 430px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(75, 86, 153, .18);
  background: #eee8f0;
}

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

/* Instagram */
.instagram-button::before {
  content: "◎";
  margin-right: 8px;
  font-size: 18px;
}

.instagram-float {
  position: fixed;
  right: 24px;
  bottom: 94px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 900;
  color: white;
  background: linear-gradient(145deg, #6f4bc2, #d34c8c 52%, #f4a14b);
  box-shadow: 0 12px 30px rgba(111, 75, 194, .28);
  transition: transform .25s var(--ease);
}

.instagram-float:hover {
  transform: translateY(-5px) scale(1.04);
}

.instagram-float svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* Navegación de la agenda */
.reservo-back-button {
  margin-right: auto;
  border: 0;
  background: transparent;
  color: var(--navy-800);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.reservo-back-button:hover {
  text-decoration: underline;
}

.process {
  background: linear-gradient(180deg, #FAF5F7, #EDD9DC);
  padding-top: 0;
}

.process-box {
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(174, 185, 226, .28);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: center;
  backdrop-filter: blur(8px);
}

.process-steps {
  display: grid;
  gap: 14px;
}

.process-steps article {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(244,241,251,.78));
  border: 1px solid rgba(174,185,226,.22);
}

.process-steps strong {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy-800), var(--lavender));
  color: var(--white);
}

.process-steps span {
  color: var(--muted);
  font-weight: 700;
}

.contact {
  background: linear-gradient(180deg, #EDD9DC, #FAF5F7);
  padding-top: 0;
}

.contact-box {
  background:
    radial-gradient(circle at 86% 18%, rgba(179, 158, 197, .26), transparent 30%),
    radial-gradient(circle at 16% 10%, rgba(75, 86, 153, .16), transparent 28%),
    linear-gradient(135deg, #FDF9FB, #EDD9DC 55%, #E2DDF0);
  color: var(--text);
  border: 1px solid rgba(75, 86, 153, .20);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  box-shadow: var(--shadow-strong);
}

.contact-box h2 {
  color: var(--navy-900);
}

.contact-box p {
  color: var(--muted);
}

.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer {
  background: linear-gradient(135deg, #2B3060, #343979);
  color: rgba(255,255,255,.68);
  padding-top: 58px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 48px;
}

.footer-brand img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: contain;
  background: white;
  padding: 6px;
  margin-bottom: 18px;
  box-shadow: 0 16px 32px rgba(0,0,0,.14);
}

.footer h4 {
  color: white;
  font-family: var(--font-title);
  font-size: 24px;
  margin-bottom: 16px;
}

.footer a,
.footer span {
  display: block;
  color: rgba(255,255,255,.68);
  margin-bottom: 10px;
  font-size: 14px;
}

.footer a:hover {
  color: var(--aqua-soft);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 20px;
  text-align: center;
  color: rgba(255,255,255,.46);
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 900;
  background: #25D366;
  color: white;
  font-size: 31px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .32);
  transition: transform .25s var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.04);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}

.reveal.left {
  transform: translateX(-28px);
}

.reveal.right {
  transform: translateX(28px);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}


@media (max-width: 1100px) {
  .menu {
    gap: 12px;
  }

  .menu a {
    font-size: 12px;
  }
}

@media (max-width: 980px) {
  /* Si el usuario prefiere movimiento reducido, el canvas dibuja la imagen de forma estática en JS */  .hero-content {
    width: min(92%, 620px);
    margin: 34px auto;
    background: rgba(255, 253, 249, .74);
    backdrop-filter: blur(4px);
  }

  .menu {
    position: fixed;
    top: 88px;
    left: 18px;
    right: 18px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255,255,255,.94);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-strong);
  }

  .menu.open {
    display: flex;
  }

  .menu a {
    padding: 12px 14px;
  }

  .menu-toggle {
    display: grid;
  }

  .about-grid,
  .team-panel,
  .process-box,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .team-categories {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .team-filter {
    transform: none !important;
  }

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

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

@media (max-width: 760px) {
  .logo-text {
    display: none;
  }

  .hero-logo {
    width: 96px;
    height: 96px;
  }

  .hero-content {
    padding: 32px 24px;
    border-radius: 34px;
  }

  .stats-grid,
  .cards-grid,
  .members-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

  .reviews-note {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-box {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .mini-card {
    align-self: center;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1140px);
  }

  .nav {
    height: 78px;
  }

  .menu {
    top: 78px;
  }

  .logo-image {
    width: 54px;
    height: 54px;
  }

  .hero {
    min-height: calc(100svh - 78px);
    background-position: center;
  }

  .hero h1 {
    font-size: 45px;
  }

  .hero p {
    font-size: 16px;
  }

  .section {
    padding: 76px 0;
  }

  .big-card,
  .service-card,
  .team-content,
  .contact-box,
  .process-box {
    padding: 28px;
  }

  .about-visual {
    min-height: auto;
  }

  .big-card {
    min-height: 370px;
  }

  .team-content h3,
  .section-heading h2,
  .content-block h2,
  .contact-box h2,
  .process-box h2 {
    font-size: 38px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }

  .instagram-float {
    right: 16px;
    bottom: 84px;
  }

  .location-grid {
    padding: 20px;
  }

  .map-card,
  .map-card iframe {
    min-height: 340px;
  }
}






/* FIX FINAL: la tarjeta pequeña ELUNE queda debajo y no tapa la tarjeta grande */
.about-visual {
  min-height: auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
}

.about-visual .mini-card {
  position: static !important;
  right: auto !important;
  bottom: auto !important;
  width: min(330px, 100%) !important;
  align-self: flex-end !important;
  margin: 0 !important;
  transform: none !important;
}

.values-grid {
  margin-top: 28px !important;
}

@media (max-width: 760px) {
  .about-visual .mini-card {
    align-self: center !important;
  }
}

/* =========================================================
   ACTUALIZACIÓN DE CONTENIDO Y RESERVA INTEGRADA — JUNIO 2026
   ========================================================= */

.stat-word,
.stat-price {
  font-size: clamp(29px, 3.2vw, 42px) !important;
  overflow-wrap: anywhere;
}

.card-eyebrow,
.service-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.accessible-card {
  justify-content: flex-end;
}

.price-notice {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(75, 86, 153, .18);
  border-radius: 18px;
  background: rgba(255, 255, 255, .66);
  box-shadow: 0 10px 24px rgba(87, 80, 130, .07);
}

.price-notice strong,
.price-notice span {
  display: block;
}

.price-notice strong {
  margin-bottom: 5px;
  color: var(--navy-900);
}

.price-notice span {
  color: var(--muted);
  font-size: 14px;
}

.convention-card {
  display: grid;
  gap: 6px;
}

.convention-card a {
  width: fit-content;
  margin-top: 8px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.service-card {
  min-height: 390px;
}

.service-card h3 {
  max-width: 82%;
}

.service-points {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 0;
  list-style: none;
}

.service-points li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.service-points li::before {
  content: "•";
  position: absolute;
  left: 2px;
  color: var(--teal-dark);
  font-size: 18px;
  line-height: 1.2;
}

.process-copy {
  max-width: 520px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
}

.booking-channels article {
  align-items: flex-start;
  padding: 20px;
}

.booking-channels article > div {
  flex: 1;
}

.booking-channels h3 {
  margin-bottom: 4px;
  color: var(--navy-900);
  font-family: var(--font-title);
  font-size: 24px;
  line-height: 1.1;
}

.booking-channels span {
  display: block;
  font-size: 14px;
  font-weight: 500;
}

.booking-channels a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
}

.menu .reserve-trigger {
  color: var(--white);
}

body.modal-open {
  overflow: hidden;
}

.reservo-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 22px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .22s ease, visibility .22s ease;
}

.reservo-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.reservo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 35, 72, .68);
  backdrop-filter: blur(8px);
}

.reservo-dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  height: min(88vh, 900px);
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 34px 90px rgba(17, 20, 48, .34);
  transform: translateY(16px) scale(.985);
  transition: transform .26s var(--ease);
}

.reservo-modal.is-open .reservo-dialog {
  transform: translateY(0) scale(1);
}

.reservo-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.reservo-head .section-label {
  margin-bottom: 4px;
}

.reservo-head h2 {
  color: var(--navy-900);
  font-family: var(--font-title);
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1;
}

.reservo-close {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: white;
  font-size: 29px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(43, 48, 96, .22);
}

.reservo-help {
  color: var(--muted);
  font-size: 14px;
}

.reservo-frame-wrap {
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}

.reservo-frame-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  border: 0;
  background: white;
}

.reservo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.reservo-back {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid rgba(75, 86, 153, .24);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, .86);
  color: var(--navy-900);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(43, 48, 96, .08);
  transition: transform .22s var(--ease), background .22s ease, box-shadow .22s ease;
}

.reservo-back span {
  font-size: 20px;
  line-height: 1;
}

.reservo-back:hover {
  transform: translateX(-3px);
  background: var(--white);
  box-shadow: 0 12px 24px rgba(43, 48, 96, .13);
}

.reservo-back:focus-visible,
.reservo-close:focus-visible {
  outline: 3px solid rgba(179, 158, 197, .72);
  outline-offset: 3px;
}

.reservo-fallback {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.reservo-fallback a {
  color: var(--teal-dark);
  font-weight: 900;
}

@media (max-width: 760px) {
  .service-card {
    min-height: auto;
  }

  .reservo-modal {
    padding: 0;
  }

  .reservo-dialog {
    width: 100%;
    height: 100dvh;
    border-radius: 0;
    padding: 18px;
  }

  .reservo-frame-wrap iframe {
    min-height: 0;
  }

  .reservo-footer {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .reservo-back {
    width: 100%;
  }

  .reservo-fallback {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
}

@media (max-width: 560px) {
  .stats strong.stat-word,
  .stats strong.stat-price {
    font-size: 34px !important;
  }

  .service-card h3 {
    max-width: 100%;
  }

  .reservo-head h2 {
    font-size: 34px;
  }
}

/* =========================================================
   AJUSTE DE CONTACTO — ICONOS Y REDES SOCIALES
   ========================================================= */

.contact-actions .icon-button {
  gap: 10px;
  min-height: 52px;
}

.contact-actions .icon-button svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-actions .instagram-button::before {
  content: none;
}

.contact-actions .whatsapp-button {
  border-color: rgba(37, 211, 102, .28);
}

.social-floats {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-floats .social-float {
  position: static;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  box-shadow: 0 12px 30px rgba(43, 48, 96, .24);
  transition: transform .25s var(--ease), box-shadow .25s ease;
}

.social-floats .social-float:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 16px 34px rgba(43, 48, 96, .30);
}

.social-floats .instagram-float {
  background: linear-gradient(145deg, #6f4bc2, #d34c8c 52%, #f4a14b);
}

.social-floats .whatsapp-float {
  background: #25D366;
  font-size: inherit;
}

.social-floats .social-float svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 760px) {
  .contact-actions {
    width: 100%;
  }

  .contact-actions .icon-button {
    flex: 1 1 180px;
  }
}

@media (max-width: 560px) {
  .social-floats {
    right: 16px;
    bottom: 16px;
    gap: 9px;
  }

  .social-floats .social-float {
    width: 52px;
    height: 52px;
  }

  .social-floats .social-float svg {
    width: 24px;
    height: 24px;
  }
}


/* =========================================================
   FIX FINAL VIDEO DE FONDO HERO
   ========================================================= */
.hero::before {
  content: none !important;
  display: none !important;
}

#hero-canvas {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none !important;
  user-select: none !important;
  display: block !important;
}

.hero {
  pointer-events: none;
}

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

.hero::after,
.hero-bg,
.hero-orb {
  pointer-events: none !important;
}


/* =========================================================
   HERO VIDEO ESTIRADO — se ve completo y ocupa todo el fondo
   Archivo: assets/video_mar_estirado.mp4
   ========================================================= */
.hero {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background: #eadde8 url("assets/video_mar_4k_poster.jpg") center / 100% 100% no-repeat !important;
}

/* Si venías usando una copia borrosa detrás, la apagamos */
.hero-video-bg,
.hero-video-blur,
.hero-video-wrap .hero-video-bg,
.hero-video-wrap .hero-video-blur {
  display: none !important;
}

.hero-video,
.hero video.hero-video {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  object-fit: fill !important; /* llena todo sin recortar: estira el video */
  object-position: center center !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none !important;
  user-select: none !important;
  filter: saturate(1.04) contrast(1.02) brightness(1.02);
}

/* Capa suave para mantener lectura sin ocultar demasiado el video */
.hero::after {
  z-index: 1 !important;
  background:
    linear-gradient(90deg,
      rgba(255, 252, 249, .36) 0%,
      rgba(255, 250, 252, .22) 40%,
      rgba(255, 250, 252, .06) 72%,
      rgba(255, 250, 252, .02) 100%
    ) !important;
}

.hero-bg,
.hero-orb {
  z-index: 1 !important;
  pointer-events: none !important;
}

.hero-content {
  position: relative !important;
  z-index: 2 !important;
  pointer-events: auto !important;
}

@media (max-width: 760px) {
  .hero-video,
  .hero video.hero-video {
    object-fit: cover !important;
  }
}


/* =========================================================
   VIDEO HERO 4K — estirado para ocupar todo el fondo
   ========================================================= */
.hero {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background: #eadde8 url("assets/video_mar_4k_poster.jpg") center / cover no-repeat !important;
}

.hero-video-wrap,
.hero > video.hero-video {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
}

.hero-video {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  object-fit: fill !important;
  object-position: center center !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none !important;
}

.hero-video-bg {
  display: none !important;
}

.hero::after,
.hero-bg,
.hero-orb {
  z-index: 1 !important;
  pointer-events: none !important;
}

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


/* =========================================================
   CAMBIOS DE CONTENIDO — EQUIPO OCULTO TEMPORALMENTE
   ========================================================= */
.team[hidden] {
  display: none !important;
}







/* Video hero: aparece solo cuando ya cargó datos suficientes */
.hero-video {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-video.is-ready {
  opacity: 1;
}
