@font-face {
  font-family: "IvyMode";
  src:
    url("../fonts/IvyMode/IvyMode-Light.woff2") format("woff2"),
    url("../fonts/IvyMode/IvyMode-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IvyMode";
  src:
    url("../fonts/IvyMode/IvyMode-LightItalic.woff2") format("woff2"),
    url("../fonts/IvyMode/IvyMode-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "IvyMode";
  src:
    url("../fonts/IvyMode/IvyMode-Regular.woff2") format("woff2"),
    url("../fonts/IvyMode/IvyMode-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IvyMode";
  src:
    url("../fonts/IvyMode/IvyMode-SemiBold.woff2") format("woff2"),
    url("../fonts/IvyMode/IvyMode-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IvyMode";
  src:
    url("../fonts/IvyMode/IvyMode-SemiBoldItalic.woff2") format("woff2"),
    url("../fonts/IvyMode/IvyMode-SemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNova";
  src:
    url("../fonts/ProximaNova/ProximaNova-Regular.woff2") format("woff2"),
    url("../fonts/ProximaNova/ProximaNova-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ProximaNova";
  src:
    url("../fonts/ProximaNova/ProximaNova-Semibold.woff2") format("woff2"),
    url("../fonts/ProximaNova/ProximaNova-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #ce3a2b;
  --bordo: #910303;
  --dark: #1a1a1a;
  --white: #ffffff;
  --cream: #b1b3b2;
  --b: rgba(177, 179, 178, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--white);
  font-family: "ProximaNova", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 64px;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 0.5px solid var(--b);
}

.logo {
  font-family: "IvyMode", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
}

.nav-r {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 1px;
  border: 0.5px solid var(--b);
}

.lang-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: "ProximaNova", sans-serif;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: #b1b3b2;
  padding: 6px 12px;
  transition:
    background 0.2s,
    color 0.2s;
}

.lang-btn.active {
  background: transparent;
  color: #ffffff;
}

.lang-btn:hover {
  color: #ffffff;
}

.lang-sep {
  width: 0.5px;
  height: 20px;
  background: var(--b);
  flex-shrink: 0;
}

.nav-sep {
  width: 0.5px;
  height: 20px;
  background: #b1b3b2;
  flex-shrink: 0;
}

.nav-disc {
  font-size: 10px;
  color: var(--cream);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.nav-disc strong {
  color: var(--red);
  font-weight: 400;
}

.nav-res {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 10px 24px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-res:hover,
.nav-res:focus-visible {
  background: var(--bordo);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 101;
  min-width: 44px;
  min-height: 44px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #1a1a1a;
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 28px;
  cursor: pointer;
  padding: 8px 12px;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.mobile-menu-close:hover {
  color: var(--white);
}

.mobile-menu a {
  font-family: "IvyMode", serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--cream);
}

.mobile-menu .btn-red {
  font-family: "ProximaNova", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 36px;
  margin-top: 8px;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  background-image: url('../img/hero.jpg');
  filter: brightness(0.5);
  animation: hero-fade-in 1.6s ease-out forwards;
}

@keyframes hero-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 26, 26, 1) 0%,
    rgba(26, 26, 26, 0.15) 55%,
    rgba(26, 26, 26, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 56px 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 80px;
}

.hero-tag {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  display: block;
}

.hero-h1 {
  font-family: "IvyMode", serif;
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 300;
  line-height: 0.97;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 40px;
  width: 60vw;
}

.hero-h1 em {
  font-style: italic;
  color: #b1b3b2;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 32px;
}

.btn-red {
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  transition: background 0.2s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-red:hover,
.btn-red:focus-visible {
  background: var(--bordo);
}

.btn-ghost {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
  min-height: 44px;
}

.btn-ghost::after {
  content: "↓";
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: var(--white);
}

.hero-manifiesto {
  font-family: "IvyMode", serif;
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--cream);
  max-width: 440px;
  margin-left: auto;
  text-align: right;
}

.hero-scroll {
  position: absolute;
  right: 56px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  pointer-events: none;
}

.hero-scroll-line {
  width: 0.5px;
  height: 52px;
  background: linear-gradient(to bottom, var(--red), transparent);
}

.hero-scroll-txt {
  writing-mode: vertical-rl;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b1b3b2;
}

.sec-wrap {
  padding: 120px 56px;
  border-bottom: 0.5px solid var(--b);
}

.sec-wrap-lg {
  padding: 160px 56px;
  border-bottom: 0.5px solid var(--b);
}

.sec-tag {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: block;
}

.sec-h {
  font-family: "IvyMode", serif;
  font-size: clamp(30px, 3vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 8px;
}

.sec-h em {
  font-style: italic;
  color: #b1b3b2;
}

.sec-h--lg {
  font-size: clamp(36px, 4vw, 64px);
  margin-bottom: 32px;
}

.sec-sub {
  font-family: "IvyMode", serif;
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 28px;
  line-height: 1.55;
}

.sec-p {
  font-size: 14px;
  line-height: 2.05;
  color: var(--cream);
  margin-bottom: 36px;
}

.sec-rule {
  width: 32px;
  height: 0.5px;
  background: var(--red);
  margin: 36px 0;
}

.sec-a {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border-bottom: 0.5px solid #b1b3b2;
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    color 0.2s,
    border-color 0.2s;
  width: fit-content;
  min-height: 44px;
}

.sec-a::after {
  content: "→";
  font-size: 12px;
}

.sec-a:hover,
.sec-a:focus-visible {
  color: var(--red);
  border-color: var(--red);
}

.prow {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 0.5px solid var(--b);
}

.prow-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.75);
  transition: filter 0.4s;
}

#nosotros .prow-bg,
#museo .prow-bg {
  background-position: center 40%;
}

@media (hover: hover) and (pointer: fine) {
  .prow-bg {
    background-attachment: fixed;
    inset: -20%;
  }
}

@media (hover: none), (pointer: coarse) {
  .prow-bg {
    inset: -20% 0;
    will-change: transform;
  }
}

.prow-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 26, 26, 0.88) 0%, rgba(26, 26, 26, 0.1) 100%);
}

.prow-overlay--rev {
  background: linear-gradient(to left, rgba(26, 26, 26, 0.88) 0%, rgba(26, 26, 26, 0.1) 100%);
}

.prow-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 620px;
}

.prow-content.right {
  margin-left: auto;
  text-align: left;
}

.tunel-section {
  position: relative;
  height: 50vh;
  min-height: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 0.5px solid var(--b);
}

.tunel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
}

.tunel-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.55) 0%,
    rgba(26, 26, 26, 0.15) 50%,
    rgba(26, 26, 26, 0.65) 100%
  );
}

.tunel-txt {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 80px;
  max-width: 1000px;
}

.tunel-q {
  font-family: "IvyMode", serif;
  font-size: clamp(22px, 3vw, 48px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 28px;
}

.tunel-attr {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #b1b3b2;
}

.ev-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 0.5px solid var(--b);
}

.ev-split-l {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ev-split-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
}

.ev-split-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(26, 26, 26, 0.72) 0%,
    rgba(26, 26, 26, 0.56) 100%
  );
}

.ev-split-txt {
  position: relative;
  z-index: 2;
  padding: 80px;
}

.ev-split-h {
  font-family: "IvyMode", serif;
  font-size: clamp(28px, 2.8vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 32px;
}

.ev-split-h em {
  font-style: italic;
  color: #b1b3b2;
}

.ev-split-r {
  padding: 72px 64px 72px 56px;
  background: var(--dark);
  border-left: 0.5px solid var(--b);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reservar-h {
  font-family: "IvyMode", serif;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 32px;
}

.reservar-h em {
  font-style: italic;
  color: #b1b3b2;
}

.closing-banner {
  position: relative;
  padding: 80px 56px;
  overflow: hidden;
  text-align: center;
  border-top: 0.5px solid var(--b);
  border-bottom: 0.5px solid var(--b);
}

.closing-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.75);
}

@media (hover: hover) and (pointer: fine) {
  .closing-banner-bg {
    background-attachment: fixed;
  }
}

.closing-banner-ov {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.5);
}

.closing-banner-content {
  position: relative;
  z-index: 2;
}

.closing-rule {
  width: 28px;
  height: 0.5px;
  background: var(--red);
  margin: 0 auto 36px;
}

.closing-rule.bottom {
  margin: 36px auto 0;
}

.closing-q {
  font-family: "IvyMode", serif;
  font-size: clamp(22px, 3vw, 52px);
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto;
}

.closing-q em {
  font-style: italic;
  color: #b1b3b2;
}

.form-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
  max-width: 560px;
}

.form-field-full {
  margin-bottom: 32px;
  max-width: 560px;
}

.form-g {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-lbl {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  cursor: pointer;
}

.fi {
  background: transparent;
  border: none;
  border-bottom: 0.5px solid var(--cream);
  padding: 12px 0;
  font-size: 13px;
  color: var(--white);
  font-family: "ProximaNova", sans-serif;
  font-weight: 400;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.fi:focus {
  border-bottom-color: var(--red);
}

.fi.fi--error {
  border-bottom-color: var(--red);
}

.field-error {
  display: block;
  color: var(--red);
  font-size: 0.75rem;
  margin-top: 4px;
  min-height: 1em;
}

.fi::placeholder {
  color: #b1b3b2;
}

select.fi {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23b1b3b2' stroke-width='1' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 20px;
}

select.fi option {
  background: var(--dark);
  color: var(--white);
}

textarea.fi {
  resize: none;
  height: 80px;
}

.form-sub {
  margin-top: 40px;
  background: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 48px;
  font-family: "ProximaNova", sans-serif;
  transition:
    background 0.2s,
    opacity 0.2s;
  min-height: 44px;
}

.form-sub:hover,
.form-sub:focus-visible {
  background: var(--bordo);
}

.form-sub:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  margin-top: 24px;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1.65;
  overflow: hidden;
  border-left: 2px solid transparent;
  padding: 0 18px;
  max-height: 0;
  opacity: 0;
  transition:
    opacity 0.35s,
    max-height 0.4s,
    padding 0.35s,
    border-color 0.35s;
}

.form-status.sending,
.form-status.success,
.form-status.error {
  max-height: 120px;
  opacity: 1;
  padding: 14px 18px;
}

.form-status.sending {
  color: #b1b3b2;
  border-left-color: #b1b3b2;
  animation: statusPulse 1.6s ease-in-out infinite;
}

.form-status.success {
  color: #b1b3b2;
  border-left-color: #b1b3b2;
}

.form-status.error {
  color: var(--red);
  border-left-color: var(--red);
}

@keyframes statusPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

footer {
  background: var(--dark);
  padding: 40px 56px 24px;
  border-top: 0.5px solid var(--b);
}

.ft {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 0.5px solid var(--b);
}

.ft-logo-img {
  height: 32px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}

.ft-tag {
  font-size: 12px;
  line-height: 1.6;
  color: var(--cream);
  max-width: 210px;
  margin-bottom: 14px;
}

.ft-social {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ft-soc {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}

.ft-soc:hover,
.ft-soc:focus-visible {
  color: var(--white);
}

.ft-ct {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}

.ft-links {
  list-style: none;
}

.ft-links li {
  margin-bottom: 6px;
}

.ft-links a {
  font-size: 12px;
  color: #b1b3b2;
  text-decoration: none;
  transition: color 0.2s;
}

.ft-links a:hover,
.ft-links a:focus-visible {
  color: var(--white);
}

.ft-addr {
  font-size: 12px;
  line-height: 1.65;
  color: var(--cream);
  font-style: normal;
}

.ft-addr a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.ft-addr a:hover,
.ft-addr a:focus-visible {
  color: var(--white);
}

.ft-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.ft-copy {
  font-size: 10px;
  color: #b1b3b2;
  letter-spacing: 0.04em;
}

.ft-copy a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.ft-copy a:hover,
.ft-copy a:focus-visible {
  color: rgba(177, 179, 178, 1);
}

.ft-leg {
  display: flex;
  gap: 20px;
}

.ft-leg a {
  font-size: 10px;
  color: #b1b3b2;
  text-decoration: none;
  transition: color 0.2s;
}

.ft-leg a:hover,
.ft-leg a:focus-visible {
  color: rgba(177, 179, 178, 1);
}

.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(206, 58, 43, 0.35);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 32px rgba(206, 58, 43, 0.5);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.wa-tooltip {
  position: absolute;
  right: 68px;
  background: rgba(26, 26, 26, 0.92);
  color: #ffffff;
  font-family: "ProximaNova", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  white-space: nowrap;
  padding: 8px 16px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition:
    opacity 0.2s,
    transform 0.2s;
  border: 0.5px solid #b1b3b2;
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.6);
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s,
    visibility 0.4s;
}

.popup-overlay.open {
  opacity: 1;
  visibility: visible;
}

.popup-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 840px;
  width: 100%;
  background: #ffffff;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.4s;
}

.popup-overlay.open .popup-box {
  transform: translateY(0);
}

.popup-img {
  position: relative;
  min-height: 460px;
}

.popup-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup-body {
  position: relative;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 26px;
  color: #b1b3b2;
  padding: 8px 10px;
  line-height: 1;
  transition: color 0.2s;
}

.popup-close:hover {
  color: #1a1a1a;
}

.popup-tag {
  display: block;
  font-family: "ProximaNova", sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.popup-h {
  font-family: "IvyMode", serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 300;
  line-height: 1.25;
  color: #1a1a1a;
  margin-bottom: 32px;
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.popup-input {
  padding: 13px 16px;
  border: 1px solid #b1b3b2;
  background: #ffffff;
  font-family: "ProximaNova", sans-serif;
  font-size: 13px;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.popup-input:focus {
  border-color: var(--red);
}
.popup-input::placeholder {
  color: #b1b3b2;
}

.popup-btn {
  background: var(--red);
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-family: "ProximaNova", sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 24px;
  transition: background 0.2s;
  min-height: 44px;
}

.popup-btn:hover {
  background: var(--bordo);
}

.popup-status {
  font-family: "ProximaNova", sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  min-height: 18px;
  margin-bottom: 12px;
}

.popup-status.success {
  color: #1a1a1a;
}
.popup-status.error {
  color: var(--red);
}

.popup-skip {
  background: none;
  border: none;
  cursor: pointer;
  font-family: "ProximaNova", sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #b1b3b2;
  padding: 0;
  text-align: left;
  transition: color 0.2s;
  align-self: flex-start;
}

.popup-skip:hover {
  color: #1a1a1a;
}

@media (max-width: 640px) {
  .popup-box {
    grid-template-columns: 1fr;
  }
  .popup-img {
    min-height: 200px;
  }
  .popup-body {
    padding: 40px 28px 36px;
  }
}

@keyframes up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tag {
  animation: up 0.9s ease both;
}
.hero-h1 {
  animation: up 0.9s ease 0.1s both;
}
.hero-btns {
  animation: up 0.9s ease 0.2s both;
}
.hero-manifiesto {
  animation: up 0.9s ease 0.15s both;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

@media (max-width: 1024px) {
  nav {
    padding: 0 32px;
  }
  .nav-disc {
    display: none;
  }
  .nav-sep {
    display: none;
  }

  .hero-content {
    padding: 0 36px 72px;
    gap: 40px;
  }

  .sec-wrap {
    padding: 80px 36px;
  }
  .sec-wrap-lg {
    padding: 100px 36px;
  }

  .prow-content {
    padding: 0 48px;
    max-width: 100%;
  }

  .tunel-txt {
    padding: 0 48px;
  }

  .ev-split-txt {
    padding: 56px 48px;
  }

  .ev-split-r {
    padding: 64px 40px;
  }

  footer {
    padding: 32px 36px 20px;
  }
  .ft {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 20px;
    height: 56px;
  }
  .nav-links {
    display: none;
  }
  .nav-res {
    display: none;
  }
  .lang-switcher {
    display: none;
  }
  .logo-img {
    height: 28px;
  }
  .hamburger {
    display: flex;
  }

  .lang-switcher--mobile {
    display: flex;
    border-color: var(--b);
    margin-top: 8px;
  }
  .lang-switcher--mobile .lang-btn {
    font-size: 11px;
    padding: 10px 20px;
    color: #b1b3b2;
  }
  .lang-switcher--mobile .lang-btn.active {
    color: var(--white);
  }
  .lang-switcher--mobile .lang-sep {
    height: 26px;
  }

  .hero {
    min-height: 100svh;
  }
  .hero-bg {
    background-position: right 25%;
  }
  .hero-content {
    grid-template-columns: 1fr;
    padding: 80px 24px 60px;
    gap: 32px;
  }
  .hero-manifiesto {
    margin-left: 0;
    text-align: left;
    max-width: 100%;
    font-size: 15px;
  }
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-btns a {
    text-align: center;
  }
  .hero-scroll {
    display: none;
  }

  .sec-wrap {
    padding: 60px 24px;
  }
  .sec-wrap-lg {
    padding: 80px 24px;
  }
  .sec-h {
    font-size: clamp(26px, 8vw, 40px);
  }

  .prow {
    min-height: 70vh;
    height: auto;
    padding: 80px 0;
  }
  .prow-content {
    padding: 60px 24px;
    max-width: 100%;
  }
  .prow-content.right {
    margin-left: 0;
  }
  .prow-overlay,
  .prow-overlay--rev {
    background: linear-gradient(
      to top,
      rgba(26, 26, 26, 0.95) 0%,
      rgba(26, 26, 26, 0.5) 100%
    );
  }

  .tunel-section {
    height: auto;
    min-height: 0;
    padding: 60px 24px;
  }
  .tunel-txt {
    padding: 0;
  }
  .tunel-q {
    font-size: clamp(18px, 5vw, 28px);
  }

  .ev-split {
    grid-template-columns: 1fr;
  }
  .ev-split-l {
    min-height: 420px;
  }
  .ev-split-txt {
    padding: 60px 24px;
  }
  .ev-split-r {
    padding: 48px 24px;
    border-left: none;
    border-top: 0.5px solid var(--b);
  }

  .form-field-row {
    grid-template-columns: 1fr;
  }
  .form-field-full {
    max-width: 100%;
  }

  .closing-banner {
    padding: 60px 24px;
  }

  footer {
    padding: 28px 24px 20px;
  }
  .ft {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .ft-tag {
    max-width: 100%;
  }
  .ft-bot {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-red {
    padding: 14px 24px;
    font-size: 10px;
  }
  .sec-a {
    font-size: 10px;
  }

  .wa-float {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }
  .wa-float svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .hero-h1 {
    font-size: clamp(36px, 10vw, 52px);
  }
  .mobile-menu a {
    font-size: 24px;
  }
}

@media (min-width: 1800px) {
  nav {
    padding: 0 80px;
  }
  .hero-content {
    padding: 0 80px 120px;
  }
  .sec-wrap {
    padding: 140px 80px;
  }
  .prow-content {
    padding: 0 120px;
    max-width: 720px;
  }
  footer {
    padding: 60px 56px 24px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

.priv-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 32px 80px;
  color: rgba(255, 255, 255, 0.82);
}

.priv-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'ProximaNova', sans-serif;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  margin-bottom: 56px;
  transition: color .2s;
}

.priv-back:hover {
  color: var(--red);
}

.priv-back svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.priv-tag {
  font-family: 'ProximaNova', sans-serif;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.priv-title {
  font-family: 'IvyMode', serif;
  font-weight: 300;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 12px;
}

.priv-title em {
  font-style: italic;
  font-family: 'IvyMode', serif;
  color: #b1b3b2;
}

.priv-date {
  font-family: 'ProximaNova', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 56px;
}

.priv-rule {
  width: 40px;
  height: 1px;
  background: var(--red);
  margin-bottom: 56px;
}

.priv-wrap h2 {
  font-family: 'ProximaNova', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin: 48px 0 16px;
}

.priv-wrap p,
.priv-wrap li {
  font-family: 'ProximaNova', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 16px;
  text-align: justify;
  text-justify: inter-word;
}

.priv-wrap ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.priv-wrap li {
  margin-bottom: 8px;
}

.priv-wrap a {
  color: var(--red);
  text-decoration: none;
}

.priv-wrap a:hover {
  text-decoration: underline;
}

.priv-wrap strong {
  color: var(--white);
}

.priv-footer {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'ProximaNova', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.priv-footer a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
}

.priv-footer a:hover {
  color: var(--red);
}
