:root {
  color-scheme: light;
  --bg: #f5f2ee;
  --bg-alt: #ede5db;
  --bg-surface: #ffffffee;
  --surface-dark: #1a1510;
  --surface-dark-soft: #241c14;
  --text: #2c1a0e;
  --text-muted: #5a4030;
  --text-soft: #d8c8b8;
  --text-on-dark: rgba(216, 200, 184, 0.95);
  --accent: #8b5e3c;
  --accent-soft: #c8a882;
  --border: #d7c8b8;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.12);
  --font-serif: "Cormorant Garamond", "Georgia", serif;
  --fs-xs: 0.78rem;
  --fs-sm: 0.92rem;
  --fs-base: 1rem;
  --fs-md: 1.08rem;
  --fs-lg: 1.35rem;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

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

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

a:focus-visible,
button:focus-visible,
.button:focus-visible {
  outline: 3px solid var(--accent-soft);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 0.5rem 0;
  background: var(--accent);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
}

.skip-link:focus {
  left: 0;
}

.page {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.legal-page-content {
  padding-top: 8rem;
}

.section {
  padding: 5rem 1.5rem;
  scroll-margin-top: 7.5rem;
}

.section-light {
  background: var(--bg);
}

.section-alt {
  background: var(--bg-alt);
}

.section-dark {
  background: var(--surface-dark);
  color: var(--bg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 1rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(circle at 20% 20%, rgba(200, 168, 130, 0.9) 0 2px, transparent 2px), radial-gradient(circle at 80% 40%, rgba(139, 94, 60, 0.85) 0 2px, transparent 2px);
  background-size: 44px 44px;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0.75rem max(1rem, calc((100vw - 1120px) / 2));
  border: 0;
  border-radius: 0;
  background: var(--surface-dark);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.36);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-logo,
.footer-logo {
  width: 5rem;
  height: 5rem;
  object-fit: cover;
  border-radius: 1.25rem;
  border: 1px solid rgba(200, 168, 130, 0.25);
  background: #f5f0e6;
}

.site-header .brand-logo {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.75rem;
}

.brand-title {
  margin: 0;
  color: #f5f2ee;
  font-size: 1.9rem;
  font-family: "Cormorant Garamond", "Georgia", serif;
  line-height: 1;
}

.brand-subtitle {
  margin: 0.25rem 0 0;
  font-size: 0.95rem;
  color: rgba(216, 200, 184, 0.9);
  font-style: italic;
}

.hero-nav {
  display: none;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.95rem;
  color: rgba(216, 200, 184, 0.96);
}

.hero-nav a:hover {
  color: white;
}

.hero-nav a:focus-visible {
  color: white;
}

.hero-nav a.is-active {
  color: white;
  border-bottom: 2px solid var(--accent-soft);
  padding-bottom: 0.15rem;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.5rem;
  border: 1px solid rgba(200, 168, 130, 0.3);
  border-radius: 0.5rem;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #f5f2ee;
  border-radius: 1px;
  transition: transform 250ms ease, opacity 250ms ease;
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: top;
  padding: 8rem 0 2rem;
}

.hero-copy h1 {
  margin: 1rem 0 1rem;
  font-size: clamp(2.75rem, 4vw, 4.75rem);
  line-height: 0.95;
  letter-spacing: 0;
  font-family: "Cormorant Garamond", "Georgia", serif;
}

.availability-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.65rem 0.95rem;
  border: 1px solid rgba(255, 250, 240, 0.72);
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #fffaf0 0%, #e1bd72 52%, #b9822f 100%);
  color: var(--surface-dark);
  box-shadow: 0 0 18px rgba(255, 250, 240, 0.34), 0 0 34px rgba(225, 189, 114, 0.38), 0 16px 36px rgba(0, 0, 0, 0.28);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
  animation: availability-glow 2.8s ease-in-out infinite;
}

.hero-copy p {
  max-width: 42rem;
  margin: 0;
  color: rgba(216, 200, 184, 0.95);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 168, 130, 0.4);
  background: rgba(200, 168, 130, 0.12);
  color: #f0dfcd;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button-primary {
  background: var(--accent-soft);
  color: var(--surface-dark);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.button-secondary {
  border: 1px solid rgba(200, 168, 130, 0.35);
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary:hover {
  background: #d8b992;
}

.button-secondary:hover {
  border-color: rgba(200, 168, 130, 0.7);
  background: rgba(255, 255, 255, 0.1);
}

.button:active {
  transform: translateY(0);
  opacity: 0.9;
}

@keyframes availability-glow {
  0%,
  100% {
    box-shadow: 0 0 14px rgba(255, 250, 240, 0.28), 0 0 28px rgba(225, 189, 114, 0.32), 0 16px 36px rgba(0, 0, 0, 0.28);
  }

  50% {
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.52), 0 0 52px rgba(205, 143, 46, 0.56), 0 18px 42px rgba(0, 0, 0, 0.34);
  }
}

.hero-note {
  margin-top: 1.25rem;
  max-width: 36rem;
  color: #9a8878;
  font-size: 0.9rem;
}

.hero-panel {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  width: min(100%, 340px);
}

.phone-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(3rem);
}

.phone-glow-left {
  left: -2rem;
  top: 2.5rem;
  width: 10rem;
  height: 10rem;
  background: rgba(200, 168, 130, 0.3);
}

.phone-glow-right {
  right: -2rem;
  bottom: 1.5rem;
  width: 11rem;
  height: 11rem;
  background: rgba(139, 94, 60, 0.25);
}

.phone-shell {
  position: relative;
  overflow: hidden;
  border-radius: 2.25rem;
  border: 1px solid rgba(200, 168, 130, 0.3);
  background: #1a1510;
  padding: 0.45rem;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.25);
}

.app-screenshot {
  width: 100%;
  height: auto;
  border-radius: 1.85rem;
}

.feature-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-grid,
.split-grid {
  display: grid;
  gap: 2.5rem;
}

.section-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

/* ── Qué es section ── */
.quees-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.quees-intro {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 1rem;
}

.quees-grid {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.phone-mockup-md {
  max-width: 260px;
}

.split-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.section-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #6b5040;
}

.section h2,
.closing-section h2 {
  margin: 1rem 0 1.5rem;
  font-size: clamp(2rem, 2.5vw, 3.5rem);
  line-height: 1.05;
  font-family: "Cormorant Garamond", "Georgia", serif;
}

.section-dark .section-label {
  color: var(--accent-soft);
}

.section-text,
.section-copy p {
  margin-top: 1rem;
  color: var(--text-muted);
}

.section-dark .split-grid p,
.section-dark .section-text,
.feature-panel p {
  color: rgba(216, 200, 184, 0.95);
}

.feature-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
}

.feature-list li {
  position: relative;
  padding-left: 1.25rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--accent);
}

.feature-list strong {
  color: var(--text);
}

.note-box,
.note-box-light {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(215, 200, 184, 0.9);
  background: rgba(237, 229, 219, 0.7);
  color: var(--text-muted);
}

.note-box-light {
  background: #ffffffdd;
}

.card-grid,
.mode-grid {
  display: grid;
  gap: 1.5rem;
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card,
.mode-card {
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
}

.feature-card {
  background: white;
}

.icon-box,
.mode-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  background: rgba(139, 94, 60, 0.1);
  color: var(--accent);
}

.icon-box svg,
.mode-icon svg,
.feature-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.mode-card {
  display: flex;
  gap: 1.25rem;
  background: rgba(249, 246, 241, 0.85);
}

.mode-icon {
  min-width: 3rem;
  font-size: 1.15rem;
}

.mode-card h3,
.feature-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.mode-card p,
.feature-card p {
  margin: 0;
  color: var(--text-muted);
}

/* ── Steps grid (Cómo funciona with phone mockups) ── */
.steps-grid {
  display: grid;
  gap: 3rem;
}

.step-row {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: start;
}

.step-row .step-copy {
  order: 2;
}

.step-row .phone-mockup-sm {
  order: 1;
}

.step-copy {
  display: grid;
  gap: 0.5rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: rgba(139, 94, 60, 0.1);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.92rem;
}

.step-copy h3 {
  margin: 0.25rem 0 0;
  font-size: 1.15rem;
  color: var(--text);
}

.step-copy p {
  margin: 0;
  color: var(--text-muted);
}

.phone-mockup-sm {
  width: min(100%, 220px);
  margin: 0 auto;
}

/* ── PCA showcase ── */


/* ── Partners context ── */
.partners-context {
  margin-bottom: 1.25rem;
  color: rgba(216, 200, 184, 0.85);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-align: center;
}

.feature-box {
  border: 1px solid rgba(200, 168, 130, 0.2);
  border-radius: 0.5rem;
  background: rgba(36, 28, 20, 0.95);
  padding: 2rem;
}

.feature-box-dark {
  background: rgba(36, 28, 20, 0.95);
}

.feature-heading {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: rgba(200, 168, 130, 0.15);
  color: var(--accent-soft);
}

.feature-panel {
  margin-top: 1rem;
  background: #120e08;
  border-radius: 0.5rem;
  padding: 1.5rem;
  color: #d8c8b8;
}

.feature-status-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  text-align: center;
  color: #e8d5c0;
  font-size: 0.82rem;
}

#en-vivo .feature-box {
  width: min(100%, 24rem);
  justify-self: end;
  border-color: rgba(139, 94, 60, 0.28);
  background: #fbf8f2;
  color: var(--text);
  box-shadow: 0 24px 60px rgba(44, 26, 14, 0.12);
}

#en-vivo .split-grid {
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
  align-items: start;
}

#en-vivo .feature-heading {
  align-items: flex-start;
}

#en-vivo .feature-heading h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.18rem;
}

#en-vivo .feature-heading p {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
}

#en-vivo .feature-icon {
  flex: 0 0 auto;
  background: rgba(139, 94, 60, 0.12);
  color: var(--accent);
}

#en-vivo .live-video-frame {
  overflow: hidden;
  margin-top: 1.5rem;
  margin-right: auto;
  margin-left: auto;
  width: min(100%, 17rem);
  border: 1px solid rgba(139, 94, 60, 0.18);
  border-radius: 0.5rem;
  background: #120e08;
  box-shadow: 0 18px 42px rgba(44, 26, 14, 0.14);
}

#en-vivo .live-video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 31rem;
  object-fit: cover;
  background: #120e08;
}

#en-vivo .feature-panel {
  margin-top: 1.5rem;
  border: 1px solid rgba(139, 94, 60, 0.16);
  background: #efe7dc;
  color: var(--text);
}

#en-vivo .feature-panel p {
  margin: 1.1rem 0 0;
  color: var(--text);
  font-size: 1rem;
}

#en-vivo .feature-status-grid {
  color: var(--text);
  font-weight: 700;
}

.field-section {
  overflow: hidden;
}

.field-intro {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.field-intro-copy {
  max-width: 47rem;
}

.field-intro-copy h2 {
  max-width: 42rem;
}

.field-intro-copy p {
  margin: 1rem 0 0;
  color: rgba(216, 200, 184, 0.95);
}

.field-note {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 1.25rem;
  border: 1px solid rgba(200, 168, 130, 0.24);
  border-radius: 0.5rem;
  background: rgba(200, 168, 130, 0.1);
  color: rgba(216, 200, 184, 0.95);
}

.field-note strong {
  color: #f5f2ee;
}

.conservation-card {
  display: grid;
  gap: 1.25rem;
  justify-items: center;
  padding: 1.75rem;
  border: 1px solid rgba(200, 168, 130, 0.22);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  text-align: center;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.conservation-logo {
  width: min(100%, 12rem);
  height: auto;
}

.fme-logo {
  width: min(100%, 10rem);
  height: auto;
}

.conservation-card p {
  margin: 0;
  max-width: 22rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.field-gallery-heading {
  max-width: 39rem;
  margin-bottom: 1.5rem;
}

.field-gallery-heading h3 {
  margin: 0.6rem 0 0;
  color: #f5f2ee;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  line-height: 1.05;
}

.field-carousel {
  position: relative;
}

.carousel-track {
  display: grid;
  grid-auto-columns: minmax(18rem, 72%);
  grid-auto-flow: column;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 0.25rem 0 1.25rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--accent-soft) rgba(255, 255, 255, 0.1);
}

.field-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(200, 168, 130, 0.22);
  border-radius: 0.5rem;
  background: rgba(36, 28, 20, 0.92);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  scroll-snap-align: start;
}

.field-photo {
  width: 100%;
  height: 25rem;
  object-fit: cover;
  background: #21170f;
}

.carousel-control {
  position: absolute;
  z-index: 2;
  top: 42%;
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 168, 130, 0.36);
  border-radius: 0.5rem;
  background: rgba(18, 14, 8, 0.8);
  color: #f5f2ee;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.carousel-control:hover {
  background: rgba(200, 168, 130, 0.25);
}

.carousel-control svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.carousel-control-prev {
  left: -1rem;
}

.carousel-control-next {
  right: -1rem;
}

.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1rem;
}

.carousel-dots button {
  width: 0.65rem;
  height: 0.65rem;
  padding: 0.75rem;
  border: 1px solid rgba(200, 168, 130, 0.55);
  border-radius: 999px;
  background: rgba(200, 168, 130, 0.18);
  background-clip: content-box;
  cursor: pointer;
}

.carousel-dots button:hover,
.carousel-dots button:focus-visible,
.carousel-dots button.is-active {
  background: var(--accent-soft);
}

.acknowledgement-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
  margin-top: 1.75rem;
}

.acknowledgement-photo {
  width: min(100%, 18rem);
  aspect-ratio: 1;
  border-radius: 0.5rem;
  object-fit: cover;
  border: 1px solid rgba(139, 94, 60, 0.18);
  box-shadow: 0 18px 45px rgba(44, 26, 14, 0.14);
}

.acknowledgement-figure {
  margin: 0;
}

.acknowledgement-caption {
  display: grid;
  gap: 0.2rem;
  margin-top: 0.75rem;
}

.acknowledgement-caption strong {
  font-size: 1.05rem;
  color: var(--text);
}

.acknowledgement-caption span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.acknowledgement-copy {
  max-width: 58rem;
}

.acknowledgement-copy p {
  margin: 1rem 0 0;
  color: var(--text);
  font-size: 1rem;
  line-height: inherit;
}

.acknowledgement-copy h3 {
  margin: 2rem 0 1rem;
  color: var(--text);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.15;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(200, 168, 130, 0.35);
  border-radius: 0.5rem;
  background: var(--surface-dark);
  color: #f5f2ee;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: rgba(200, 168, 130, 0.25);
}

.back-to-top svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.closing-section {
  padding: 4rem 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-center {
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  text-align: center;
}

.closing-section h2 {
  color: #f5f2ee;
}

.site-footer {
  width: min(1200px, 100%);
  margin: 0 auto 1.5rem;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(200, 168, 130, 0.22);
  background: var(--surface-dark);
  color: rgba(216, 200, 184, 0.94);
}

.site-footer .footer-center {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.25rem;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
}

.footer-nav a {
  color: rgba(216, 200, 184, 0.94);
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #ffffff;
}

.footer-link {
  border-bottom: 1px solid rgba(200, 168, 130, 0.55);
  font-weight: 700;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.footer-copy {
  color: rgba(216, 200, 184, 0.55);
  font-size: 0.85rem;
}

.legal-header {
  max-width: 48rem;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-header h1 {
  margin: 1rem 0 0;
  color: var(--text);
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  line-height: 0.98;
}

.legal-updated,
.legal-intro {
  max-width: 48rem;
  color: var(--text-muted);
}

.legal-updated {
  margin: 1rem 0 0;
  font-weight: 700;
}

.legal-intro {
  margin: 1.25rem 0 0;
}

.legal-principle {
  max-width: 52rem;
}

.legal-content {
  max-width: 820px;
}

.legal-content section + section {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.legal-content h2 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  line-height: 1.1;
}

.legal-content h3 {
  margin: 2rem 0 0.6rem;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.35;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
}

.legal-content p {
  margin: 1rem 0 0;
}

.legal-content ul {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.legal-content strong {
  color: var(--text);
}

.legal-content a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@media (max-width: 879px) {
  .hero-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1.5rem;
    gap: 1.25rem;
    background: var(--surface-dark);
    border-top: 1px solid rgba(200, 168, 130, 0.2);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
    font-size: 1.1rem;
  }

  .section-grid,
  .split-grid,
  .step-row {
    grid-template-columns: 1fr;
  }

  .step-row .step-copy,
  .step-row .phone-mockup-sm {
    order: unset;
  }


  #en-vivo .split-grid {
    grid-template-columns: 1fr;
  }

  #en-vivo .feature-box {
    justify-self: start;
  }
}

@media (min-width: 880px) {
  .hero-nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
  }

  .field-intro {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.45fr);
  }

  .carousel-track {
    grid-auto-columns: minmax(22rem, 46%);
  }

  .carousel-control {
    display: inline-flex;
  }

  .acknowledgement-layout {
    grid-template-columns: minmax(13rem, 18rem) minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .section,
  .hero,
  .closing-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .site-footer .footer-center {
    align-items: flex-start;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .site-header {
    align-items: center;
    padding: 0.65rem 0.75rem;
  }

  .site-header .brand-logo {
    width: 2.75rem;
    height: 2.75rem;
  }

  .brand-subtitle {
    display: none;
  }

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

  .button {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: 2.5rem;
  }

  .section-label {
    font-size: 0.82rem;
    letter-spacing: 0.16em;
  }

  .availability-chip {
    font-size: 0.82rem;
  }

  .feature-status-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .mode-card {
    flex-direction: column;
  }

  .conservation-card {
    justify-items: start;
    text-align: left;
  }

  .carousel-track {
    grid-auto-columns: minmax(16rem, 88%);
  }

  .field-photo {
    height: 19rem;
  }

  .quees-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: left;
  }

  .phone-mockup-md {
    max-width: 200px;
  }
}

/* ── i18n: FOUC prevention ── */
html.lang-loading body {
  visibility: hidden;
}

/* ── Language switcher ── */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-shrink: 0;
  padding: 0.2rem;
  border: 1px solid rgba(200, 168, 130, 0.3);
  border-radius: 0.35rem;
  background: rgba(200, 168, 130, 0.08);
}

.lang-switch-btn {
  padding: 0.3rem 0.55rem;
  border: none;
  border-radius: 0.25rem;
  background: transparent;
  color: rgba(216, 200, 184, 0.7);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
  font-family: inherit;
}

.lang-switch-btn:hover {
  color: #fff;
}

.lang-switch-btn.is-active {
  background: rgba(200, 168, 130, 0.25);
  color: #fff;
}

@media (max-width: 879px) {
  .lang-switch {
    margin-left: auto;
    margin-right: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .availability-chip {
    animation: none;
  }

  .carousel-track {
    scroll-behavior: auto;
  }

  .site-header {
    transition: none;
  }

  .button {
    transition: none;
  }
}
