:root {
  --bg: #ffffff;
  --bg-alt: #f4f5f7;
  --text: #020617;
  --muted: #6b7280;
  --accent: #1d4ed8;
  --accent-soft: #e0edff;
  --accent-soft-strong: #d0e3ff;
  --line: rgba(15, 23, 42, 0.08);
  --line-soft: rgba(15, 23, 42, 0.06);
  --radius: 16px;
  --dark-bg: #0f172a;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--accent); /* or any color you want */
  border-bottom: 1px solid currentColor;
}
a:hover:has(img) {
  border-bottom: 0;
}
a[aria-current=page] {
  color: var(--accent); /* or any color you want */
  border-bottom: 1px solid currentColor;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.5rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.12;
}

h3 {
  font-weight: bold;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.75rem;
}
@media (max-width: 768px) {
  .container {
    padding-inline: 1.25rem;
  }
}

.main {
  min-height: 100vh;
  background: var(--bg);
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.header__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.75rem;
}
@media (max-width: 768px) {
  .header__inner {
    padding-inline: 1.25rem;
  }
}
.header__inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.header .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.header .brand__img {
  height: 44px;
  width: auto;
  display: block;
}
.header .nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.95rem;
}
.header .nav a {
  position: relative;
  padding-block: 0.25rem;
  color: var(--text);
  opacity: 0.85;
}
.header .nav a:hover {
  opacity: 1;
}
.header .nav a[aria-current=true] {
  opacity: 1;
  font-weight: 600;
}
.header .nav a[aria-current=true]::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -0.3rem;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}
.header .nav.lang {
  padding-left: 1.25rem;
  margin-left: 1.25rem;
  border-left: 1px solid var(--line);
  font-size: 0.85rem;
  gap: 0.75rem;
}
.header .nav.lang a {
  opacity: 0.7;
}
.header .nav.lang a[aria-current=true] {
  opacity: 1;
  font-weight: 600;
}
@media (max-width: 768px) {
  .header .nav--desktop {
    display: none;
  }
}
.header .hamburger {
  display: none;
  background: none;
  border: none;
  border-radius: 999px;
  padding: 0.35rem 0.45rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  -webkit-tap-highlight-color: transparent;
}
.header .hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.18s ease, opacity 0.18s ease;
}
@media (max-width: 768px) {
  .header .hamburger {
    display: inline-flex;
    flex-direction: column;
  }
}
.header .hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header .hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.header .hamburger.is-open span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}
.header .nav-drawer {
  display: none;
}
@media (max-width: 768px) {
  .header .nav-drawer {
    display: block;
    position: fixed;
    inset-inline: 0;
    top: 72px;
    background: #ffffff;
    border-bottom: 1px solid var(--line-soft);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 25;
  }
  .header .nav-drawer.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .header .nav-drawer__inner {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .header .nav-drawer__inner > a {
    padding-block: 0.35rem;
  }
  .header .nav-drawer__inner .nav.lang {
    margin-top: 0.75rem;
    padding-left: 0;
    margin-left: 0;
    border-left: 0;
  }
}

.home .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
.home .header.header--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.hero-video {
  position: relative;
  height: 100vh;
  min-height: 460px;
  overflow: hidden;
  background: #000;
}
.hero-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.05);
}
.hero-video__center {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 1.5rem;
}
.hero-video__logo {
  width: min(460px, 80vw);
  height: auto;
  filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.6));
}

.miembros-marquee {
  background: #ffffff;
  color: #020617;
  border-block: 1px solid var(--line-soft);
  padding-block: 1.4rem;
  overflow: hidden;
  pointer-events: none;
}
.miembros-marquee__mask {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.75rem;
}
@media (max-width: 768px) {
  .miembros-marquee__mask {
    padding-inline: 1.25rem;
  }
}
.miembros-marquee__mask {
  mask-image: linear-gradient(to right, transparent 0, black 40px, black calc(100% - 40px), transparent 100%);
}
.miembros-marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee var(--marquee-speed, 55s) linear infinite;
  will-change: transform;
}
.miembros-marquee__track:hover {
  animation-play-state: paused;
}
.miembros-marquee__item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  min-width: 200px;
}
.miembros-marquee__item:hover {
  text-decoration: none;
}
.miembros-marquee__item:hover .miembros-marquee__title {
  opacity: 1;
}
.miembros-marquee__item:hover .miembros-marquee__thumb {
  opacity: 0.75;
}
.miembros-marquee__thumb {
  width: 220px;
  height: 100px;
  border-radius: 14px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  overflow: hidden;
  transition: opacity 0.18s ease;
}
.miembros-marquee__thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.miembros-marquee__title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0.6;
  display: none;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #ffffff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 80px rgba(15, 23, 42, 0.12);
}
.card .card__thumb img {
  aspect-ratio: 16/9;
  object-fit: contain;
}
.card .card__body {
  padding: 1.1rem 1.2rem 1.2rem;
}
.card .card__title {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  line-height: 1.25;
}
.card .card__meta {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.card .card__excerpt :where(p) {
  margin: 0;
}

body.members .content-area {
  padding-block: 3.5rem 4rem;
}
body.members .content-band__inner.members-table {
  padding: 0;
}
body.members .members-intro {
  margin-bottom: 1.75rem;
}
body.members .members-table {
  width: 100%;
}
body.members .members-grid-header {
  display: grid;
  grid-template-columns: 120px 1.3fr 1.6fr 1.3fr 1.1fr;
  gap: 1.5rem;
  padding: 0 1.75rem 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
body.members .members-grid-header__cell {
  white-space: nowrap;
}
body.members .members-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
body.members .members-row {
  display: grid;
  grid-template-columns: 120px 1.3fr 1.6fr 1.3fr 1.1fr;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 0.95rem 1.75rem;
  border-radius: 18px;
  border: 1px solid var(--line-soft);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
  background: #ffffff;
}
body.members .members-row__logo {
  max-width: 120px;
  align-self: center;
}
body.members .members-row__logo img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
body.members .members-row__title {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 500;
}
body.members .members-row__subtitle {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}
body.members .members-row__services,
body.members .members-row__coverage,
body.members .members-row__website {
  font-size: 0.9rem;
}
body.members .members-row__services p,
body.members .members-row__coverage p,
body.members .members-row__website p {
  margin: 0;
}
body.members .members-row__website a {
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 768px) {
  body.members .members-grid-header {
    display: none;
  }
  body.members .members-grid {
    gap: 1rem;
  }
  body.members .members-row {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: auto;
    padding: 1rem 1.25rem;
    gap: 0.75rem;
  }
  body.members .members-row__logo,
  body.members .members-row__company,
  body.members .members-row__services,
  body.members .members-row__coverage,
  body.members .members-row__website {
    grid-column: 1/-1;
  }
  body.members .members-row__company h2 {
    font-weight: bold;
  }
  body.members .members-row__logo {
    max-width: 200px;
    max-height: 100px;
    margin-bottom: 0.5rem;
    justify-self: flex-start;
  }
  body.members .members-row__logo img {
    max-height: 100px;
  }
}

.news-wrapper {
  padding: 0 1em;
}

.content-area {
  max-width: 1200px;
  margin-inline: auto;
  padding-block: 3.5rem 4rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
}

.content-band {
  background: #ffffff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.content-band:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 80px rgba(15, 23, 42, 0.12);
}
.content-band {
  border-radius: 24px;
  box-shadow: 0 20px 70px rgba(15, 23, 42, 0.06);
  margin-bottom: 2.5rem;
  background: #ffffff;
}
.content-band__inner {
  padding: 2.25rem 2.5rem;
}
@media (max-width: 768px) {
  .content-band__inner {
    padding: 1.5rem 1.5rem;
  }
}
.content-band__inner--center {
  text-align: center;
}

.content-band:not(.content-band--video) {
  padding: 2.25rem 2.5rem;
}
@media (max-width: 768px) {
  .content-band:not(.content-band--video) {
    padding: 1.5rem 1.5rem;
  }
}

.content-band.content-band--gremial:not(.content-band--video) {
  padding: 0 !important;
}

.content-band--video .content-band__inner {
  padding: 2.25rem 2.5rem 2.5rem;
}

.content-band--narrow {
  box-shadow: 0 8px 38px rgba(15, 23, 42, 0.05);
}

.content-columns {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 768px) {
  .content-columns {
    flex-direction: column;
  }
}

.content-columns--reverse {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .content-columns--reverse {
    flex-direction: column;
  }
}

.content-column {
  flex: 1 1 0;
}

.content-column--media {
  min-width: 0;
}

.section-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.section-eyebrow--badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-heading {
  font-size: clamp(1.6rem, 1vw + 1rem, 2.5rem);
  font-weight: 500;
  color: var(--text);
  margin: 0 0 1.25rem;
  max-width: 38rem;
}

.content-lead {
  max-width: 40rem;
  margin: 0 auto 1.5rem;
  font-size: 0.98rem;
}

.content-media {
  margin: 0;
}
.content-media img {
  border-radius: 18px;
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
}

.content-media--centered {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.content-media__figure {
  margin: 0;
}
.content-media__figure img {
  max-width: 100%;
}

.video-embed iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 18px;
  border: 1px solid var(--line-soft);
}

.map-embed {
  width: 100%;
  min-width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: #ffffff;
}
.map-embed iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  display: block;
  border: 0;
}

@media (min-width: 1024px) {
  .map-embed iframe {
    aspect-ratio: 16/10;
  }
}
.content-band--gremial {
  background: transparent;
  border: none;
  padding: 0;
  transform: none;
  box-shadow: none;
}
.content-band--gremial:hover {
  transform: none;
  box-shadow: none;
}
.content-band--gremial .content-band__inner {
  padding: 0rem;
}
@media (max-width: 768px) {
  .content-band--gremial .content-band__inner {
    padding: 1.5rem;
  }
}
.content-band--gremial .content-triple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .content-band--gremial .content-triple {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.content-band--gremial .content-triple__block {
  background: #ffffff;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 40px rgba(15, 23, 42, 0.06);
  transition: none;
}
.content-band--gremial .content-triple__block:hover {
  transform: none;
  box-shadow: 0 8px 40px rgba(15, 23, 42, 0.06);
}
.content-band--gremial .content-triple__block ul {
  margin: 0;
  padding-left: 1.25rem;
}
.content-band--gremial .content-triple__block ul li {
  margin-bottom: 0.5rem;
}
.content-band--gremial .content-triple__block .section-eyebrow--badge {
  margin-bottom: 1rem;
}
.content-band--gremial .content-triple__block .content-triple__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer {
  border-top: 1px solid var(--line-soft);
  padding-block: 1.5rem;
  background: #ffffff;
}
.footer__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.75rem;
}
@media (max-width: 768px) {
  .footer__inner {
    padding-inline: 1.25rem;
  }
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}
.footer__inner p {
  margin: 0;
}

body.single-page--contact .content-columns {
  align-items: flex-start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.25rem;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-form__field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line-soft);
  padding: 0.55rem 0.75rem;
  font: inherit;
  color: var(--text);
  background: #f9fafb;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: var(--muted);
  opacity: 0.8;
}

.contact-form__field input:focus-visible,
.contact-form__field select:focus-visible,
.contact-form__field textarea:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-soft);
  background: #ffffff;
}

.contact-form__field textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form__actions {
  margin-top: 0.35rem;
}

.contact-form__actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.16s ease, transform 0.12s ease, box-shadow 0.12s ease;
}

.contact-form__actions button:hover {
  background: #1e40af;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.28);
  transform: translateY(-1px);
}

.contact-form__actions button:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.24);
}

.contact-form__note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 32rem;
}

@media (max-width: 768px) {
  .content-area {
    padding-block: 2.5rem 3rem;
  }
  .content-band {
    margin-bottom: 1.9rem;
  }
  .content-band--narrow {
    padding: 0;
  }
  .content-band--narrow .content-band__inner {
    padding: 1.5rem 1.5rem;
  }
}

/*# sourceMappingURL=main.css.map */
