:root {
  --navy: #06283d;
  --blue: #1aa1d7;
  --primary: #042b6c;
  --gold: #f4c542;
  --ink: #173042;
  --muted: #647887;
  --mist: #f2f7f8;
  --line: #dce7ea;
  --radius: 8px;
  --max: 1240px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  width: min(100% - 40px, var(--max));
  margin: auto;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  background: var(--blue);
  z-index: 10;
  box-shadow: 0 6px 24px #001b2b44;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #ffffff33;
}
.site-header.is-scrolled {
  background: var(--blue);
}
.header-inner {
  min-height: 80px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 24px;
}
.site-brand {
  display: flex;
  align-items: center;
}
.site-brand img {
  width: 139px;
  height: 65px;
  object-fit: contain;
  object-position: left center;
}
.main-navigation {
  display: flex;
  justify-content: center;
}
.header-menu {
  display: flex !important;
  align-items: center;
  gap: 5px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.header-menu li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.header-menu a {
  display: block;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 999px;
}
.header-menu a:hover,
.header-menu .current-menu-item > a {
  color: var(--navy);
  background: var(--gold);
}
.header-social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #ffffff55;
  border-radius: 50%;
  color: #fff;
  background: #ffffff18;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.social-icon:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.social-icon svg {
  width: 18px;
  height: 18px;
}
.social-icon svg .youtube-play {
  fill: var(--navy);
}
.social-icon:hover svg .youtube-play {
  fill: #fff;
}
.menu-toggle {
  display: none;
}
.hero {
  min-height: calc(100vh - 80px);
  padding-top: 80px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  isolation: isolate;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #031c2be8, #031c2b70 55%, #031c2b18);
  z-index: -1;
}
.hero-content {
  width: min(100% - 40px, var(--max));
  padding: 90px 0 120px;
  margin: auto;
  position: relative;
  z-index: 4;
}
.hero .eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 13px;
  border: 1px solid #f4c54288;
  border-radius: 999px;
}
.hero h1 {
  max-width: 700px;
  color: #fff;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin: 18px 0;
}
.hero p {
  max-width: 570px;
  color: #eaf7f9;
  font-size: 20px;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--gold);
  color: var(--navy);
  padding: 15px 22px;
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
}
.section {
  padding: 92px 0;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 45px;
}
.section-header .eyebrow,
.sports-intro .eyebrow,
.archive-intro .eyebrow,
.clube-intro .eyebrow,
.velejar-intro .eyebrow {
  display: block;
  margin: 0 0 4px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.section-header h2 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.section-header p {
  margin: 0;
  line-height: 1.55;
  color: var(--muted);
}

.section-header .iate-section-reveal-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 12px auto 0;
  padding: 10px 20px;
  border: 1px solid var(--blue);
  border-radius: 5px;
  background: transparent;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.section-header .iate-section-reveal-toggle:hover {
  color: var(--navy);
  border-color: var(--navy);
  background: #ffffffaa;
}
.section-header .iate-section-reveal-toggle[aria-expanded="true"] .iate-accordion-chevron {
  transform: rotate(-135deg);
  margin-top: 2px;
}
.section-header .iate-section-reveal-toggle .iate-accordion-chevron {
  flex: 0 0 11px;
  width: 11px;
  height: 11px;
  border-right-width: 1.5px;
  border-bottom-width: 1.5px;
  margin-top: 0;
}
.iate-section-reveal {
  margin-top: 8px;
}
.iate-section-reveal[hidden] {
  display: none !important;
}
.iate-section-reveal.is-visible {
  animation: iateSectionRevealIn 0.45s ease forwards;
}
@keyframes iateSectionRevealIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.services-section {
  background: #fff;
}
.services-grid,
.blog-grid,
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.blog-grid,
.events-grid {
  grid-template-columns: repeat(3, 1fr);
}
.service-card,
.blog-card,
.event-card {
  background: #fff;
  border: 0;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 12px 34px #082b3d12;
}
.service-card {
  position: relative;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  background: var(--navy);
  min-height: 360px;
  isolation: isolate;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px #06283d33;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.service-card-image {
  position: absolute;
  inset: 0;
  background-image: var(--card-image);
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 40, 61, 0) 0%,
    rgba(6, 40, 61, 0) 30%,
    rgba(6, 40, 61, 0.55) 55%,
    rgba(6, 40, 61, 0.92) 78%,
    rgba(6, 40, 61, 0.98) 100%
  );
  z-index: 2;
}
.service-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 24px 28px;
  z-index: 3;
  color: #fff;
}
.service-card-number {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  border-radius: 999px;
}
.service-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.service-card p {
  margin: 0;
  color: #e6f2f5;
  font-size: 14px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card h3,
.event-card h3 {
  color: var(--navy);
}
.blog-card p,
.event-card p {
  color: var(--muted);
}
.blog-section {
  background: var(--mist);
}
.blog-card-image,
.event-card-image {
  height: 220px;
  display: block;
  background: var(--navy);
  overflow: hidden;
}
.blog-card-image img,
.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 22px;
}
.blog-card-content,
.event-card-content {
  padding: 24px;
}
.blog-card-meta {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
}
.image-grid-section {
  padding: 92px 0;
  background: var(--navy);
  overflow: hidden;
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 420px;
  gap: 0;
  width: 100%;
  max-width: 100%;
}
.image-grid-item {
  display: grid;
  place-items: center;
  min-height: 240px;
  overflow: hidden;
  padding: 0;
  border: 1px solid #ffffff33;
  background: #0b3550;
  color: #ffffff88;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.image-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.events-section {
  background: #fff;
}
.sports-intro {
  padding-top: 150px;
  padding-bottom: 58px;
  background: var(--mist);
}
.sports-intro .container {
  max-width: 780px;
  text-align: center;
}
.sports-intro h1 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
}
.sports-intro p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}
.sports-list {
  padding-top: 28px;
  background: #fff;
}
.sport-feature {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 96px);
  padding: 56px 0;
  scroll-margin-top: 100px;
  border-bottom: 1px solid var(--line);
}
.sport-feature:nth-child(even) {
  background: var(--mist);
}
.sport-feature > * {
  min-width: 0;
}
.sport-feature:last-child {
  border-bottom: 0;
}
.sport-feature-odd .sport-feature-image {
  order: 2;
}
.sport-feature-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 18px 38px #082b3d1f;
}
.sport-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sport-feature-content {
  width: 100%;
  max-width: 480px;
}
.sport-feature-odd .sport-feature-content {
  justify-self: end;
}
.sport-number {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.sport-feature h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
}
.sport-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}
.site-footer {
  background: var(--blue);
  color: #fff;
  padding: 70px 0 22px;
}
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 28px;
  padding-bottom: 36px;
  border-bottom: 1px solid #ffffff22;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.footer-logo img {
  width: 180px;
  height: 84px;
  object-fit: contain;
}
.footer-contacts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  max-width: 720px;
}
.footer-contacts li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
}
.footer-contacts li span {
  color: #fff;
}
.footer-contacts li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.footer-social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #ffffff44;
  border-radius: 50%;
  background: #ffffff14;
  color: #fff;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.footer-links {
  max-width: 720px;
  width: 100%;
}
.footer-links .footer-menu,
.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
}
.footer-links a {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 22px 0 0;
  margin-top: 22px;
  text-align: center;
  font-size: 13px;
}
.footer-bottom p {
  margin: 0;
}
.footer-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  margin: 0;
}
.footer-efa-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  transition: opacity 0.2s ease;
}
.footer-efa-link:hover {
  opacity: 0.85;
}
.footer-efa-logo {
  height: 22px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-social-bottom {
  display: flex;
  gap: 8px;
}
.footer-social-bottom .social-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid #ffffff44;
  border-radius: 50%;
  background: #ffffff14;
  color: #fff;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.footer-social-bottom .social-icon:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.footer-social-bottom .social-icon svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
  }
  .main-navigation {
    display: none;
    grid-column: 1/-1;
    background: #06283df7;
    padding: 12px 0;
  }
  .main-navigation.active {
    display: block;
  }
  .header-menu {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .header-menu a {
    text-align: center;
  }
  .menu-toggle {
    display: block;
    background: #ffffff18;
    border: 1px solid #ffffff55;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    color: #fff;
  }
  .menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    margin: 4px auto;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sport-feature {
    gap: 28px;
  }
}
@media (max-width: 600px) {
  .container {
    width: min(100% - 28px, var(--max));
  }
  .header-inner {
    min-height: 70px;
  }
  .header-social {
    display: none;
  }
  .hero {
    min-height: 680px;
  }
  .hero-content {
    padding: 80px 0;
  }
  .hero h1 {
    font-size: clamp(40px, 12vw, 62px);
  }
  .hero p {
    font-size: 16px;
  }
  .section {
    padding: 68px 0;
  }
  .services-grid,
  .blog-grid,
  .events-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .image-grid-section {
    padding: 68px 0;
  }
  .image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 220px);
  }
  .sports-intro {
    padding-top: 116px;
    padding-bottom: 42px;
  }
  .sports-intro p {
    font-size: 16px;
  }
  .sport-feature {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding: 42px 0;
  }
  .sport-feature-odd .sport-feature-image {
    order: 0;
  }
  .sport-feature-content,
  .sport-feature-odd .sport-feature-content {
    max-width: none;
    justify-self: auto;
  }
}
.hero-lake {
  min-height: calc(100vh - 80px);
  overflow: hidden;
  background: #8ed4e4;
}
.hero-sky,
.hero-hills,
.hero-water {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-sky {
  z-index: -5;
  background: linear-gradient(180deg, #55b9d6 0%, #bcebf0 54%, #e9d49b 100%);
}
.hero-sun {
  position: absolute;
  z-index: -4;
  top: 15%;
  right: 17%;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #ffe4a2;
  box-shadow: 0 0 55px 15px rgba(255, 220, 125, 0.42);
}
.hero-cloud {
  position: absolute;
  z-index: -3;
  width: 180px;
  height: 42px;
  border-radius: 50px;
  background: #fff8e9aa;
  filter: blur(1px);
}
.hero-cloud:before,
.hero-cloud:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: inherit;
}
.hero-cloud:before {
  width: 75px;
  height: 75px;
  left: 25px;
  bottom: 0;
}
.hero-cloud:after {
  width: 95px;
  height: 95px;
  right: 22px;
  bottom: 0;
}
.hero-cloud-one {
  top: 23%;
  left: 8%;
}
.hero-cloud-two {
  top: 34%;
  right: 8%;
  transform: scale(0.7);
}
.hero-hills {
  z-index: -2;
  top: 53%;
  bottom: auto;
  height: 24%;
  background: linear-gradient(
    170deg,
    transparent 0 25%,
    #386b61 26% 45%,
    #214d4c 46% 100%
  );
  clip-path: polygon(
    0 54%,
    10% 34%,
    20% 52%,
    30% 20%,
    42% 50%,
    55% 30%,
    69% 55%,
    83% 24%,
    100% 48%,
    100% 100%,
    0 100%
  );
  opacity: 0.85;
}
.hero-water {
  z-index: -1;
  top: 67%;
  background: linear-gradient(180deg, #187f9b, #07536f);
}
.hero-water:after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    175deg,
    transparent 0 23px,
    #71c8ce33 24px 26px
  );
}
.water-line {
  position: absolute;
  height: 2px;
  background: #b5e4df99;
  border-radius: 50%;
  left: 8%;
  right: 25%;
  opacity: 0.6;
}
.water-line-one {
  top: 28%;
}
.water-line-two {
  top: 49%;
  left: 33%;
  right: 8%;
}
.water-line-three {
  top: 72%;
  left: 15%;
  right: 40%;
}
.hero-boat-wrap {
  position: absolute;
  z-index: 1;
  width: min(62vw, 760px);
  right: 4%;
  top: 43%;
  transform: rotate(-2deg);
  filter: drop-shadow(0 22px 16px #06283d55);
}
.hero-boat {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.boat-wake {
  position: absolute;
  bottom: -2%;
  left: 2%;
  width: 75%;
  height: 18px;
  background: #d8f1ed88;
  filter: blur(5px);
  border-radius: 50%;
}
.hero-buoy {
  position: absolute;
  z-index: 2;
  width: 12px;
  height: 38px;
  background: #f7c948;
  border-radius: 7px 7px 3px 3px;
  bottom: 18%;
  box-shadow: 0 0 0 4px #f7c94844;
}
.hero-buoy:after {
  content: "";
  position: absolute;
  width: 22px;
  height: 3px;
  left: -5px;
  top: 0;
  background: #fff;
}
.hero-buoy-one {
  left: 18%;
}
.hero-buoy-two {
  right: 27%;
  bottom: 25%;
  transform: scale(0.7);
}
.hero-mast {
  position: absolute;
  z-index: 0;
  bottom: 33%;
  left: 7%;
  width: 3px;
  height: 125px;
  background: #153e48;
  transform: rotate(18deg);
}
.hero-mast:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 3px;
  border-style: solid;
  border-width: 18px 0 18px 34px;
  border-color: transparent transparent transparent #f7c948cc;
}
.hero-lake:after {
  background: linear-gradient(
    90deg,
    #031c2bd9 0%,
    #031c2b59 43%,
    transparent 78%
  );
}
.hero-scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: #efffff;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-scroll-cue span {
  display: block;
  width: 1px;
  height: 28px;
  background: #f7c948;
  margin: 0 auto 8px;
}
@media (max-width: 900px) {
  .hero-boat-wrap {
    width: 78vw;
    right: -9%;
    top: 49%;
  }
  .hero-sun {
    width: 90px;
    height: 90px;
    right: 13%;
  }
  .hero-lake {
    min-height: calc(100vh - 70px);
  }
}
@media (max-width: 600px) {
  .hero-boat-wrap {
    width: 104vw;
    right: -24%;
    top: 53%;
  }
  .hero-hills {
    top: 58%;
    height: 18%;
  }
  .hero-water {
    top: 70%;
  }
  .hero-content {
    padding-top: 75px;
  }
  .hero-scroll-cue {
    display: none;
  }
}

/* ============================================
   PAGE: O CLUBE
   ============================================ */

.clube-intro {
  padding-top: 150px;
  padding-bottom: 58px;
  background: var(--mist);
}
.clube-intro .container {
  max-width: 780px;
  text-align: center;
}
.clube-intro h1 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
}
.clube-intro-lead {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.clube-section {
  padding: 92px 0;
  background: #fff;
}
.clube-section.clube-estrutura {
  background: var(--mist);
}
.clube-section.clube-funcionarios {
  background: var(--mist);
}

/* DIRETORIA GRID */
.diretoria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.diretoria-card {
  background: #fff;
  border-top: 3px solid var(--gold);
  border-radius: 5px;
  padding: 26px 24px;
  box-shadow: 0 12px 34px #082b3d12;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.diretoria-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px #082b3d1f;
}
.diretoria-role {
  display: inline-block;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.diretoria-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
}

/* ESTRUTURAS LIST */
.estruturas-list {
  max-width: 880px;
  margin: 0 auto 60px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px 28px;
}
.estruturas-list li {
  position: relative;
  padding: 14px 18px 14px 42px;
  background: #fff;
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 6px 18px #082b3d0a;
}
.estruturas-list li::before {
  content: "âœ“";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

/* GALLERY */
.clube-gallery {
  margin-top: 24px;
}
.clube-gallery .image-grid {
  grid-template-rows: 240px;
}

/* CONSELHOS */
.conselhos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  max-width: 980px;
  margin: 0 auto;
}
.conselho-block {
  background: #fff;
  padding: 34px 30px;
  border-radius: 5px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 12px 34px #082b3d12;
}
.conselho-block h3 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 22px;
  letter-spacing: -0.02em;
}
.conselho-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.conselho-list li {
  position: relative;
  padding: 10px 0 10px 24px;
  color: var(--ink);
  font-size: 15px;
  border-bottom: 1px solid var(--line);
}
.conselho-list li:last-child {
  border-bottom: 0;
}
.conselho-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* FUNCIONÁRIOS */
.funcionarios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.funcionario-card {
  background: #fff;
  padding: 26px 24px;
  border-radius: 5px;
  border-top: 3px solid var(--blue);
  box-shadow: 0 12px 34px #082b3d12;
  transition: transform 0.25s ease;
}
.funcionario-card:hover {
  transform: translateY(-3px);
}
.funcionario-card h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.funcionario-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}
.funcionario-card li {
  color: var(--muted);
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .clube-section {
    padding: 64px 0;
  }
  .clube-intro {
    padding-top: 130px;
    padding-bottom: 42px;
  }
  .conselhos-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .clube-gallery .image-grid {
    grid-template-rows: 200px;
  }
}
@media (max-width: 480px) {
  .diretoria-grid {
    grid-template-columns: 1fr;
  }
  .estruturas-list {
    grid-template-columns: 1fr;
  }
  .funcionarios-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PAGE: VELEJAR É PRECISO
   ============================================ */

.velejar-intro {
  padding-top: 150px;
  padding-bottom: 58px;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.velejar-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    175deg,
    transparent 0 23px,
    #71c8ce1a 24px 26px
  );
  pointer-events: none;
}
.velejar-intro .container {
  max-width: 780px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.velejar-intro h1 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
}
.velejar-intro-lead {
  max-width: 650px;
  margin: 0 auto;
  color: #c3d4da;
  font-size: 18px;
}

.velejar-section {
  padding: 92px 0;
  background: #fff;
}
.velejar-section.velejar-objetivos {
  background: var(--mist);
}

.velejar-content {
  max-width: 860px;
  margin: 0 auto;
}
.velejar-content p {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 18px;
}
.velejar-content p:last-child {
  margin-bottom: 0;
}
.velejar-content strong {
  color: var(--navy);
  font-weight: 700;
}

.velejar-gallery {
  margin-top: 60px;
}
.velejar-gallery .image-grid {
  grid-template-rows: 260px;
}

.objetivos-list {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.objetivos-list li {
  background: #fff;
  padding: 24px 26px;
  border-radius: 5px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 12px 34px #082b3d12;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.objetivos-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px #082b3d1f;
}
.objetivo-content h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.objetivo-content p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   PAGE: ARQUIVO (NOTÍCIAS / EVENTOS)
   ============================================ */

.archive-intro {
  padding-top: 150px;
  padding-bottom: 58px;
  background: var(--mist);
}
.archive-intro .container {
  max-width: 780px;
  text-align: center;
}
.archive-intro h1 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
}
.archive-intro p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}
.archive-list {
  background: #fff;
}
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.archive-card {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 12px 34px #082b3d12;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.archive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px #082b3d1f;
}
.archive-card-image {
  display: block;
  height: 220px;
  overflow: hidden;
  background: var(--navy);
}
.archive-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.archive-card-content {
  padding: 24px;
}
.archive-card-meta {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.archive-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.25;
}
.archive-card h3 a {
  color: inherit;
}
.archive-card p {
  color: var(--muted);
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.55;
}
.archive-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 0;
  color: var(--muted);
}
.archive-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.archive-pagination a,
.archive-pagination span {
  padding: 8px 14px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
}
.archive-pagination a:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.archive-pagination .current {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

@media (max-width: 900px) {
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .archive-grid { grid-template-columns: 1fr; }
  .archive-intro { padding-top: 130px; padding-bottom: 42px; }
}

@media (max-width: 768px) {
  .velejar-section {
    padding: 64px 0;
  }
  .velejar-intro {
    padding-top: 130px;
    padding-bottom: 42px;
  }
  .objetivos-list {
    grid-template-columns: 1fr;
  }
  .velejar-gallery .image-grid {
    grid-template-rows: 200px;
  }
}

/* ESTRUTURA ICONS */
.estruturas-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.estruturas-list li::before {
  content: none;
}
.estrutura-icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
}
.estrutura-icon svg {
  width: 12px;
  height: 12px;
}
.estrutura-label {
  flex: 1;
}

/* MOBILE ACCORDIONS */
.iate-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.iate-accordion-trigger-text {
  flex: 1;
  min-width: 0;
}
.iate-accordion-chevron {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  border-right: 1.5px solid var(--blue);
  border-bottom: 1.5px solid var(--blue);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  margin-top: -3px;
}
.iate-accordion-trigger[aria-expanded="true"] .iate-accordion-chevron {
  transform: rotate(-135deg);
  margin-top: 4px;
}
.iate-accordion-panel {
  overflow: hidden;
}

@media (min-width: 769px) {
  .iate-accordion-trigger {
    pointer-events: none;
    cursor: default;
  }
  .iate-accordion-chevron {
    display: none;
  }
  .iate-accordion-panel[hidden] {
    display: block !important;
  }
  .objetivos-list .iate-accordion-trigger {
    display: block;
  }
  .objetivos-list .iate-accordion-panel {
    display: block;
  }
  .diretoria-card .iate-accordion-trigger {
    display: block;
    margin-bottom: 0;
  }
  .diretoria-card .diretoria-role {
    margin-bottom: 12px;
  }
  .funcionario-card .iate-accordion-trigger,
  .conselho-block .iate-accordion-trigger {
    display: block;
  }
  .funcionario-card .iate-accordion-panel,
  .conselho-block .iate-accordion-panel {
    display: block;
  }
  .section-header .iate-section-reveal-toggle {
    display: none;
  }
  .iate-section-reveal[hidden] {
    display: block !important;
  }
}

@media (max-width: 768px) {
  .objetivos-list li,
  .diretoria-card,
  .funcionario-card,
  .conselho-block {
    transform: none !important;
  }
  .objetivos-list li:hover,
  .diretoria-card:hover,
  .funcionario-card:hover {
    transform: none;
  }
  .objetivos-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .objetivos-list li {
    padding: 10px 14px;
    box-shadow: 0 4px 12px #082b3d0a;
  }
  .diretoria-grid {
    gap: 8px;
  }
  .diretoria-card {
    padding: 10px 14px;
    box-shadow: 0 4px 12px #082b3d0a;
  }
  .diretoria-role {
    margin-bottom: 0;
    font-size: 10px;
    letter-spacing: 0.1em;
  }
  .conselhos-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .conselho-block {
    padding: 10px 14px;
    box-shadow: 0 4px 12px #082b3d0a;
  }
  .conselho-block .iate-accordion-trigger h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.25;
  }
  .funcionarios-grid {
    gap: 8px;
  }
  .funcionario-card {
    padding: 10px 14px;
    box-shadow: 0 4px 12px #082b3d0a;
  }
  .funcionario-card .iate-accordion-trigger h3 {
    margin: 0;
    font-size: 15px;
    line-height: 1.25;
  }
  .iate-accordion-trigger {
    min-height: 0;
    padding: 0;
    gap: 8px;
  }
  .iate-accordion-chevron {
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
  }
  .objetivos-list .objetivo-content h3,
  .objetivos-list .iate-accordion-trigger h3 {
    margin: 0;
    font-size: 15px;
    line-height: 1.25;
  }
  .objetivos-list .iate-accordion-panel {
    padding-top: 6px;
  }
  .objetivos-list .objetivo-content p {
    font-size: 14px;
    line-height: 1.5;
  }
  .diretoria-card .iate-accordion-panel h3 {
    margin: 0;
    color: var(--navy);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
  }
  .conselho-block .iate-accordion-panel {
    padding-top: 8px;
  }
  .funcionario-card .iate-accordion-panel {
    padding-top: 8px;
  }
  .estruturas-list {
    gap: 8px;
    margin-bottom: 16px;
  }
  .estruturas-list li {
    padding: 8px 12px;
    font-size: 14px;
  }
  .iate-estrutura-expand {
    max-width: 880px;
    margin: 0 auto 40px;
  }
  .iate-estrutura-expand.is-collapsed .estruturas-list li:nth-child(n+7) {
    display: none;
  }
  .iate-estrutura-expand .estruturas-list {
    margin-bottom: 0;
  }
  .iate-btn-ghost {
    display: block;
    width: fit-content;
    margin: 16px auto 0;
    padding: 10px 20px;
    border: 1px solid var(--blue);
    border-radius: 5px;
    background: transparent;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
  }
  .iate-btn-ghost:hover {
    color: var(--navy);
    border-color: var(--navy);
  }
}
/* WhatsApp floating button */
.iate-whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.iate-whatsapp-float__toggle {
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.iate-whatsapp-float__toggle svg {
  width: 28px;
  height: 28px;
}
.iate-whatsapp-float__toggle:hover {
  transform: scale(1.05);
  background: #1ebe57;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
}
.iate-whatsapp-float__toggle:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
}
.iate-whatsapp-float__popover {
  width: min(280px, calc(100vw - 40px));
  padding: 14px 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(6, 40, 61, 0.18);
  transform-origin: bottom right;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.iate-whatsapp-float.is-open .iate-whatsapp-float__popover {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.iate-whatsapp-float__title {
  margin: 0 4px 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.iate-whatsapp-float__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.iate-whatsapp-float__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
  background: var(--mist);
  transition: background 0.2s ease, color 0.2s ease;
}
.iate-whatsapp-float__item:hover {
  background: #e8f8ee;
  color: var(--navy);
}
.iate-whatsapp-float__label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}
.iate-whatsapp-float__number {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.35;
}
@media (max-width: 640px) {
  .iate-whatsapp-float {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  }
  .iate-whatsapp-float__toggle {
    width: 52px;
    height: 52px;
  }
}