@charset "UTF-8";
/* ============================================================
   @font-face – Roca
   ============================================================ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Header height offset */
}

/* Light (300) */
@font-face {
  font-family: "Roca";
  src: url("assets/fonts/roca/Roca-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roca";
  src: url("assets/fonts/roca/Roca-Light Italic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
/* Regular (400) */
@font-face {
  font-family: "Roca";
  src: url("assets/fonts/roca/Roca-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roca";
  src: url("assets/fonts/roca/Roca-Regular-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
/* Bold (700) */
@font-face {
  font-family: "Roca";
  src: url("assets/fonts/roca/Roca-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roca";
  src: url("assets/fonts/roca/Roca-Bold Italic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
/* Black (900) */
@font-face {
  font-family: "Roca";
  src: url("assets/fonts/roca/Roca Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-black: #000000;
  --color-gray-h: #3A3531;
  --color-gray-p1: #716D6A;
  --color-gray-p2: #888684;
  --color-gray-stroke: #C4C3C2;
  --color-gray-bg-1: #E7E7E6;
  --color-gray-bg-2: #F4F3F3;
  --color-gold-10: #B08E30;
  --color-gold-20: #C0A256;
}

/* Breakpoints para Responsividade */
/* Mixin de media query */
/* Resets e configurações iniciais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Custom Scrollbar Styles Global */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #E7E7E6; /* var(--color-gray-bg-1) */
}

::-webkit-scrollbar-thumb {
  background-color: #C0A256; /* var(--color-gold-20) */
  border-radius: 6px;
  border: 3px solid #E7E7E6;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #B08E30; /* var(--color-gold-10) */
}

html, body {
  scrollbar-width: thin;
  scrollbar-color: #C0A256 #E7E7E6;
}

body {
  font-family: "Roca", Helvetica, sans-serif;
  background-color: var(--color-gray-bg-2);
  color: var(--color-gray-p1);
  overflow-x: hidden;
  padding-top: 72px; /* Header height */
}

p {
  font-family: "Helvetica", sans-serif;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.5;
  font-weight: 400;
}

.section-header h2 {
  color: var(--color-gray-h);
  font-family: "Roca", sans-serif;
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.25;
  letter-spacing: -1.8px;
  font-weight: 800;
}

.btn {
  padding: 12px 20px;
  text-transform: uppercase;
  font-family: "Roca", sans-serif;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 20px;
  text-align: center;
  border-radius: 0px;
  transition: all 0.3s ease;
}

.btn-gray {
  background-color: var(--color-gray-h);
  color: #fff;
  border: none;
}
.btn-gray:hover {
  background-color: var(--color-gray-p1);
  color: #fff;
}

.btn-outline {
  background-color: transparent;
  color: var(--color-gray-h);
  border: 1px solid var(--color-gray-h);
}
.btn-outline:hover {
  background-color: var(--color-gray-h);
  color: #fff;
}

.btn-gold {
  background-color: var(--color-gold-10);
  font-family: "Helvetica", sans-serif;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.btn-gold:hover {
  background-color: var(--color-gold-20);
  color: #fff;
}

.divider-gold {
  width: 80px;
  height: 3px;
  background-color: var(--color-gold-10);
}

/* Container principal responsivo */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 9;
}
@media (min-width: 1440px) {
  .container {
    max-width: 1220px;
    padding: 0;
  }
}

/* Header */
header {
  background-color: var(--color-black);
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-nav ul li a, .header-nav-mobile ul li a {
  position: relative;
  text-decoration: none;
  font-family: "Helvetica", sans-serif;
}
.header-nav ul li a::after, .header-nav-mobile ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 3px;
  background-color: currentColor;
  transition: width 0.8s ease-out;
}
.header-nav ul li a:hover::after, .header-nav ul li a.active::after, .header-nav-mobile ul li a:hover::after, .header-nav-mobile ul li a.active::after {
  width: 100%;
}

.hero {
  padding: 40px 0;
  background-color: #D5D5D5;
  position: relative;
  overflow: hidden;
}
.hero .grade-2 {
  position: absolute;
  top: 0;
  left: calc(100% + 60px);
  z-index: 0;
}
.hero .bolas {
  position: absolute;
  bottom: 50px;
  right: 0;
  z-index: 0;
}
.hero .hero-content {
  gap: clamp(32px, 6vw, 77px);
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .hero .hero-content {
    gap: 10;
    flex-wrap: nowrap;
  }
}
.hero .hero-content .hero-content-left {
  z-index: 9;
  max-width: 534px;
  width: 100%;
}
.hero .hero-content .hero-content-left .content-inner {
  margin-bottom: 48px;
}
.hero .hero-content .hero-content-left .content-inner h1 {
  color: var(--color-gray-h);
  font-family: "Roca", sans-serif;
  font-style: normal;
  font-size: clamp(32px, 8vw, 66px);
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: -1.8px;
}
.hero .hero-content .hero-content-left .content-inner h1 strong {
  font-weight: 800;
}
.hero .hero-content .hero-content-right {
  z-index: 9;
}

.about {
  position: relative;
  padding: clamp(60px, 12vw, 190px) 0px;
  background-color: #fff;
}
.about .grade-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
}
.about .about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .about .about-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .about .about-content .divider-gold {
    margin: 0 auto;
  }
}
.about .about-content .about-content-left {
  z-index: 9;
  max-width: 515px;
  width: 100%;
}
.about .about-content .about-content-left h2 {
  color: var(--color-gray-h);
  font-family: "Roca", sans-serif;
  font-style: normal;
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.25;
  letter-spacing: -1.8px;
}
.about .about-content .about-content-right {
  z-index: 9;
  max-width: 580px;
}

.join {
  padding: clamp(60px, 10vw, 160px) 0;
}
.join .join-content {
  margin-bottom: 80px;
}
.join .join-content .join-card .join-card-header {
  position: relative;
  min-height: 80px;
  display: flex;
  align-items: flex-end;
}
.join .join-content .join-card .join-card-header .bignumber {
  position: absolute;
  top: 10;
  left: 0;
  color: rgba(58, 53, 49, 0.0784313725);
  font-family: "Roca", sans-serif;
  font-size: clamp(48px, 10vw, 96px);
  line-height: 1;
  font-weight: 800;
  margin: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.join .join-content .join-card .join-card-header h3 {
  font-size: clamp(18px, 2.5vw, 22px);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gray-h);
  font-weight: 800;
  margin: 0;
  position: relative;
  z-index: 1;
}
.join a {
  position: relative;
  display: inline-block; /* Para garantir que o ::after fique no tamanho certo da palavra */
  color: var(--color-gold-10);
  text-decoration: none;
  font-family: "Roca", sans-serif;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}
.join a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 3px;
  background-color: currentColor;
  transition: width 0.8s ease-out;
}
.join a:hover::after {
  width: 100%;
}

.period {
  padding: 0px 20px clamp(60px, 10vw, 160px) 20px;
  position: relative;
}
.period .grade_3 {
  position: absolute;
  bottom: 80px;
  right: 0;
  z-index: 0;
}
.period .container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  background-color: #fff;
  position: relative;
  z-index: 9;
}
@media (min-width: 1440px) {
  .period .container {
    max-width: 1040px;
    padding: 0;
  }
}
.period .container .period-content {
  padding: 80px 15px;
}
.period .container .period-content .section-header {
  margin-bottom: 60px;
}
.period .container .period-content .section-header img {
  margin-bottom: 32px;
}
.period .container .period-content .period-content-inner p {
  font-family: "Helvetica", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: var(--color-gray-p2);
  margin: 0;
}
.period .container .period-content .period-content-inner h4 {
  font-family: "Roca", sans-serif;
  font-size: clamp(20px, 3vw, 24px);
  line-height: 1.25;
  font-weight: 800;
  color: var(--color-gray-h);
}

.winners {
  position: relative;
  padding: clamp(60px, 8vw, 120px) 0px clamp(40px, 5vw, 70px);
  background-color: #fff;
}
.winners .winners-content {
  display: flex;
  gap: clamp(32px, 8vw, 100px);
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .winners .winners-content {
    flex-wrap: nowrap;
  }
}
@media (max-width: 425px) {
  .winners .winners-content {
    flex-wrap: wrap;
  }
}
.winners .winners-content .winners-content-left {
  max-width: 515px;
  width: 100%;
}
.winners .winners-content .winners-content-left h2 {
  color: var(--color-gray-h);
  font-family: "Roca", sans-serif;
  font-style: normal;
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.25;
  letter-spacing: -1.8px;
}
.winners .winners-content .winners-content-right {
  z-index: 9;
  max-width: 450px;
}
.winners .winners-content .winners-content-right ul {
  list-style: none;
  padding: 0;
  margin-top: 24px;
}
.winners .winners-content .winners-content-right ul li {
  position: relative;
  padding-left: 24px; /* 16px de distância + tamanho do bullet */
  margin-bottom: 8px;
  font-family: "Helvetica", sans-serif;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.5;
  color: var(--color-gray-p1);
}
.winners .winners-content .winners-content-right ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--color-gold-10);
  border-radius: 50%;
}
.winners .winners-content .winners-content-right ul li:last-child {
  margin-bottom: 0;
}

.swiper-galeria {
  width: 100vw;
  overflow: hidden;
  background-color: #fff;
  padding-bottom: clamp(60px, 8vw, 120px);
}
.swiper-galeria .swiper-slide {
  width: 90%;
  max-width: 1008px;
  height: auto;
  aspect-ratio: 1008/520;
}
.swiper-galeria .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1024px) {
  .swiper-galeria .swiper-slide {
    width: 1008px;
  }
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1607843137);
  backdrop-filter: blur(5px);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}
.swiper-button-next::after, .swiper-button-prev::after {
  font-size: clamp(20px, 3vw, 24px);
}

.swiper-button-prev {
  left: 24px;
}

.swiper-button-next {
  right: 24px;
}

/* ============================================================
   Experience Section
   ============================================================ */
.experience {
  padding: clamp(40px, 6vw, 80px) 0;
  background-color: #fff;
}
@media (min-width: 1440px) {
  .experience .container {
    padding: 0 20px;
  }
  .experience .container .experience-content {
    justify-content: center;
  }
  .experience .container .experience-content .experience-item {
    max-width: 700px; /* Increased limit for ultra-wide screens */
  }
}
.experience .container .experience-content {
  display: flex;
  gap: 32px;
  width: 100%;
  align-items: stretch;
}
.experience .container .experience-content .experience-item {
  flex: 1;
  background-color: var(--color-gray-bg-1);
  max-width: 592px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.experience .container .experience-content .experience-item:first-child {
  padding: clamp(40px, 5vw, 70px) clamp(20px, 5vw, 65px);
}
.experience .container .experience-content .experience-item:last-child {
  padding: 0;
  overflow: hidden;
}
.experience .container .experience-content .experience-item:last-child .swiper-experience {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  flex: 1;
}
.experience .container .experience-content .experience-item:last-child .swiper-experience .swiper-slide {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}
.experience .container .experience-content .experience-item:last-child .swiper-experience .swiper-slide img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.experience .container .experience-content .experience-item:last-child .swiper-experience .swiper-experience-prev {
  left: 16px;
}
.experience .container .experience-content .experience-item:last-child .swiper-experience .swiper-experience-next {
  right: 16px;
}
.experience .container .experience-content .experience-item .section-header {
  margin-bottom: 48px;
}
.experience .container .experience-content .experience-item .experience-item-list ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.experience .container .experience-content .experience-item .experience-item-list ul li {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 24px;
  padding: 0;
}
.experience .container .experience-content .experience-item .experience-item-list ul li img {
  width: 40px;
  height: 40px;
}
.experience .container .experience-content .experience-item .experience-item-list ul li span {
  font-family: "Helvetica", sans-serif;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.5;
  color: #3A3531;
}
@media (max-width: 768px) {
  .experience .container .experience-content {
    flex-direction: column;
    gap: 20px;
  }
  .experience .container .experience-content .experience-item {
    max-width: 100%;
  }
  .experience .container .experience-content .experience-item:first-child {
    padding: 40px 20px;
  }
  .experience .container .experience-content .experience-item:last-child {
    height: auto;
    min-height: auto;
  }
}

.regulation {
  position: relative;
}
.regulation .grade-1 {
  position: absolute;
  top: 0;
  left: 170px;
  z-index: -1;
}
@media (max-width: 425px) {
  .regulation .grade-1 {
    left: 0;
  }
}
.regulation .bolas {
  position: absolute;
  bottom: 50px;
  right: 0;
  z-index: -1;
}
.regulation .regulation-content {
  position: relative;
  z-index: 10;
  max-width: 600px;
  width: 100%;
  padding: clamp(60px, 10vw, 130px) 0px;
  margin: auto;
}
.regulation .regulation-content .section-header {
  margin-bottom: 24px;
}
.regulation .regulation-content .regulation-content-inner p {
  font-family: "Helvetica", sans-serif;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.5;
  font-weight: 400;
  color: var(--color-gray-p2);
  margin: 0;
}

/* Footer */
footer {
  background-color: var(--color-black);
  padding: 30px 0;
}
@media (max-width: 768px) {
  footer .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
footer .footer-copyright p {
  color: #fff;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 300;
}/*# sourceMappingURL=style.css.map */