:root {
  --green: #07347f;
  --green-dark: #051763;
  --green-light: #47a1df;
  --text: #303033;
  --muted: #8b8b8f;
  --surface: #ececec;
  --white: #ffffff;
  --red: #b93228;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  max-width: var(--max-width);
  margin: 0 auto;
  color: var(--text);
  font-family: Montserrat, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--white);
}

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

img,
svg {
  display: block;
}

.site-header {
  position: relative;
  z-index: 10;
  background: var(--white);
}

.header-inner {
  width: min(100% - 48px, 1040px);
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.brand img {
  /* width: clamp(220px, 19vw, 265px); */
  height: 40px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(40px, 5vw, 74px);
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.main-nav a {
  padding: 12px 0;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--green-dark);
}

.hero {
  min-height: clamp(500px, 47vw, 565px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(2, 15, 58, 0.08) 0%, rgba(2, 15, 58, 0.02) 100%),
    url("assets/hero-vtv.jpg");
  background-position: center top;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -6vw -1px auto;
  width: min(46vw, 450px);
  height: min(20vw, 200px);
  border-radius: 55% 0 0 0;
  border-top: 1px solid rgba(117, 197, 232, 0.8);
  opacity: 0.8;
  transform: rotate(-7deg);
}

.hero-content {
  width: min(100% - 48px, 1040px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 520px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.2rem, 2.25vw, 2.55rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 span {
  display: inline;
  padding: 0 0.18em 0.04em;
  background: var(--green);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero p {
  margin: 24px 0 0;
  color: var(--white);
  font-size: clamp(1.18rem, 1.9vw, 1.45rem);
  font-weight: 400;
}

.intro {
  min-height: 335px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--green);
}

.intro-inner {
  width: min(100% - 48px, 1050px);
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 38px;
  color: var(--white);
}

.intro-icon {
  min-height: 205px;
  display: grid;
  place-items: center;
  border-right: 2px solid rgba(255, 255, 255, 0.35);
}

.intro-icon svg {
  width: 88px;
  color: var(--green-light);
}

.intro-icon path,
.intro-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.intro p {
  max-width: 910px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.3rem, 1.8vw, 1.9rem);
  line-height: 1.32;
}

.intro strong {
  color: var(--white);
  font-weight: 800;
}

.decor {
  position: absolute;
  right: -72px;
  border: 1px solid rgba(71, 161, 223, 0.62);
  pointer-events: none;
}

.decor-one {
  top: -20px;
  width: 210px;
  height: 660px;
  border-radius: 50%;
  transform: rotate(8deg);
}

.decor-two {
  top: 70px;
  width: 420px;
  height: 520px;
  border-radius: 52% 48% 40% 60%;
  transform: rotate(-20deg);
}

.hours {
  min-height: 345px;
  display: grid;
  place-items: center;
  background: var(--surface);
}

.hours-inner {
  width: min(100% - 48px, 980px);
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: center;
  gap: 70px;
}

.status-card {
  text-align: center;
  color: var(--green);
}

.status-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-card strong {
  display: inline-flex;
  min-width: 230px;
  min-height: 88px;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
  padding: 5px 20px;
}

.status-card strong.estado-abierto {
  color: var(--green);
}

.status-card strong.estado-cerrado {
  color: var(--red);
}

.status-card small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.8rem;
}

.status-card small::before {
  content: "↘ ";
}

.schedule {
  display: grid;
}

.schedule-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  padding: 28px 0;
}

.schedule-item + .schedule-item {
  border-top: 2px solid var(--green);
}

.clock-icon {
  width: 48px;
  height: 48px;
  color: var(--green);
}

.clock-icon circle {
  fill: var(--green);
  stroke: var(--green);
}

.clock-icon path {
  fill: none;
  stroke: var(--white);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.schedule p {
  margin: 0;
  font-size: clamp(1.65rem, 2.4vw, 2.7rem);
  line-height: 1.18;
  letter-spacing: 0.08em;
}

.schedule strong {
  font-weight: 900;
}

.location {
  min-height: 400px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--green);
}

.location-copy {
  display: grid;
  justify-items: end;
  align-items: center;
  padding: 56px 8vw 56px 48px;
}

.location-text {
  width: min(100%, 500px);
  color: var(--white);
}

.eyebrow {
  width: fit-content;
  margin: 0 0 48px;
  padding: 16px 54px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  color: var(--green-light);
  font-size: clamp(1.05rem, 1.6vw, 1.6rem);
  font-weight: 800;
}

address {
  margin: 0;
  font-size: clamp(1.2rem, 1.65vw, 1.75rem);
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
}

.location a {
  display: inline-flex;
  margin-top: 42px;
  color: var(--green-light);
  font-size: clamp(1rem, 1.25vw, 1.35rem);
}

.location a::after {
  content: "↘";
  margin-left: 6px;
}

.map-panel {
  min-height: 400px;
  margin: 0;
  overflow: hidden;
}

.map-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prices {
  min-height: 330px;
  display: grid;
  place-items: center;
  padding: 80px 24px;
  background: var(--surface);
}

.price-grid {
  width: min(100%, 860px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.price-card {
  min-height: 258px;
  padding: 44px 28px 36px;
  display: grid;
  justify-items: center;
  align-content: center;
  border-radius: 28px;
  background: var(--white);
  color: var(--green);
  text-align: center;
}

.price-card svg {
  width: 74px;
  min-height: 48px;
}

.price-card path,
.price-card circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.price-card h2 {
  margin: 24px 0 4px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.13em;
}

.price-card p {
  margin: 0;
  color: var(--green);
  font-size: clamp(2.2rem, 3.25vw, 3.7rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.contact {
  min-height: 170px;
  display: grid;
  place-items: center;
  background: var(--white);
}

.contact-inner {
  width: min(100% - 48px, 980px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(52px, 8vw, 120px);
}

.contact h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(1.7rem, 2.4vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list {
  display: flex;
  align-items: center;
}

.contact-list a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #77777b;
  font-size: clamp(1rem, 1.35vw, 1.5rem);
}

.contact-list a + a {
  margin-left: 24px;
  padding-left: 24px;
  border-left: 2px solid #2f3f94;
}

.contact-list strong {
  display: block;
  color: var(--green);
  font-weight: 900;
}

.contact-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  color: var(--green);
}

.contact-icon path {
  fill: var(--green);
}

.contact-icon path + path {
  fill: var(--white);
}

.site-footer div {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 24px;
  background: var(--green);
  color: var(--white);
  font-size: clamp(1.05rem, 1.35vw, 1.45rem);
}

.site-footer div + div {
  background-color: #303033;
  min-height: 40px;
  padding: 0;
  font-size: 12px;
  color: #878787;
}

.site-footer p {
  margin: 0;
  font-style: italic;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.instagram-icon {
  width: 40px;
  height: 40px;
  color: var(--white);
}

.instagram-icon rect,
.instagram-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 104px;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 18px 0;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    gap: clamp(22px, 8vw, 54px);
    font-size: 0.9rem;
  }

  .hero {
    min-height: 620px;
    background-position: 70% center;
  }

  .hero-content {
    align-self: end;
    padding-bottom: 96px;
  }

  .intro-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 72px 0;
    text-align: center;
  }

  .intro-icon {
    min-height: auto;
    border-right: 0;
  }

  .hours-inner {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 76px 0;
  }

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

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

  .location-copy {
    justify-items: center;
    padding: 76px 24px;
    text-align: center;
  }

  .eyebrow {
    margin-inline: auto;
  }

  .map-panel {
    min-height: 420px;
  }

  .price-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
  }

  .contact-inner,
  .contact-list {
    flex-direction: column;
    text-align: center;
  }

  .contact-inner {
    padding: 70px 0;
  }

  .contact-list {
    gap: 28px;
  }

  .contact-list a + a {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .hero-content,
  .intro-inner,
  .hours-inner,
  .contact-inner {
    width: min(100% - 32px, var(--max-width));
  }

  .brand img {
    width: min(80vw, 260px);
  }

  .main-nav {
    gap: 18px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 560px;
    background-position: 72% center;
  }

  .hero-content {
    padding-bottom: 64px;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .intro p {
    font-size: 1.15rem;
  }

  .schedule-item {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .clock-icon {
    width: 40px;
    height: 40px;
  }

  .schedule p {
    font-size: 1.28rem;
    letter-spacing: 0.04em;
  }

  .eyebrow {
    width: 100%;
    padding-inline: 18px;
  }

  .price-card {
    min-height: 230px;
  }

  .contact-list a {
    flex-direction: column;
  }

  .site-footer {
    flex-direction: column;
    gap: 14px;
  }
}
