@charset "UTF-8";
@font-face {
  font-family: "Glory";
  src: url("/css/Fonts/Glory-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --purple: #811D5E;
  --red: #FD2F24;
  --blue: #36A9E1;
  --yellow: #F9B233;
  --white: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Glory", system-ui, sans-serif;
  color: #222;
  background: #fff;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

.wrap {
  max-width: 1440px;
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  z-index: 100;
  background: var(--purple);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 6px 6px;
  font-size: 13px;
  font-weight: 700;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

.social-dot {
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  transition: transform 0.2s ease, background 0.2s ease;
}
.social-dot:hover {
  transform: translateY(-2px);
}
.social-dot svg {
  width: 12px;
  height: 12px;
  fill: var(--purple);
}

.topbar {
  background: var(--yellow);
  position: relative;
  overflow: visible;
  z-index: 5;
  height: 40px;
}
@media (max-width: 560px) {
  .topbar {
    z-index: 100;
  }
}
.topbar-inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 28px;
  position: relative;
  z-index: 2;
}
@media (max-width: 560px) {
  .topbar-inner {
    flex-wrap: nowrap;
    row-gap: 6px;
    padding: 8px 16px;
  }
}
.topbar-left {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: var(--purple);
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.topbar-left b {
  font-weight: 700;
  font-size: 15px;
}
@media (max-width: 659px) {
  .topbar-left {
    font-size: 9.5px;
    gap: 4px;
    flex-shrink: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .topbar-left b {
    font-size: 9px;
  }
}
@media (max-width: 560px) {
  .topbar-left .sep {
    display: none;
  }
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
@media (max-width: 560px) {
  .topbar-right {
    gap: 8px;
  }
  .topbar-right .social-dot {
    width: 20px;
    height: 20px;
  }
  .topbar-right .social-dot svg {
    width: 10px;
    height: 10px;
  }
}
.topbar-blob {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 36px;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 560px) {
  .topbar-blob {
    display: none;
  }
}

.topbar-right .social-dot {
  border: none;
  width: auto;
  height: auto;
}

.topbar-right .social-dot img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.header-decoration {
  position: absolute;
  top: -6px;
  right: -50px;
  width: 200px;
  max-width: none;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 560px) {
  .header-decoration {
    display: none;
  }
}

.lang {
  position: relative;
  margin-left: 100px;
}
@media (max-width: 560px) {
  .lang {
    margin-left: 2px;
  }
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}
@media (max-width: 659px) {
  .lang-toggle {
    font-size: 10px;
  }
}

@media (max-width: 560px) {
  .lang-arrow {
    display: none;
  }
}

.lang-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 6px 0;
  min-width: 60px;
  display: none;
  z-index: 999; /* era 20 — subimos bem alto para garantir que fica por cima de tudo */
}

.lang-menu.open {
  display: block;
}

.lang-menu a {
  display: block;
  padding: 8px 16px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.lang-menu a:hover,
.lang-menu a.active {
  background: var(--yellow);
}

header {
  background: var(--purple);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 560px) {
  header {
    z-index: 99;
  }
}

.header-inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 28px;
  position: relative;
  z-index: 3;
  height: 160px;
}
@media (max-width: 560px) {
  .header-inner {
    padding: 12px 18px;
  }
}
@media (max-width: 659px) {
  .header-inner {
    flex-wrap: wrap;
    height: auto;
    row-gap: 10px;
  }
}

.logo-block {
  flex: 0 1 auto;
  min-width: 90px;
}
@media (max-width: 659px) {
  .logo-block {
    flex: 1 0 100%;
    display: flex;
    justify-content: center;
  }
}
.logo-block img {
  height: auto;
  max-height: 160px;
  width: auto;
  max-width: 100%;
}
@media (max-width: 980px) {
  .logo-block img {
    max-height: 100px;
  }
}
@media (max-width: 560px) {
  .logo-block img {
    max-height: 150px;
  }
}

.countdown {
  display: flex;
  gap: clamp(4px, 0.9vw, 10px);
  flex: 0 0 auto;
}
@media (max-width: 659px) {
  .countdown {
    justify-content: center;
    gap: clamp(6px, 2vw, 10px);
    flex: 1 0 100%;
  }
}
.countdown .cd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.countdown .cd-circle {
  width: clamp(32px, 4vw, 52px);
  height: clamp(32px, 4vw, 52px);
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: clamp(15px, 2.2vw, 28px);
}
.countdown .cd-label {
  font-size: clamp(6.5px, 0.7vw, 9px);
  letter-spacing: 0.06em;
  color: #fff;
  padding-top: 3px;
  font-weight: 400;
}

nav.main-nav {
  display: flex;
  flex: 1 1 auto;
  justify-content: flex-start;
  margin-left: 80px;
}
nav.main-nav a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.03em;
  white-space: nowrap;
  position: relative;
  padding-bottom: 4px;
  margin-right: 50px;
}
nav.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.2s ease;
}
nav.main-nav a:hover::after, nav.main-nav a.active::after {
  width: 100%;
}
@media (max-width: 980px) {
  nav.main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 240px;
    background: var(--purple);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 26px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 50;
  }
  nav.main-nav.open {
    transform: translateX(0);
  }
}
@media (max-width: 560px) {
  nav.main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 240px;
    background: var(--purple);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 26px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 50;
  }
  nav.main-nav.open {
    transform: translateX(0);
  }
}

.burger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 60;
}
@media (max-width: 980px) {
  .burger {
    display: block;
  }
}
@media (max-width: 560px) {
  .burger {
    display: block;
  }
}
@media (max-width: 659px) {
  .burger {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
  }
}

.hero {
  display: grid;
  grid-template-columns: 12% 76% 12%;
  height: min(52vw, 620px);
  min-height: 280px;
}

.hero-side {
  position: relative;
  overflow: hidden;
}

.hero-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-main {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1), transparent 55%), linear-gradient(135deg, #6f2c7d 0%, #3f6fa8 45%, #36A9E1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-main .grain {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 5px 5px;
  opacity: 0.35;
}

.hero-sand {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(233, 196, 144, 0) 0%, rgba(224, 187, 132, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 0 20px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.hero-play-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.15) 60%);
  cursor: pointer;
  transition: background 0.2s ease;
}

.hero-play-overlay:hover {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25) 60%);
}

.hero-play-overlay:hover .play-btn {
  transform: scale(1.06);
}

.play-btn {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 2px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
  transition: transform 0.2s ease;
}

.play-btn svg {
  width: 26px;
  height: 26px;
  fill: #fff;
  margin-left: 4px;
}

.hero-content h1 {
  font-size: clamp(24px, 4.2vw, 54px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-content p {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
}

.hero-ball {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  top: 18%;
  left: 20%;
  background: radial-gradient(circle at 35% 30%, #fff 0%, #ffd7b0 20%, var(--red) 55%, #8a1010 100%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  opacity: 0.9;
}

/* -------------------- responsive -------------------- */
@media (max-width: 980px) {
  .hero {
    display: block;
    height: auto;
  }
  .hero-main {
    height: min(80vw, 420px);
  }
  .hero-side {
    display: none;
  }
}
@media (max-width: 560px) {
  .hero-content h1 {
    font-size: 22px;
  }
}
/* ==========================================================================
   NEWS BANNER — faixa azul "News / Don't miss the latest" + onda
   ========================================================================== */
.news-banner {
  background: var(--blue);
  position: relative;
  padding: 26px 28px 26px;
}

.news-banner-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.news-banner h2 {
  color: #fff;
  font-size: 26px;
  font-weight: 800;
}
@media (max-width: 560px) {
  .news-banner h2 {
    font-size: 22px;
  }
}

.news-banner span {
  color: #fff;
  font-size: 26px;
  font-weight: 400;
  opacity: 0.95;
}
@media (max-width: 560px) {
  .news-banner span {
    font-size: 22px;
  }
}

.wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -43px;
  height: 44px;
  background-image: url("/images/beachGames27/news-wave-tile.svg");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 44px;
  z-index: 1;
}

.news-section {
  background: #fff;
  padding: 40px 28px 130px;
}

.news-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  position: relative;
  padding-top: 56px;
}

.news-card {
  position: relative;
}

.card-blobs {
  position: relative;
  height: 84px;
}

.blob-petal {
  position: absolute;
  top: 20px;
  left: 15%;
  width: 74%;
  height: 150px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 1;
}

.blob-oval {
  position: absolute;
  top: 26px;
  right: 35px;
  width: 100px;
  height: 88px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}

.blob-oval span {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.news-card.accent-1 .blob-petal {
  background-image: url("/images/beachGames27/yellow-oval-news.svg");
}

.news-card.accent-2 .blob-petal {
  background-image: url("/images/beachGames27/red-oval-news.svg");
}

.news-card.accent-3 .blob-petal {
  background-image: url("/images/beachGames27/purple-oval-news.svg");
}

.news-card.accent-4 .blob-petal {
  background-image: url("/images/beachGames27/blue-oval-news.svg");
}

/* ---- foto ---- */
.card-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #e7e7e7;
}

.card-photo img {
  width: 80%;
  height: 40%;
  object-fit: cover;
  margin-left: 57px;
}

.card-photo.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e9e9ee, #dcdce4);
}

.card-photo.placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.35;
}

.card-text {
  position: relative;
  overflow: hidden;
  padding: 30px 24px 30px 20px;
  width: 75%;
  aspect-ratio: 1/1.15;
  margin-left: 46px;
}

.card-text::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 90% 90%;
  z-index: 0;
}

.card-text p {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  margin: 0;
  padding-right: 15%;
  word-wrap: break-word;
}

.news-card.accent-1 .blob-oval {
  background-image: url("/images/beachGames27/purple-date.svg");
}

.news-card.accent-2 .blob-oval {
  background-image: url("/images/beachGames27/blue-date.svg");
}

.news-card.accent-3 .blob-oval {
  background-image: url("/images/beachGames27/red-date.svg");
}

.news-card.accent-4 .blob-oval {
  background-image: url("/images/beachGames27/yellow-date.svg");
}

.news-card.accent-1 .card-text::before {
  background-image: url("/images/beachGames27/red-news.svg");
}

.news-card.accent-2 .card-text::before {
  background-image: url("/images/beachGames27/purple-news.svg");
}

.news-card.accent-3 .card-text::before {
  background-image: url("/images/beachGames27/blue-news.svg");
}

.news-card.accent-4 .card-text::before {
  background-image: url("/images/beachGames27/red-news.svg");
}

/* -------------------- responsive -------------------- */
@media (max-width: 980px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
  .news-dashline {
    display: none;
  }
}
@media (max-width: 560px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  .card-photo img {
    margin-left: 0;
    width: 100%;
  }
  .card-text {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
footer {
  background: var(--purple);
  position: relative;
  padding-top: 44px;
}
@media (max-width: 560px) {
  footer {
    padding-top: 0;
  }
}

.footer-wave {
  position: absolute;
  top: -43px;
  left: 0;
  right: 0;
  height: 44px;
  background-image: url("/images/beachGames27/footer-wave-tile.svg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% 44px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: flex-start;
  padding: 0 28px 46px;
}

.footer-col {
  flex: 1 1 160px;
  max-width: 200px;
}

.footer-logo {
  flex: 0 0 220px;
  max-width: none;
}

.footer-logo img {
  height: 200px;
  width: auto;
  max-width: none;
  margin-bottom: 4px;
}

.footer-col h4 {
  color: var(--yellow);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

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

.footer-col li {
  margin-bottom: 9px;
}

.footer-col a {
  color: #fff;
  font-size: 15px;
  opacity: 0.9;
}

.footer-col a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  flex: 0 0 auto;
  margin-left: auto;
}

.footer-social .social-dot img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-right: 500px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.cijm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-right: 50px;
  margin-top: -40px;
}

.cijm img {
  width: 80px;
  height: auto;
}

.footer-squiggle {
  position: absolute;
  right: 30%;
  bottom: 0;
  width: 150px;
  pointer-events: none;
}

/* ---- parceiros ---- */
.footer-partners {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 28px;
}

.footer-partners h4 {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.footer-partners-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}

.footer-partner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-partner-single img {
  max-height: 40px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
}

.footer-partner:hover {
  opacity: 1;
}

.footer-partner img {
  max-height: 100%;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.9;
}

.footer-partner:hover img {
  filter: none;
  opacity: 1;
}

@media (max-width: 980px) {
  .footer-inner {
    gap: 30px;
  }
  .footer-right {
    align-items: flex-start;
  }
}
@media (max-width: 560px) {
  .footer-squiggle {
    width: 100px;
    right: 4%;
  }
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px 40px;
    gap: 28px;
  }
  .footer-logo {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
  }
  .footer-col {
    max-width: none;
    width: 100%;
    flex: 0 0 auto;
  }
  .footer-right {
    align-items: center;
    width: 100%;
    margin-left: 0;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-social .social-dot img {
    margin-right: 0px;
  }
  .cijm {
    margin-right: 0;
    margin-top: 0;
    align-self: center;
  }
}
.sports-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px 24px;
  padding: 48px 28px 80px;
}

.sport-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  color: var(--purple);
}

.sport-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.sport-card:hover img {
  transform: translateY(-4px) scale(1.06);
}

.sport-card-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 80px;
}

.sport-card-blob {
  position: absolute;
  inset: 0;
  background: var(--purple);
  border-radius: 58% 42% 65% 35%/55% 60% 40% 45%;
  transform: rotate(-6deg);
  z-index: 0;
}

.sport-card-icon img {
  position: relative;
  z-index: 1;
}

.sport-card-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--red);
}

@media (max-width: 980px) {
  .sports-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .sports-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }
}
.venue-banner {
  background: var(--blue);
  position: relative;
  padding: 26px 28px 26px;
}

.venue-banner-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.venue-banner-inner h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.venue-banner .wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -43px;
  height: 44px;
  background-image: url("/images/beachGames27/news-wave-tile.svg");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 44px;
  z-index: 1;
}

.venue-banner-rows {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 64px 28px 40px;
}

.venue-row .sports-grid {
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
  gap: 28px 20px;
}

.venue-plain {
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 28px 8px;
}

.venue-plain h2 {
  color: var(--blue);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.venue-plain .sports-grid {
  grid-template-columns: repeat(3, 1fr);
  padding: 0 0 40px;
  gap: 28px 20px;
}

@media (max-width: 980px) {
  .venue-banner-inner,
  .venue-banner-rows {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .venue-row .sports-grid,
  .venue-plain .sports-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .venue-row .sports-grid,
  .venue-plain .sports-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.sport-banner {
  background: var(--blue);
  position: relative;
  padding: 26px 28px 26px;
}

.sport-banner h1 {
  max-width: 1440px;
  color: #fff;
  font-size: 35px;
  font-weight: 400;
  margin-left: 40px;
}

.sport-banner .wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -43px;
  height: 44px;
  background-image: url("/images/beachGames27/news-wave-tile.svg");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 44px;
  z-index: 1;
}

.sport-detail {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 28px 100px;
}

.sport-detail-heading {
  display: flex;
  align-items: center;
  gap: 24px;
}

.sport-detail-icon-wrap {
  position: relative;
  width: 150px;
  height: 130px;
  flex-shrink: 0;
}

.sport-detail-icon-blob {
  position: absolute;
  inset: 0;
  background-image: url("/images/beachGames27/purple-oval-with-stars.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.sport-detail-icon-wrap img {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 42%;
  transform: translate(-40%, -60%);
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.sport-detail-content h2 {
  color: var(--red);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 0;
}

.sport-detail-body p {
  color: #333;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.sport-detail-body p:last-child {
  margin-bottom: 0;
}

.sport-detail-media {
  position: relative;
  aspect-ratio: 4/3;
}

.sport-detail-media-blob {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 0;
}

.sport-detail-media-blob.blob-1 {
  width: 40%;
  height: 56%;
  top: 0%;
  background-image: url("/images/beachGames27/red-oval.svg");
}

.sport-detail-media-blob.blob-2 {
  width: 46%;
  height: 62%;
  bottom: -4%;
  right: -5%;
  background-image: url("/images/beachGames27/yellow-oval.svg");
}

.sport-detail-media-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.sport-detail-media-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-mask-image: url("/images/beachGames27/oval-for-image.svg");
  mask-image: url("/images/beachGames27/oval-for-image.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.sport-detail-squiggle {
  position: absolute;
  right: 5%;
  bottom: -8%;
  width: 110px;
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 980px) {
  .sport-detail {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 24px 70px;
  }
  .sport-detail-media {
    order: -1;
    aspect-ratio: 16/10;
  }
  .sport-detail-squiggle {
    width: 50px;
    right: 10%;
    bottom: 2%;
  }
  .sport-detail-media-blob.blob-2 {
    bottom: 2%;
    right: 3%;
  }
  .sport-detail-media-blob.blob-1 {
    top: 15%;
    left: 4%;
  }
  .sport-detail-icon-wrap {
    width: 100px;
  }
}
.venues-hardcoded {
  --v-blue: #3FA9D6;
  --v-blue-dark: #2C8EBB;
  --v-sand: #FBF8F3;
  color: #1F2A33;
  background: var(--v-sand);
}

.venues-hardcoded .banner {
  position: relative;
  background: #36a9e0;
  padding: 34px 6vw 0;
  display: flex;
  flex-wrap: wrap;
  gap: 200px;
  z-index: 1;
}

.venues-hardcoded .banner h1 {
  color: #fff;
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 600;
  margin: 0;
}

.venues-hardcoded .banner .location {
  flex: 1 1 320px;
  max-width: 480px;
}

.venues-hardcoded .banner .location:last-child {
  text-align: right;
}

.venues-hardcoded .wave {
  width: 100%;
  height: 48px;
  position: relative;
  margin-top: -2px;
  z-index: 2;
  background-image: url("/images/beachGames27/news-wave-tile.svg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% 48px;
}

.venues-hardcoded main {
  margin: 0 auto;
  padding: 30px 6vw 70px;
}

.venues-hardcoded .venue-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
  margin-top: 60px;
}

.venues-hardcoded .venue-row.no-header .venue-col h2 {
  color: var(--v-blue-dark);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  margin: 0 0 22px;
}

@media (max-width: 720px) {
  .venues-hardcoded .venue-row {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .venues-hardcoded .banner .location:last-child {
    text-align: left;
  }
}
.venues-hardcoded .icon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 18px;
}

.venues-hardcoded .sport {
  width: 110px;
  text-align: center;
  margin: 0;
}
@media (max-width: 560px) {
  .venues-hardcoded .sport {
    width: 100px;
  }
}

.venues-hardcoded .sport-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.venues-hardcoded .sport-link:hover {
  transform: translateY(-4px);
}

.venues-hardcoded .sport svg {
  width: 100%;
  height: auto;
  display: block;
}

.venues-hardcoded .sport figcaption {
  margin-top: 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}

.venues-hardcoded .sport-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 84px;
  margin: 0 auto;
}

.venues-hardcoded .sport-icon-blob {
  position: absolute;
  inset: 0;
  background-image: url("/images/beachGames27/purple-oval.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 0;
}

.venues-hardcoded .sport-icon-wrap img {
  position: relative;
  z-index: 1;
  width: 100px;
  height: 130px;
  object-fit: contain;
  padding-bottom: 35px;
  padding-right: 20px;
}

.venues-hardcoded .venue-col h2.show-mobile {
  display: none;
  color: var(--v-blue-dark);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  margin: 0 0 22px;
}

@media (max-width: 720px) {
  .venues-hardcoded .banner .location.hide-mobile {
    display: none;
  }
  .venues-hardcoded .venue-col h2.show-mobile {
    display: block;
    margin-bottom: 30px;
  }
}
.about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 28px 70px;
  overflow-x: hidden;
}

.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 10px;
}

.about-row:last-child {
  margin-bottom: 0;
}

.about-row-reverse .about-image {
  order: 1;
}

.about-row-reverse .about-body {
  order: 2;
}

.about-body {
  color: #333;
  font-size: 15px;
  line-height: 1.75;
}

.about-body p {
  margin-bottom: 18px;
}

.about-body p:last-child {
  margin-bottom: 0;
}

.about-image {
  position: relative;
}

.about-image-photo {
  position: relative;
  z-index: 1;
  aspect-ratio: 4/3;
}

.about-image-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-mask-image: url("/images/beachGames27/oval-for-image.svg");
  mask-image: url("/images/beachGames27/oval-for-image.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.about-image-blob {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 0;
}

.about-image-blob.blob-red {
  width: 42%;
  height: 58%;
  top: 20px;
  background-image: url("/images/beachGames27/red-oval.svg");
}

.about-image-blob.blob-yellow {
  width: 46%;
  height: 60%;
  bottom: 5%;
  right: -2%;
  background-image: url("/images/beachGames27/yellow-oval.svg");
  z-index: 2;
}

.about-image-blob.blob-pink {
  width: 44%;
  height: 60%;
  top: 10%;
  left: -3%;
  background-image: url("/images/beachGames27/pink-oval.svg");
}

.about-image-blob.blob-blue {
  width: 44%;
  height: 58%;
  bottom: 15%;
  right: -4%;
  background-image: url("/images/beachGames27/blue-oval.svg");
}

.about-image-detail {
  position: absolute;
  width: var(--detail-width, 80px);
  z-index: var(--detail-z, 2);
  pointer-events: none;
}

.about-image-detail.detail-red {
  right: 4%;
  bottom: 10%;
}

.about-image-detail.detail-blue {
  left: 10%;
  top: 3%;
}

.about-image-wave {
  position: absolute;
  left: var(--wave-left, 0);
  width: var(--wave-width, 100%);
  z-index: var(--wave-z, 2);
  pointer-events: none;
}

.about-image-wave.wave-yellow {
  bottom: 20%;
  left: 40%;
}

.about-image-wave.wave-red {
  bottom: 5%;
  left: 40%;
  z-index: -1;
}

@media (max-width: 780px) {
  .about-row {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
  }
  .about-row-reverse .about-body {
    order: 1;
  }
  .about-row-reverse .about-image {
    order: 2;
  }
  .about-image {
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
  }
  .about-body {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    overflow-wrap: break-word;
    word-break: break-word;
  }
}
.venues-map-page {
  background: #ffffff;
  position: relative;
}
.venues-map-page .venues-header {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 28px 30px;
}
.venues-map-page .venues-header h2 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  color: var(--purple);
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.venues-map-page .venues-header h2 span {
  font-weight: 400;
  color: var(--red);
  font-size: clamp(22px, 2.5vw, 30px);
}
.venues-map-page .venues-map-image {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 27px;
}
.venues-map-page .venues-map-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

@media (max-width: 560px) {
  .venues-map-page .venues-header {
    padding: 30px 20px 20px;
  }
  .venues-map-page .venues-header h2 {
    gap: 8px;
    flex-direction: column;
  }
  .venues-map-page .venues-map-image {
    height: 260px;
  }
  .venues-map-page .venues-map-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
.contacts-page {
  background-color: var(--purple);
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}

.contacts-banner {
  background: var(--blue);
  position: relative;
  padding: 26px 28px 0;
  z-index: 10;
}
.contacts-banner h1 {
  max-width: 1440px;
  margin: 0 auto;
  color: #fff;
  font-size: 35px;
  font-weight: 400;
  margin-left: 40px;
}

.contacts-top-wave {
  position: relative;
  height: 44px;
  width: 100%;
  background-image: url("/images/beachGames27/news-wave-tile.svg");
  background-repeat: repeat-x;
  background-position: left top;
  background-size: auto 44px;
  z-index: 9;
  margin-top: -1px;
  pointer-events: none;
}

.contacts-main {
  position: relative;
  padding: 100px 28px 180px;
  z-index: 1;
}

.contacts-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 4;
}

.contacts-photo {
  flex-shrink: 0;
  width: 320px;
  aspect-ratio: 1.1/1;
}
.contacts-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: url("/images/beachGames27/oval-for-image.svg");
  mask-image: url("/images/beachGames27/oval-for-image.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.contacts-text {
  max-width: 500px;
  color: #fff;
}
.contacts-text h2, .contacts-text h3 {
  margin: 0;
  font-weight: 500;
}
.contacts-text h2 {
  color: #fd3169;
  font-size: 28px;
  margin-bottom: 4px;
  max-width: 300px;
}
.contacts-text p {
  font-size: 15px;
  line-height: 1.6;
}

.contacts-social {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}
.contacts-social .social-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  background-color: transparent;
  border-radius: 0;
  transition: transform 0.2s ease;
}
.contacts-social .social-dot:hover {
  transform: translateY(-4px);
}
.contacts-social .social-dot img, .contacts-social .social-dot svg {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.dec-blue {
  position: absolute;
  right: 21%;
  top: 36%;
  width: 90px;
  z-index: 3;
}

.dec-sun {
  position: absolute;
  right: 15%;
  bottom: 0px;
  width: 650px;
  max-width: 70vw;
  z-index: 2;
  pointer-events: none;
}

.contacts-red-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  height: 190px;
  background-image: url("/images/beachGames27/wave-red-contact.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  z-index: 5;
  pointer-events: none;
}

@media (max-width: 980px) {
  .contacts-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .dec-blue {
    top: 80%;
    width: 48px;
  }
  .contacts-main {
    padding-bottom: 220px;
  }
  .contacts-red-wave {
    height: 120px;
  }
}
@media (max-width: 560px) {
  .contacts-photo {
    width: 100%;
    max-width: 280px;
  }
}
/* ==========================================================================
   NEWS DETAIL — página de uma notícia individual
   (mesmos valores do .sport-banner / .sport-detail no _sports.scss,
   sem o bloco do ícone e sem título na faixa azul)
   ========================================================================== */
.news-detail-banner {
  background: var(--blue);
  position: relative;
  padding: 26px 28px 26px;
}

.news-detail-banner .wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -43px;
  height: 44px;
  background-image: url("/images/beachGames27/news-wave-tile.svg");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 44px;
  z-index: 1;
}

.news-detail {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 80px 28px 100px;
}

.news-detail-content h2 {
  color: var(--red);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 0;
}

.news-detail-body p {
  color: #333;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.news-detail-body p:last-child {
  margin-bottom: 0;
}

.news-detail-media {
  position: relative;
  aspect-ratio: 4/3;
}

.news-detail-media-blob {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 0;
}

.news-detail-media-blob.blob-2 {
  width: 46%;
  height: 62%;
  bottom: -10%;
  right: -25%;
  background-image: url(/images/beachGames27/yellow-oval.svg);
  z-index: 2;
}

.news-detail-media-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.news-detail-media-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.news-detail-squiggle {
  position: absolute;
  right: 5%;
  bottom: -8%;
  width: 110px;
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 980px) {
  .news-detail {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 24px 70px;
  }
  .news-detail-media {
    order: -1;
    aspect-ratio: 16/10;
  }
  .news-detail-media-blob.blob-2 {
    width: 30%;
    height: 60%;
    bottom: -10%;
    right: -6%;
  }
  .news-detail-squiggle {
    width: 70px;
  }
}

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