﻿:root {
  --bg: #050505;
  --bg-soft: #0c0c0c;
  --panel: #101010;
  --panel-2: #141414;
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f2f2f2;
  --muted: #cfcfcf;
  --muted-2: #b6b6b6;
  --font-display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --font-text: "Inter", Arial, Helvetica, sans-serif;
  --shadow: 0 18px 38px rgba(0, 0, 0, 0.38);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --container: 1464px;
  --ease: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-text);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 7.2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 4.8rem 0 0;
}

.eyebrow {
  margin: 0 0 1.2rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(4, 4, 4, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  min-height: 10.2rem;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: clamp(26rem, 24vw, 39rem);
}

.header__nav-wrap {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.8rem, 2.3vw, 4.8rem);
}

.site-nav a {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.4vw, 2.3rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  transition: opacity var(--ease);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.6rem;
  height: 0.2rem;
  background: #fff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.btn:hover,
.btn:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible,
.socials a:hover,
.socials a:focus-visible,
.contact-item:hover,
.contact-item:focus-visible {
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  min-height: 5.8rem;
  padding: 1.2rem 2.6rem;
  border: 1px solid transparent;
  border-radius: 0.8rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform var(--ease), opacity var(--ease), background-color var(--ease), border-color var(--ease);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn--large {
  min-height: 6.8rem;
  padding-inline: 3rem;
  font-size: clamp(2rem, 1.55vw, 2.8rem);
}

.btn--solid {
  background: #efefef;
  color: #0a0a0a;
  box-shadow: var(--shadow);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(0, 0, 0, 0.14);
}

.btn__star {
  display: inline-block;
  transform: translateY(-0.05em);
  font-size: 0.9em;
}

.header__cta {
  flex: 0 0 auto;
  min-width: 22rem;
  min-height: 6.4rem;
  padding-inline: 2.6rem;
}

.menu-toggle {
  display: none;
  flex: 0 0 auto;
  width: 5.2rem;
  height: 5.2rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: transparent;
  color: #fff;
}

.menu-toggle span {
  display: block;
  width: 2.4rem;
  height: 0.2rem;
  margin: 0.45rem auto;
  background: currentColor;
  transition: transform var(--ease), opacity var(--ease);
}

.hero {
  position: relative;
  isolation: isolate;
  background: #000;
}

.hero__bg,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__bg {
  background: url("../assets/images/hero-bg.jpg") center top / cover no-repeat;
  transform: scale(1.01);
}

.hero__overlay {
  background:
    radial-gradient(circle at 58% 46%, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.56) 30%, rgba(0, 0, 0, 0.16) 58%, rgba(0, 0, 0, 0) 76%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.2) 18%, rgba(0, 0, 0, 0.36) 66%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.18) 26%, rgba(0, 0, 0, 0.34) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  min-height: 61rem;
  display: grid;
  grid-template-columns: 28% 72%;
  align-items: center;
  padding: 2.2rem 0 4.6rem;
}

.hero__spacer {
  min-height: 1rem;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 86rem;
  margin-left: 0;
  padding: 3rem 0 2rem 0;
}

.hero__content::before {
  content: "";
  position: absolute;
  inset: -3.5rem -6rem -4rem -14rem;
  z-index: -1;
  border-radius: 4rem;
  background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.82) 34%, rgba(0, 0, 0, 0.62) 58%, rgba(0, 0, 0, 0) 88%);
  filter: blur(2.4rem);
}

.hero h1,
.benefits h2,
.about h2 {
  margin: 0;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 0.87;
}

.hero h1 {
  max-width: 75rem;
  font-size: clamp(7.2rem, 8.1vw, 13rem);
  color: #f5f5f5;
  text-shadow: 0 0.25rem 0 rgba(255, 255, 255, 0.05), 0 1.4rem 3.2rem rgba(0, 0, 0, 0.45);
}

.hero p {
  max-width: 74rem;
  margin: 2.2rem 0 0;
  font-size: clamp(1.9rem, 1.65vw, 2.8rem);
  line-height: 1.26;
  color: #f6f6f6;
  text-shadow: 0 0.5rem 1.8rem rgba(0, 0, 0, 0.7);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.highlights {
  background: #0f1012;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.highlights__item {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 8.8rem;
  padding: 1.8rem 2.2rem;
}

.highlights__item img {
  width: 3.8rem;
  height: 3.8rem;
  flex: 0 0 auto;
  opacity: 0.94;
}

.highlights__item p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 1.2vw, 2.2rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.benefits {
  padding-bottom: 1rem;
}

.benefits__grid {
  display: block;
}




.benefits__content {
  padding-top: 0.4rem;
  width: 100%;
}

.benefits h2 {
  font-size: clamp(5.4rem, 5.4vw, 9rem);
  margin-bottom: 2.2rem;
}

.benefits__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
}

.shop-banner {
  padding: 1rem 0 3.6rem;
}

.shop-banner__link {
  display: block;
  border-radius: 1.4rem;
  overflow: hidden;
}

.shop-banner__link img {
  display: block;
  width: 100%;
  height: auto;
}

.info-card {
  min-height: 28rem;
  padding: 2.6rem 1.8rem 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.4rem;
  background: rgba(8, 8, 8, 0.95);
}

.info-card img {
  width: 5.6rem;
  height: 5.6rem;
  margin-bottom: 2.2rem;
}

.info-card h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 1.8vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.info-card p {
  margin: 0;
  font-size: clamp(1.65rem, 1vw, 2rem);
  line-height: 1.45;
  color: var(--muted);
}


.about {
  position: relative;
  isolation: isolate;
  margin-top: 1.6rem;
  padding: 2.4rem 0 3rem;
}

.about__bg,
.about__overlay {
  position: absolute;
  inset: 0;
}

.about__bg {
  background: url("../assets/images/about-bg.jpg") center center / cover no-repeat;
}

.about__overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.48) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.36) 34%, rgba(0, 0, 0, 0.36) 100%);
}

.about__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}

.about__content {
  max-width: 86rem;
  margin: 0 auto;
  text-align: center;
}

.about h2 {
  font-size: clamp(4.8rem, 5.2vw, 8.2rem);
  margin-bottom: 1.8rem;
}

.about__text {
  max-width: 76rem;
  margin: 0 auto;
  font-size: clamp(1.75rem, 1.05vw, 2.1rem);
  line-height: 1.52;
  color: #d9d9d9;
}

.about__cta {
  margin-top: 2.4rem;
  min-width: 30rem;
}


.site-footer {
  background: #040404;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.15fr) minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 5rem;
  align-items: start;
  padding: 2.8rem 0 2.2rem;
}

.footer__brand img {
  width: min(100%, 38rem);
}

.footer__column h3 {
  margin: 0 0 1.6rem;
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer__nav-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
}

.footer__column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__column li + li {
  margin-top: 0.9rem;
}

.footer__column a,
.contact-item span,
.footer__bottom p {
  color: #ededed;
}

.footer__column a {
  font-size: 1.9rem;
  line-height: 1.3;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  padding-top: 0.4rem;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.8rem;
  height: 3.8rem;
  opacity: 0.86;
  transition: opacity var(--ease), transform var(--ease);
}

.socials a:hover,
.socials a:focus-visible {
  transform: translateY(-1px);
}

.socials img {
  width: 3.2rem;
  height: 3.2rem;
}

.footer__contact {
  justify-self: end;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: fit-content;
  opacity: 0.9;
  transition: opacity var(--ease), transform var(--ease);
}

.contact-item + .contact-item {
  margin-top: 1.5rem;
}

.contact-item img {
  width: 2.9rem;
  height: 2.9rem;
}

.contact-item span {
  font-size: 1.95rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.3rem 0 1.5rem;
}

.footer__bottom p {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.4;
}

.media-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 3rem;
  background: rgba(0, 0, 0, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}

.media-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.media-modal__content {
  width: min(112rem, 100%);
  max-height: calc(100vh - 8rem);
  display: flex;
  justify-content: center;
  align-items: center;
}

.media-modal__content img {
  max-width: 100%;
  max-height: calc(100vh - 8rem);
  border-radius: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.media-modal__close {
  position: absolute;
  top: 2rem;
  right: 2.4rem;
  width: 5.2rem;
  height: 5.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(15, 15, 15, 0.92);
  color: #fff;
  font-size: 3.2rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1340px) {
  .container {
    width: min(calc(100% - 5rem), var(--container));
  }

  .header__inner {
    gap: 2rem;
  }

  .site-nav {
    gap: 2.8rem;
  }

  .hero__inner {
    grid-template-columns: 26% 74%;
  }

  .benefits__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 1120px) {
  .site-nav {
    gap: 2rem;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    align-items: end;
    min-height: 64rem;
    padding-block: 5rem 4rem;
  }

  .hero__spacer {
    display: none;
  }

  .hero__content {
    max-width: 82rem;
    margin-left: 0;
    padding-left: 0;
  }

  .hero__content::before {
    inset: -3rem -2rem -3rem -2rem;
  }

  .highlights__grid {
    grid-template-columns: 1fr;
  }
  .about__grid,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .benefits__content {
    padding-top: 0;
  }


  .about__cta {
    min-width: 0;
  }

  .footer__contact {
    justify-self: start;
  }

  .footer__brand img {
    width: 30rem;
  }
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
  }

  .header__inner {
    min-height: 9rem;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    order: 3;
    margin-left: auto;
  }

  .header__cta {
    display: none;
  }

  .header__nav-wrap {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: block;
    padding: 0 2.4rem 2rem;
    background: rgba(4, 4, 4, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: opacity var(--ease), transform var(--ease);
  }

  .site-header.is-open .header__nav-wrap {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
    padding: 2rem 0 0.2rem;
  }

  .site-header.is-open .menu-toggle span:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
  }

  .site-header.is-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .menu-toggle span:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
  }

  .hero__bg {
    background-position: center top;
  }
}

@media (max-width: 720px) {
  html {
    font-size: 58%;
  }

  .container {
    width: min(calc(100% - 3.6rem), var(--container));
  }

  .brand img {
    width: 23.5rem;
  }

  .hero__inner {
    min-height: 55rem;
  }

  .hero__content::before {
    inset: -2rem -1rem -2rem -1rem;
  }

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

  .btn--large,
  .about__cta {
    width: 100%;
    min-width: 0;
  }

  .benefits__cards,
  .footer__nav-columns,
  .footer__bottom-inner {
    grid-template-columns: 1fr;
  }
  .benefits h2,
  .about h2 {
    line-height: 0.92;
  }

  .footer__bottom-inner {
    display: grid;
  }
}

@media (max-width: 520px) {
  html {
    font-size: 55%;
  }

  .header__inner {
    min-height: 8rem;
  }

  .highlights__item,
  .info-card {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }

  .media-modal {
    padding: 1.6rem;
  }

  .media-modal__close {
    top: 1rem;
    right: 1rem;
  }
}


.site-nav a.is-current::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav a.is-current,
.site-nav a[aria-current="page"] {
  opacity: 1;
}

.footer__column a.is-current,
.footer__column a[aria-current="page"] {
  color: #fff;
}

.hero {
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__video,
.hero__bg-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  object-fit: cover;
  filter: blur(12px) brightness(0.4) saturate(0.9);
  transform: scale(1.16);
}

.hero__bg-fallback {
  background: url("../assets/images/hero-bg.jpg") center center / cover no-repeat;
  filter: blur(12px) brightness(0.32) saturate(0.9);
  transform: scale(1.12);
}

.hero__overlay {
  z-index: 0;
  background:
    radial-gradient(circle at 58% 46%, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.7) 26%, rgba(0, 0, 0, 0.36) 56%, rgba(0, 0, 0, 0.08) 76%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.18) 18%, rgba(0, 0, 0, 0.32) 60%, rgba(0, 0, 0, 0.9) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.22) 26%, rgba(0, 0, 0, 0.42) 100%);
}

.hero__inner {
  z-index: 1;
}

.hero__spacer {
  min-height: 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.8rem;
}

.hero__flag {
  width: min(100%, 28rem);
  aspect-ratio: 0.72 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2.4rem;
  background: #050505;
  box-shadow: 0 2.2rem 5rem rgba(0, 0, 0, 0.58);
  transform: rotate(-8deg) translateX(1.2rem);
}

.hero__flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.92);
}

.hero__content {
  padding-top: 3.8rem;
}

.page-hero {
  position: relative;
  isolation: isolate;
  min-height: 42rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
}

.page-hero__bg,
.page-hero__overlay {
  position: absolute;
  inset: 0;
}

.page-hero__bg {
  transform: scale(1.06);
  filter: brightness(0.38) saturate(0.92);
  background: center center / cover no-repeat;
}

.page-hero--about .page-hero__bg {
  background-image: url("../assets/images/about-bg.jpg");
}

.page-hero--news .page-hero__bg {
  background-image: url("../assets/images/hero-bg.jpg");
  filter: blur(9px) brightness(0.28) saturate(0.9);
}


.page-hero--caravanas .page-hero__bg {
  background-image: url("../assets/images/gallery-5.jpg");
}

.page-hero--contact .page-hero__bg {
  background-image: url("../assets/images/gallery-6.jpg");
}

.page-hero__overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.2) 22%, rgba(0, 0, 0, 0.86) 100%),
    radial-gradient(circle at 40% 42%, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.68) 70%);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 42rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10rem 0 4.8rem;
}

.page-hero h1,
.section-heading h2,
.story-copy h2,
.feature-news__body h2,
.contact-panel h2,
.form-panel h2,
.travel-banner__body h2,
.loyalty-banner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.9;
}

.page-hero h1 {
  max-width: 98rem;
  font-size: clamp(5.8rem, 6vw, 9rem);
}

.page-hero p {
  max-width: 78rem;
  margin: 1.8rem 0 0;
  font-size: clamp(1.9rem, 1.5vw, 2.5rem);
  line-height: 1.4;
  color: #efefef;
}

.page-section {
  padding: 5.4rem 0;
}

.page-section--tight {
  padding-top: 3.2rem;
}

.panel,
.story-brand,
.story-copy,
.institution-card,
.timeline-card,
.feature-news__body,
.news-card,
.event-card,
.step-card,
.travel-banner__body,
.contact-panel,
.form-panel,
.cta-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2rem;
  background: rgba(8, 8, 8, 0.94);
  box-shadow: var(--shadow);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.8rem;
}

.section-heading h2 {
  font-size: clamp(4.2rem, 4.6vw, 7rem);
}

.section-heading p,
.story-copy p,
.feature-news__body p,
.news-card p,
.event-card p,
.step-card p,
.travel-banner__body p,
.contact-panel p,
.form-panel p,
.timeline-card p,
.institution-card p,
.loyalty-banner p {
  color: var(--muted);
}

.section-heading p {
  max-width: 54rem;
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.6;
}

.story-grid {
  display: grid;
  grid-template-columns: 30rem minmax(0, 1fr);
  gap: 2.4rem;
  align-items: stretch;
}

.story-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    url("../assets/images/about-bg.jpg") center center / cover no-repeat;
}

.story-brand img {
  width: min(100%, 22rem);
}

.story-copy {
  padding: 3.2rem;
}

.story-copy h2,
.contact-panel h2,
.form-panel h2,
.travel-banner__body h2,
.loyalty-banner h2 {
  font-size: clamp(4.2rem, 4.5vw, 6.2rem);
  margin-bottom: 1.6rem;
}

.story-copy p {
  margin: 0 0 1.4rem;
  font-size: 1.86rem;
  line-height: 1.65;
}

.institution-grid,
.timeline-grid,
.news-grid,
.events-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.institution-card,
.timeline-card,
.event-card,
.step-card {
  padding: 2.4rem 2.2rem;
}

.institution-card h3,
.timeline-card h3,
.news-card h3,
.event-card h3,
.step-card h3,
.contact-block h3,
.cta-panel h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 2.1vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.institution-card p,
.timeline-card p,
.event-card p,
.step-card p {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.6;
}

.timeline-card__year,
.news-card__meta,
.event-card__eyebrow,
.badge,
.step-number,
.contact-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 3.2rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-news {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 2.4rem;
}

.feature-news__media {
  display: block;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.feature-news__media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.feature-news__body {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 3rem;
}

.feature-news__body h2 {
  font-size: clamp(4.2rem, 4.5vw, 6.2rem);
}

.feature-news__body p {
  margin: 0;
  font-size: 1.86rem;
  line-height: 1.65;
}

.badge {
  min-height: 3.4rem;
}

.news-card {
  overflow: hidden;
}

.news-card__media {
  display: block;
  overflow: hidden;
}

.news-card__media img {
  width: 100%;
  aspect-ratio: 1.52 / 1;
  object-fit: cover;
}

.news-card__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2.2rem;
}

.news-card__meta {
  gap: 0.8rem;
}

.news-card h3 {
  margin: 0;
}

.news-card p {
  margin: 0;
  font-size: 1.72rem;
  line-height: 1.6;
}

.news-card__link {
  margin-top: auto;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}


.event-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.event-card__meta {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.event-card__meta li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.72rem;
  color: #efefef;
}

.event-card__meta img {
  width: 2.4rem;
  height: 2.4rem;
}

.step-number {
  width: 4.2rem;
  height: 4.2rem;
  margin-bottom: 1.4rem;
  padding: 0;
  border-radius: 50%;
  font-size: 1.8rem;
}

.travel-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 2rem;
  align-items: stretch;
}

.travel-banner__media {
  display: block;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.travel-banner__media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.travel-banner__body {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 3rem;
}

.travel-banner__body ul {
  margin: 0;
  padding-left: 1.8rem;
  color: #efefef;
  font-size: 1.8rem;
  line-height: 1.7;
}

.loyalty-banner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.loyalty-banner__copy {
  padding: 3rem;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.8rem 3rem;
}

.cta-panel p {
  margin: 0;
  font-size: 1.82rem;
  line-height: 1.6;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2rem;
  align-items: start;
}

.contact-panel,
.form-panel {
  padding: 3rem;
}

.contact-grid {
  display: grid;
  gap: 1.4rem;
  margin-top: 2.2rem;
}

.contact-block {
  padding: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.03);
}

.contact-block p {
  margin: 0;
  font-size: 1.72rem;
  line-height: 1.6;
}

.socials--large {
  padding-top: 1rem;
}

.socials--large a {
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.socials--large img {
  width: 2.4rem;
  height: 2.4rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.field--full,
.form-actions {
  grid-column: 1 / -1;
}

.field label {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1rem;
  background: #0a0a0a;
  color: #fff;
  padding: 1.4rem 1.6rem;
  font: inherit;
  font-size: 1.75rem;
}

.field input,
.field select {
  min-height: 5.6rem;
}

.field textarea {
  min-height: 16rem;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid rgba(255, 255, 255, 0.18);
  outline-offset: 0.1rem;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  padding-top: 0.4rem;
}

.form-feedback {
  min-height: 2.2rem;
  margin: 0;
  font-size: 1.65rem;
  color: #d9d9d9;
}

.muted-note {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1340px) {

  .loyalty-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1120px) {
  .hero__video,
  .hero__bg-fallback {
    transform: scale(1.12);
  }

  .page-hero {
    min-height: 36rem;
  }

  .page-hero__inner {
    min-height: 36rem;
    padding-top: 11rem;
  }

  .story-grid,
  .feature-news,
  .travel-banner,
  .contact-layout,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .institution-grid,
  .timeline-grid,
  .news-grid,
  .events-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__flag {
    transform: rotate(-7deg);
  }
}

@media (max-width: 980px) {
  .page-hero h1 {
    max-width: 72rem;
  }
}

@media (max-width: 720px) {
  .page-section {
    padding: 4.6rem 0;
  }

  .page-hero {
    min-height: 32rem;
  }

  .page-hero__inner {
    min-height: 32rem;
    padding: 9rem 0 3.8rem;
  }

  .hero__video,
  .hero__bg-fallback {
    transform: scale(1.09);
  }

  .section-heading,
  .cta-panel,
  .form-actions {
    align-items: flex-start;
  }

  .section-heading {
    flex-direction: column;
  }

  .story-grid,
  .institution-grid,
  .timeline-grid,
  .news-grid,
  .events-grid,
  .steps-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .page-hero h1,
  .section-heading h2,
  .story-copy h2,
  .feature-news__body h2,
  .contact-panel h2,
  .form-panel h2,
  .travel-banner__body h2,
  .loyalty-banner h2 {
    line-height: 0.94;
  }

  .contact-panel,
  .form-panel,
  .story-copy,
  .feature-news__body,
  .travel-banner__body,
  .loyalty-banner__copy,
  .cta-panel {
    padding: 2.4rem 2rem;
  }
}


/* Home hero: use the original video appearance with no artificial darkening */
.page--home .hero {
  position: relative;
  overflow: hidden;
}

.page--home .hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page--home .hero__video,
.page--home .hero__bg-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: none !important;
  transform: none !important;
  opacity: 1 !important;
}

.page--home .hero__video {
  background: #000;
}

.page--home .hero__bg-fallback {
  background: url("../assets/images/hero-video-poster.jpg") center center / cover no-repeat !important;
}

.page--home .hero__overlay,
.page--home .hero__content::before,
.page--home .hero__flag {
  display: none !important;
}

.page--home .hero__inner {
  position: relative;
  z-index: 1;
}

.page--home .hero__content {
  position: relative;
  z-index: 2;
}

/* Ajustes solicitados: leitura do banner principal */
.page--home .hero h1 {
  color: #f8f8f8;
  -webkit-text-stroke: 0.08rem rgba(0, 0, 0, 0.88);
  text-shadow:
    0 0.18rem 0 rgba(0, 0, 0, 0.98),
    0 0.45rem 0.6rem rgba(0, 0, 0, 0.82),
    0 1.4rem 3.4rem rgba(0, 0, 0, 0.95),
    0 0 1.2rem rgba(0, 0, 0, 0.72);
}

.page--home .hero p {
  color: #fff;
  text-shadow:
    0 0.12rem 0 rgba(0, 0, 0, 0.98),
    0 0.35rem 0.9rem rgba(0, 0, 0, 0.95),
    0 1rem 2.4rem rgba(0, 0, 0, 0.92),
    0 0 0.9rem rgba(0, 0, 0, 0.86);
}



/* Sobre Nós: página institucional */
.page--about main {
  background:
    radial-gradient(circle at 50% 9%, rgba(255, 255, 255, 0.06), transparent 24rem),
    #000;
}

.page--about .about-hero .page-hero__bg {
  filter: brightness(0.32) saturate(0.85);
}

.page--about .about-hero .page-hero__overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.58) 48%, rgba(0, 0, 0, 0.86) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.88) 100%);
}

.page--about .about-hero__inner {
  justify-content: center;
  padding-bottom: 3.8rem;
}

.page--about .about-hero h1 {
  max-width: 92rem;
  text-shadow: 0 0.6rem 2.4rem rgba(0, 0, 0, 0.82);
}

.page--about .about-hero p:not(.eyebrow) {
  max-width: 76rem;
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.85);
}

.page--about .about-story-section {
  padding-top: 4.6rem;
}

.page--about .about-story-grid {
  grid-template-columns: minmax(24rem, 36rem) minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow);
}

.page--about .about-story-brand {
  position: sticky;
  top: 11rem;
  min-height: 42rem;
  border-radius: 1.6rem;
  box-shadow: none;
}

.page--about .about-story-brand img {
  width: min(100%, 26rem);
  filter: drop-shadow(0 1.2rem 2rem rgba(0, 0, 0, 0.75));
}

.page--about .about-story-copy {
  padding: 0.8rem 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page--about .about-story-copy h2 {
  max-width: 80rem;
}

.page--about .about-story-copy p {
  max-width: 94rem;
}

.page--about .about-section-heading--center {
  display: block;
  text-align: center;
  margin-bottom: 3.2rem;
}

.page--about .about-institution-grid {
  gap: 2rem;
}

.page--about .about-institution-card {
  position: relative;
  overflow: hidden;
  min-height: 20rem;
  padding: 2.8rem 2.6rem;
}

.page--about .about-institution-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.4rem;
  background: rgba(255, 255, 255, 0.78);
  opacity: 0.48;
}

.page--about .about-institution-card h3 {
  font-size: clamp(3rem, 2.5vw, 4.2rem);
}

.page--about .about-final-banner {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.82)),
    url("../assets/images/about-bg.jpg") center center / cover no-repeat;
  box-shadow: var(--shadow);
}

.page--about .about-final-copy {
  max-width: none;
  padding: 4.2rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page--about .about-final-copy h2 {
  max-width: 56rem;
  border-left: 0.6rem solid rgba(255, 255, 255, 0.82);
  padding-left: 2rem;
}

.page--about .about-final-copy p {
  max-width: 78rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.78);
}

.page--about .about-final-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 2.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .page--about .about-story-grid {
    grid-template-columns: 1fr;
  }

  .page--about .about-story-brand {
    position: relative;
    top: auto;
    min-height: 28rem;
  }
}

@media (max-width: 720px) {
  .page--about .about-story-grid {
    padding: 2rem;
    gap: 2.4rem;
  }

  .page--about .about-story-brand {
    min-height: 22rem;
    padding: 2rem;
  }

  .page--about .about-institution-card {
    min-height: auto;
  }

  .page--about .about-final-copy {
    padding: 3rem 2.2rem;
  }
}

/* Subsedes */
.page--subsedes {
  background:
    radial-gradient(circle at 78% 14%, rgba(255, 255, 255, 0.055), transparent 24rem),
    linear-gradient(180deg, #050505 0%, #080808 44%, #030303 100%);
}

.page-hero--subsedes {
  min-height: 58rem;
  border-bottom: 0;
}

.page-hero--subsedes .page-hero__bg {
  background-image: url("../assets/images/subsedes-torcida-bg.jpeg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: brightness(0.48) contrast(1.08) saturate(0.95);
  transform: scale(1.02);
}

.page-hero--subsedes .page-hero__overlay {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.82) 34%, rgba(0,0,0,0.48) 62%, rgba(0,0,0,0.78) 100%),
    radial-gradient(circle at 78% 50%, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.42) 48%, rgba(0,0,0,0.82) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.24) 0%, rgba(0,0,0,0.44) 52%, #050505 100%);
}

.subsedes-hero__inner {
  min-height: 58rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(40rem, 68rem);
  align-items: center;
  justify-content: space-between;
  gap: clamp(2.4rem, 4vw, 6rem);
  padding-top: 8rem;
  padding-bottom: 7rem;
}

.subsedes-hero__content {
  position: relative;
  z-index: 2;
  max-width: 64rem;
}

.eyebrow--redline::after {
  content: "";
  display: block;
  width: 5rem;
  height: 0.24rem;
  margin-top: 1.3rem;
  background: #e01919;
}

.subsedes-hero h1 {
  max-width: 76rem;
  margin-top: 2.4rem;
  font-size: clamp(7.4rem, 9vw, 15.6rem);
  line-height: 0.84;
  letter-spacing: 0.015em;
  text-shadow: 0 0.5rem 2.4rem rgba(0,0,0,0.75);
}

.subsedes-hero p:not(.eyebrow) {
  max-width: 58rem;
  margin-top: 2.2rem;
  font-size: clamp(2.2rem, 1.75vw, 3rem);
  color: rgba(255,255,255,0.88);
}

.subsedes-hero__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 46rem;
}

.subsedes-hero__visual::before {
  content: "";
  position: absolute;
  inset: auto 2% 7% auto;
  width: min(56rem, 94%);
  height: min(56rem, 94%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.035) 38%, rgba(255,255,255,0) 72%);
  filter: blur(1.2rem);
  pointer-events: none;
}

.subsedes-hero__mascot {
  position: relative;
  z-index: 1;
  display: block;
  width: min(112%, 78rem);
  max-height: 66rem;
  object-fit: contain;
  transform: translateX(2.2rem);
  filter: drop-shadow(0 2.2rem 3.4rem rgba(0, 0, 0, 0.62)) drop-shadow(0 0 2.8rem rgba(255, 255, 255, 0.06));
}


.subsedes-main {
  padding: 0 0 7.2rem;
}

.subsedes-identity-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 3.6rem;
  margin-top: -3.6rem;
  padding: clamp(2.8rem, 3.2vw, 4.4rem) clamp(2.4rem, 4vw, 5.2rem);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 1.2rem;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015)),
    #101010;
  box-shadow: 0 2.4rem 5rem rgba(0,0,0,0.45);
  position: relative;
  z-index: 2;
}

.subsedes-identity-card__icon {
  width: clamp(8rem, 8vw, 11.2rem);
  height: clamp(8rem, 8vw, 11.2rem);
  border: 0.42rem solid #f2f2f2;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: clamp(4.2rem, 5vw, 6.4rem);
  line-height: 1;
  text-align: center;
  color: #fff;
  box-shadow: inset 0 0 0 0.9rem #111, 0 1.2rem 2.2rem rgba(0,0,0,0.35);
}

.subsedes-identity-card__icon svg {
  width: 58%;
  height: 58%;
  display: block;
  fill: currentColor;
}


.subsedes-identity-card h2,
.subsedes-tools h2,
.subsedes-card h3,
.subsedes-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.subsedes-identity-card h2 {
  font-size: clamp(2.4rem, 2vw, 3.6rem);
  line-height: 0.96;
}

.subsedes-identity-card p {
  max-width: 88rem;
  margin: 1rem 0 0;
  font-size: clamp(1.55rem, 1.15vw, 1.95rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
}

.subsedes-tools {
  display: grid;
  grid-template-columns: 1fr minmax(30rem, 62rem);
  align-items: end;
  gap: 2.4rem;
  margin-top: 5.4rem;
}

.subsedes-tools h2 {
  font-size: clamp(4rem, 4.6vw, 6.4rem);
  line-height: 0.9;
}

.subsedes-search {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  min-height: 5.8rem;
  padding: 0 1.8rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 1rem;
  background: rgba(255,255,255,0.035);
  color: rgba(255,255,255,0.6);
}

.subsedes-search span {
  font-size: 2.8rem;
  transform: rotate(-18deg);
}

.subsedes-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 1.7rem;
}

.subsedes-search input::placeholder {
  color: rgba(255,255,255,0.58);
}

.subsedes-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2.4rem;
}

.subsedes-filter {
  min-height: 4.4rem;
  padding: 0.8rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.025);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--ease), background-color var(--ease), color var(--ease), border-color var(--ease);
}

.subsedes-filter:hover,
.subsedes-filter:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.42);
}

.subsedes-filter.is-active {
  background: #f1f1f1;
  color: #090909;
  border-color: #f1f1f1;
}

.subsedes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
  margin-top: 2.4rem;
}

.subsedes-card {
  position: relative;
  min-height: 18.6rem;
  height: auto;
  padding: 3rem 3rem 2.6rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 1rem;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.018) 42%, rgba(255,255,255,0.035)),
    #0d0d0d;
  box-shadow: 0 1.6rem 3rem rgba(0,0,0,0.22);
  overflow: hidden;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.subsedes-card::after {
  content: "";
  position: absolute;
  inset: auto -22% -44% 20%;
  height: 10rem;
  background: rgba(255,255,255,0.06);
  filter: blur(2.4rem);
  transform: rotate(-12deg);
  pointer-events: none;
}

.subsedes-card:hover,
.subsedes-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.34);
  box-shadow: 0 2.4rem 4.2rem rgba(0,0,0,0.35);
}

.subsedes-card__mark {
  position: absolute;
  top: 1.3rem;
  left: 2rem;
  width: 3.2rem;
  height: 0.25rem;
  background: #cc1616;
  transition: width var(--ease), background-color var(--ease);
}

.subsedes-card:hover .subsedes-card__mark {
  width: 4.5rem;
  background: #ff2525;
}

.subsedes-card h3 {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: clamp(2.35rem, 2vw, 3.15rem);
  line-height: 0.95;
}

.subsedes-card h3 span {
  font-family: var(--font-text);
  font-size: 2.4rem;
  line-height: 1;
  color: rgba(255,255,255,0.9);
}

.subsedes-card p {
  position: relative;
  z-index: 1;
  margin: 1.4rem 0 0;
  font-size: clamp(1.44rem, 1vw, 1.68rem);
  line-height: 1.58;
  color: rgba(255,255,255,0.76);
}


.subsedes-card--more {
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(165deg, rgba(255,255,255,0.08), rgba(255,255,255,0.015)),
    url("../assets/images/gallery-3.jpg") center / cover no-repeat;
}

.subsedes-card--more::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
}

.subsedes-card--more > div {
  position: relative;
  z-index: 1;
}

.subsedes-card--more p {
  margin: 0 0 2rem;
  font-size: clamp(2rem, 1.5vw, 2.8rem);
  line-height: 1.15;
  color: #fff;
}

.subsedes-card--more span {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  font-size: 2rem;
}

.subsedes-card--more span::before,
.subsedes-card--more span::after {
  content: "";
  display: block;
  width: 10rem;
  height: 1px;
  background: rgba(255,255,255,0.35);
}

.subsedes-empty {
  margin: 3rem 0 0;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 1rem;
  color: rgba(255,255,255,0.75);
  font-size: 1.8rem;
  text-align: center;
}

.subsedes-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
  margin-top: 2.6rem;
  min-height: 14rem;
  padding: 3rem clamp(2.4rem, 5vw, 8rem);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  background: url("../assets/images/gallery-1.jpg") center 35% / cover no-repeat;
}

.subsedes-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.95), rgba(0,0,0,0.68) 58%, rgba(0,0,0,0.9)),
    rgba(0,0,0,0.7);
}

.subsedes-cta::after {
  content: "";
  position: absolute;
  top: 2.5rem;
  bottom: 2.5rem;
  left: 64%;
  width: 0.2rem;
  background: #c51616;
}

.subsedes-cta > * {
  position: relative;
  z-index: 1;
}

.subsedes-cta h2 {
  font-size: clamp(4rem, 4.4vw, 7rem);
  line-height: 0.88;
}

.footer__about-text p {
  margin: 0;
  max-width: 38rem;
  color: rgba(255,255,255,0.74);
  font-size: 1.65rem;
  line-height: 1.6;
}

@media (max-width: 1120px) {
  .subsedes-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(30rem, 50rem);
    gap: 2.4rem;
  }

  .subsedes-hero__mascot {
    width: min(108%, 56rem);
    max-height: 52rem;
    transform: translateX(1rem);
  }

  .subsedes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .subsedes-tools {
    grid-template-columns: 1fr;
  }

  .subsedes-search {
    max-width: 100%;
  }

  .subsedes-cta {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .subsedes-cta::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .page-hero--subsedes,
  .subsedes-hero__inner {
    min-height: 46rem;
  }

  .subsedes-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.8rem;
    padding-top: 9.5rem;
    padding-bottom: 4.6rem;
  }

  .subsedes-hero__content {
    max-width: 100%;
  }

  .subsedes-hero__visual {
    min-height: auto;
    justify-content: center;
  }

  .subsedes-hero__visual::before {
    inset: auto 50% 10% auto;
    transform: translateX(50%);
    width: min(38rem, 88vw);
    height: min(38rem, 88vw);
  }

  .subsedes-hero__mascot {
    width: min(100%, 44rem);
    max-height: 40rem;
    transform: none;
  }

  .subsedes-main {
    padding-bottom: 5rem;
  }

  .subsedes-identity-card {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    margin-top: -2rem;
  }

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

  .subsedes-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.6rem;
    scrollbar-width: thin;
  }

  .subsedes-filter {
    flex: 0 0 auto;
  }

  .subsedes-card {
    min-height: auto;
  }

  .subsedes-cta {
    padding: 2.6rem 2.2rem;
  }
}

@media (max-width: 520px) {
  .subsedes-hero h1 {
    font-size: clamp(6rem, 18vw, 8rem);
  }

  .subsedes-hero p:not(.eyebrow) {
    font-size: 2rem;
  }

  .subsedes-tools h2,
  .subsedes-cta h2 {
    font-size: clamp(3.8rem, 12vw, 5.2rem);
  }

  .subsedes-card {
    padding: 2.8rem 2.2rem 2.2rem;
  }

  .subsedes-card--more span::before,
  .subsedes-card--more span::after {
    width: 6rem;
  }
}


/* Página 25 Anos */
.page--25anos {
  background: #030303;
}

.anniversary-main {
  min-height: calc(100vh - 10rem);
  padding: 13rem 2rem 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anniversary-image {
  display: block;
  width: min(100%, 96rem);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2rem 4rem rgba(0, 0, 0, 0.55));
}

@media (max-width: 720px) {
  .anniversary-main {
    min-height: auto;
    padding: 10rem 1.6rem 4.5rem;
  }

  .anniversary-image {
    width: min(100%, 58rem);
  }
}


/* Contact page without form */
.contact-layout--single {
  grid-template-columns: 1fr;
  max-width: 118rem;
  margin-inline: auto;
}

.contact-panel--wide {
  padding: clamp(2.6rem, 4vw, 4.6rem);
}

.contact-grid--official {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-panel--wide .socials--large {
  margin-top: 2.4rem;
}

@media (max-width: 900px) {
  .contact-grid--official {
    grid-template-columns: 1fr;
  }
}
