* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Warren", sans-serif;
  font-weight: 400;
}

@font-face {
  font-family: "Momcake";
  src: url("../fonts/Momcake-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Warren";
  src: url("../fonts/WarrenText-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Warren";
  src: url("../fonts/WarrenText-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}


.ff-message-success {
  border: none !important;
  box-shadow: none !important;
  margin-top: none !important;
  padding: none !important;
}

.fa-ul {
  margin-left: 0;
}

.fa-ul i {
  margin-right: 10px;
}
.date {
  font-family: "Momcake", sans-serif;
  font-weight: bold;
  /* Esteja certo de que o peso corresponde ao especificado na fonte */
  font-size: 200px;
}

/*Subscription*/
.subscription-container {
  margin: 0 auto;
  max-width: 1600px;
  padding: 0px 20px 100px 20px;
  align-items: center;
  justify-content: space-around;
  display: flex;
  gap: 20px;
  background-color: white;
}

/*Form*/
#main-form {
  border: 1px solid black;
  border-radius: 30px;
  padding: 56px 44px;
  max-width: 490px;
  width: 100%;
}

.form-heading {
  font-family: "Momcake";
  font-weight: bold;
  color: #2f2f33;
  font-size: 40px;
  margin: 0px;
  margin-bottom: 16px;
  text-align: center;
}

#main-form label {
  font-size: 0.9rem;
  margin-bottom: 5px;
}



#main-form input {
  padding: 0 8px;
  font-size: 1em;
  width: 100%;
  height: 45px;
  background-color: #f5f6fa;
  border: none;
  border-radius: 3px;
  box-sizing: border-box;
}

#main-form button,
#main-form input[type="button"] {
  font-weight: 700;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  align-self: flex-end;
  background-color: #e3c026;
  border: none;
  border-radius: 8px;
  height: 48px;
  width: 120px;
  color: #000;
  transition: transform 0.3s ease; /* Animação suave para o hover */
}

h2.title {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 20px;
  font-size: 30px;
  padding: 0px 20px;
}

.network {
  padding: 40px;
  background-color: #fff;
  border-color: #e4bf1b;
  border-width: 2px;
  border-radius: 0 180px 180px 0;
  max-width: 400px;
}

.network h2 {
  font-family: "Momcake";
  font-size: 60px;
  margin: 0px;
}

.network p {
  margin: 12px 0px;
  font-size: 21px;
  color: #771e5e;
}


.social a {
  font-family: "Momcake";
  text-decoration: none;
  color: #e4bf1b;
  font-size: 21px;
  font-weight: 700;
  text-align: left;
}

#header {
  margin-top: 65px;
  width: 100%;
  background-color: #fff;
}

.header-organizadores {
  width: 100%;
  max-width: 768px;
  display: block;
}

.header-logotipo__wrapper {
  background-color: #cda706;
  padding-left: 100px;
}

.header-logotipo {
  max-width: 800px;
  width: 100%;
}

.anchor {
  visibility: hidden;
  position: relative;
  top: -65px;
}

.callout {
  border-radius: 20px;
  background-color: rgb(228, 191, 27, 0.5);
  padding: 20px 40px;
  margin-top: 40px;
}

.callout-icon {
  width: 8px;
}

#navbar {
  width: 100vw;
  height: 65px;
  left: 0;
  right: 0;
  position: fixed;
  top: 0;
  background-color: #e4bf1b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  z-index: 10;
}

#navbar * {
  color: #fff;
  font-family: Warren;
  font-weight: 500;
  text-decoration: none;
  user-select: none;
}

#navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-sub-item, .navbar-item {
  padding: 20px 10px;
  cursor: pointer;
}

.navbar-item-group {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 10px;
}

.navbar-item {
  position: relative;
  height: 65px;
}

.navbar-item > * {
  vertical-align: middle;
}

.navbar-item a, .navbar-sub-item a {
  display: inline-block;
  width: 100%;
}

.navbar-item:hover, .navbar-sub-item:hover {
  background-color: #a99022;
}

.navbar-submenu-wrapper {
  position: absolute;
  background-color: #e4bf1b;
  width: 200px;
  top: 65px;
  left: 0;
  display: none;
}

#navbar-item__competicao.active .navbar-submenu-wrapper {
  display: block;
}

#navbar-burger-btn {
  width: 24px;
  fill: #fff;
  cursor: pointer;
  display: none;
}

.cta {
  background-color: #e4bf1b;
  font-family: Warren;
  font-size: 20px;
  font-weight: 800;
  padding: 20px;
  color: #000;
  text-decoration: none;
  border-radius: 20px;
  max-width: 80%;
  margin: 60px auto 0 auto;
  display: block;
  text-align: center;
  transition: transform 0.2s ease;
  text-transform: uppercase;
}

.cta:hover, .cta:active {
  transform: scale(1.2);
}

.why {
  width: 100%;
  position: relative;
}

.why-img {
  width: 100%;
  display: block;
}

.why-img-mobile {
  display: none;
}

.why-text {
  position: absolute;
  right: 40px;
  top: 0;
  bottom: 0;
  color: #fff;
  max-width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-text h2 {
  font-size: 30px;
  margin-top: 0;
  margin-bottom: 30px;
}

.why-text p {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 28px;
}

.why-text ul {
  padding: 0;
  list-style: none;
}

.why-text li {
  font-size: 24px;
  margin-bottom: 10px;
}

.why-text .cta {
  width: 100%;
}

.footer-logo {
  height: 40px;
  display: block;
}

.logo-eql {
  height: 25px;
}

.footer-texto {
height: 35px;
}

.objetivos-wrapper {
  background-color: #e5bd1d;
  position: relative;
  min-height: 500px;
  padding: 150px 150px 100px 150px;
  overflow: hidden;
}


.objetivos-disco {
  position: absolute;
  top: 0;
}
.objetivos-disco-1 {
  left: 0;
  width: 200px;
}

.objetivos-disco-2 {
  right: 0;
  width: 30%;
}

.objetivos-conteudo {
  position: relative;
  z-index: 1;
}

.objetivos-chamada {
  font-size: 60px;
  font-weight: bold;
  line-height: 60px;
  text-transform: uppercase;
  margin-bottom: 150px;
}

.objetivos-list {
  display: flex;
  gap: 40px;
}

.objetivo-item {
  min-width: 30%;
}


.objetivo-icon {
  transform: scale(2) translateX(30%);
  margin-bottom: 100px;
}

.objetivo-title {
  font-size: 40px;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 20px;
}

.objetivo-descricao {
  font-size: 25px;
}





footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 10px;
  gap: 30px;
  flex-wrap: wrap;
  background-color: #fff;
}

@media(max-width: 1280px) {
  .why-text h2 {
    margin-bottom: 30px;
  }
  
  .why-text p {
    font-size: 18px;
  }
  
  .why-text li {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .objetivos-wrapper {
    padding-left: 100px;
    padding-right: 100px;
  }
}

@media (max-width: 1024px) {
  .date {
    font-size: 92px !important;
  }

  .thank-you-grid {
    grid-template-columns: 1fr;
  }

  #hubspot-form {
    padding: 30px;
  }

  .why h2 {
    font-size: 20px;
  }

  .why-text {
    width: 30%;
  }

  .why-text p {
    font-size: 14px;
  }
  
  .why-text li {
    font-size: 12px;
  }
  
  .why-text .cta {
    display: none;
  }

  .objetivos-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }

  .objetivos-disco-1 {
    width: 150px;
  }

  .objetivos-chamada {
    font-size: 50px;
  }

  .objetivos-list {
    gap: 20px;
  }

  .objetivo-icon {
    transform: scale(1.5) translate(30%);
    margin-bottom: 80px;
  }

  .objetivo-title {
    font-size: 35px;
  }

  .objetivo-descricao {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .header-logotipo__wrapper {
    padding-left: 0;
  }

  .subscription-container {
    display: flex;
    flex-direction: column;
    margin: 0px;
  }

  .subscription-text-container {
    max-width: 490px;
    margin-bottom: 20px;
  }

  .form-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .form-button {
    align-self: start;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .button-group {
    text-align: right;
  }

  footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column !important;
    gap: 30px;
    height: 400px;
    background-color: #fff;
  }

  .congratulations p {
    font-size: 32px;
    line-height: 42px;
  }

  .congratulations span {
    font-size: 50px;
    line-height: 68px;
  }

  #hubspot-form {
    padding: 15px;
  }

  #navbar {
    justify-content: right;
  }

  .navbar-item-group {
    position: absolute;
    top: 65px;
    background-color: #e4bf1b;
    width: 100%;
    left: 0;
    right: 0;
    gap: 0;
    flex-direction: column;
    display: none;
  }

  #navbar.active .navbar-item-group {
    display: flex;
  }

  #navbar-burger-btn {
    display: initial;
  }

  .navbar-item {
    padding: 10px 0px;
    width: 100%;
    height: auto;
  }

  .navbar-item > * {
    padding: 0 10px;
  }

  .navbar-sub-item {
    padding: 10px 20px;
    width: 100%;
  }

  #navbar-item__competicao.active {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .navbar-submenu-wrapper {
    position: initial;
    width: 100%;
  }

  h2.title span {
    display: block;
  }

  .text-center-sm {
    text-align: center;
  }

  .footer-realization .footer-logo {
    height: 30px;
    display: block;
  }

  .logo-eql {
    height: 20px !important;
  }
  
  .footer-texto {
    height: 35px;
  }

  .objetivos-wrapper {
    padding: 300px 25px;

  }

  .objetivos-disco-1 {
    display: none;
    visibility: hidden;
  }

  .objetivos-disco-2 {
    width: 60%;
  }

  .objetivos-chamada {
    margin-bottom: 140px;
  }

  .objetivos-list {
    flex-direction: column;
    gap: 140px;
  }

  .objetivo-icon {
    margin-bottom: 90px;
  }

  .objetivo-title {
    margin-bottom: 10px;
  }

  .objetivo-descricao {
    margin: 0;
  }
}

@media (max-width: 768px) {

  .stages {
    display: none;
    margin: 0 auto;
    width: 100%;
    background: url("../images/go-steps-mobile.jpg") no-repeat center center !important;
    background-size: 100% auto !important;
    height: auto;
    aspect-ratio: auto 860 / 2520 !important;
  }

  .objetivos {
    margin: 0 auto;
    width: 100%;
    background: url("../images/go-goals-mobile.jpg") no-repeat center center !important;
    background-size: 100% auto !important;
    height: auto;
    aspect-ratio: auto 860 / 2234 !important;
  }

  .reality {
    display: flex;
    margin: 0 auto;
    width: 100%;
    background: url("../images/go-reality-mobile.jpg") no-repeat center center !important;
    background-size: 100% auto !important;
    height: auto;
    aspect-ratio: auto 860 / 1454 !important;
    align-items: end !important;
    padding-bottom: 64px;
  }
  .network {
    padding: 20px;
  }
  .network h2 {
    font-size: 40px;
  }

  .network p, .social a {
    font-size: 15px;
  }

  .container {
    padding: 24px !important;
  }

  .why-img {
    display: none;
  }

  .why-img-mobile {
    display: block;
    width: 100%;
  }

  .why-text {
    position: initial;
    width: 100%;
    max-width: initial;
    display: block !important;
    padding: 54px 24px;
    background-color: black;
    color: white;
  }

  .why-text h2 {
    font-family: "Momcake";
    font-size: 60px;
  }

  .why-text p, .why li {
    font-size: 21px;
  }

  .why li {
    margin-left: 20px;
    margin-bottom: 20px;
  }

  .why .cta {
    display: block;
  }

  .subscribe-button {
    width: 140px !important;
    margin-bottom: 24px;
  }
}

@media(max-width: 580px) {
  footer {
    flex-wrap: initial;
    flex-direction: column;
  }

  .footer-realization, .footer-support {
    flex-direction: column;
  }

  .footer-divisoria {
    display: none;
  }

  .objetivos-wrapper {
    padding-top: 200px;
  }

  .objetivos-chamada {
    font-size: 40px;
    line-height: 50px;
  }
}

@media(max-width: 400px) {
  .form-chamada {
    font-size: 17px;
  }
}

@media (max-width: 375px) {
  .about h2 {
    font-size: 44px !important;
  }
  .date {
    font-size: 44px !important;
  }
  .subscribe-button {
    margin-bottom: 24px;
  }
}

.objetivos {
  position: relative;
  margin: 0 auto;
  width: 100%;
  background: url("../images/go-goals.jpg") no-repeat center center;
  background-size: 100% auto;
  height: auto;
  aspect-ratio: auto 2881 / 1400;
}

.stages {
  display: none;
  margin: 0 auto;
  width: 100%;
  background: url("../images/go-steps.jpg") no-repeat center center;
  background-size: 100% auto;
  height: auto;
  aspect-ratio: auto 1441 / 810;
}

.reality {
  display: flex;
  align-items: center;
  width: 100%;
  background: url("../images/go-reality.jpg") no-repeat center center;
  background-size: cover;
  height: auto;
  aspect-ratio: auto 2880 / 1600;
}

.colored-bar {
  background-color: #e4bf1b; /* Cor de fundo */
  width: 40px; /* Largura do elemento */
  height: 2px; /* Altura do elemento */
  margin: 24px 0px;
}

.social-media div {
  margin-top: 16px;
  text-decoration: none;
  color: #a99022;
}

.social {
  display: flex;
  align-items: center;
  gap: 4px;
  transition: transform 0.3s ease;
}

.social:hover {
  transform: scale(1.05);
}

.yellow-text {
  color: #e4bf1b;
}

.apresentation {
  flex: 1;
}

.about {
  padding-top: 113px;
  background-color: black;
  padding: 100px 0px;
}

.about h2 {
  font-size: 60px;
  color: #e4bf1b;
}

.about span {
  color: white;
}

.text-date {
  display: flex;
  flex-direction: column;
}

.date {
  font-family: "Momcake", sans-serif;
  /* Altera a fonte para Momcake */
  font-weight: bold;
  /* Garante que o texto use o peso bold da fonte */
  font-size: 200px;
  /* Mantém o tamanho da fonte */
}

.about-text {
  color: white;
  font-size: 21px;
  margin-bottom: 36px;
  font-weight: 400px;
}

.about-text p {
  margin: 4px 0px;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 112px;
}

.footer-support {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-realization {
  display: flex;
  align-items: center;
  gap: 12px;
}

.subscribe-button,
.open-account {
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 8px;
  height: 54px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-sizing: border-box;
  transition: transform 0.3s ease; /* Animação suave para o hover */
}

.subscribe-button:hover,
.form-button:hover,
.open-acount:hover {
  transform: scale(1.05); /* Expande o botão em 5% */
}

.subscribe-button {
  background-color: #e3c026;
  border: none;
  color: black; /* Cor do texto para o botão de fundo amarelo */
  width: 201px;
  margin-right: 14px;
}
.subscription-button,
.open-account {
  background-color: black;
  border: none;
  color: #fff; /* Cor do texto para o botão de fundo amarelo */
  width: 155px;
}

.error-message {
  color: red;
  font-size: 12px;
  margin-top: 4px;
}

#birthdate-error {
  color: red;
  font-size: 12px;
  margin-top: 4px;
}

.success-message {
  margin-top: 12px;
}
