@charset "UTF-8";
/* Reset básico para remover estilos padrão dos navegadores */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

/* Normalize básico para garantir consistência entre navegadores */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
  text-decoration: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline dotted;
}

@font-face {
  font-family: "Allotrope";
  src: url("../fonts/Allotrope/Allotrope-Bold.woff2") format("woff2");
  font-weight: 700;
}
@font-face {
  font-family: "Allotrope";
  src: url("../fonts/Allotrope/Allotrope-Regular.woff2") format("woff2");
  font-weight: 400;
}
:root {
  --font-body: "Inter", sans-serif;
  --font-header: "Allotrope", sans-serif;
  --color-main: #FF6600;
  --color-second: #FF5000;
  --color-bg-main: #000;
  --color-bg-secondary: #1E1E1E;
}

.main-button {
  font-family: var(--font-header);
  color: #fff;
  border-radius: 0.75rem;
  padding: 0.625rem 1.25rem 0.35rem;
  font-size: clamp(1.8rem, 2vw, 1.75rem);
  outline: none;
  background: transparent;
  border: none;
  font-weight: 900;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  background-color: var(--color-main);
  font-family: var(--font-header);
}
.main-button:hover {
  background-color: #fff;
  color: #000;
}

html {
  font-size: 16px;
  color: #fff;
  font-family: var(--font-body);
}

body {
  background-color: var(--color-bg-main);
  line-height: 1.3;
}

video {
  width: 100%; /* O vídeo ocupará 100% da largura do contêiner */
  aspect-ratio: 16/9; /* Define a proporção de 16:9 */
}

h1, h2 {
  font-family: var(--font-header);
  font-size: clamp(1.625rem, 5vw, 4rem);
  font-weight: 900;
}

h3 {
  font-family: var(--font-header);
  font-size: clamp(1.625rem, 5vw, 3rem);
}

h4 {
  font-family: var(--font-header);
  font-size: clamp(1.625rem, 5vw, 2.375rem);
}

h5 {
  font-family: var(--font-header);
  font-size: clamp(1.625rem, 5vw, 2rem);
}

.main-font-color {
  color: var(--color-main);
}

.second-font-color {
  color: var(--color-second);
}

.container {
  max-width: 74.6875rem;
  margin: 0 auto;
}
@media (max-width: 1336px) {
  .container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (max-width: 780px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.container-inner {
  max-width: 61.25rem;
  margin: 0 auto;
}
@media (max-width: 1336px) {
  .container-inner {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (max-width: 780px) {
  .container-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.main-banner {
  padding-top: 2rem;
}
@media (max-width: 780px) {
  .main-banner {
    padding-top: 0;
  }
}

.splide__pagination {
  bottom: -2.5em !important;
}

@keyframes alert {
  0% {
    transform: scale();
  }
  70% {
    transform: scale();
    box-shadow: 0 0 0 50px rgba(69, 152, 27, 0);
  }
  100% {
    transform: scale();
    box-shadow: 0 0 0 0 rgba(69, 152, 27, 0);
  }
}

.header {
  position: relative;
  z-index: 3;
}
.header .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 84.5rem;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 780px) {
  .header .inner {
    justify-content: center;
    background-color: #000000;
    padding: 0.8rem 2rem;
  }
  .header .inner .main-button {
    display: none;
  }
}

.fist-section {
  position: relative;
}
.fist-section::before {
  display: block;
  position: absolute;
  z-index: 0;
  content: url("../images/icon-megafone.png");
  left: 1rem;
  top: 40%;
}
@media (max-width: 800px) {
  .fist-section::before {
    content: "";
  }
}
.fist-section:after {
  content: "";
  display: block;
  width: 100%;
  height: 200px;
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(0deg, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(0deg, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(0deg, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
  position: absolute;
  bottom: 0;
  z-index: 0;
}
.fist-section .inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0rem;
  align-items: center;
  padding: 0;
}
@media (max-width: 800px) {
  .fist-section .inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 2rem;
  }
}
.fist-section .content {
  padding: 3rem 0 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  right: -5rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 1214px) {
  .fist-section .content {
    padding: 3rem 1.25rem 5rem;
  }
}
@media (max-width: 800px) {
  .fist-section .content {
    padding: 2.3125rem 1.25rem 0;
    position: static;
  }
}
.fist-section .main-button {
  animation: alert 1.5s infinite;
  box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.5);
}
@media (max-width: 800px) {
  .fist-section .title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}
@media (max-width: 800px) {
  .fist-section .subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}
@media (max-width: 800px) {
  .fist-section a {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}
.fist-section .badges {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 800px) {
  .fist-section .badges {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 800px) {
  .fist-section .influencer {
    position: relative;
    right: 0;
  }
  .fist-section .influencer img {
    width: 100%;
  }
}

.section-offers {
  padding-top: 6rem;
  padding-bottom: 4rem;
  position: relative;
}
.section-offers .offers {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
  align-items: end;
  padding-left: 2rem;
  position: relative;
}
@media (max-width: 714px) {
  .section-offers .offers {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.section-offers .offers::after {
  content: url("../images/icon-pack_disfoque1.png");
  display: block;
  position: absolute;
  z-index: 0;
  right: 2rem;
  top: -8rem;
}
@media (max-width: 1336px) {
  .section-offers .offers::after {
    right: 4rem;
    top: -4rem;
  }
}
@media (max-width: 714px) {
  .section-offers .offers::after {
    content: "";
  }
}
.section-offers .title {
  color: #fff;
  font-family: var(--font-header);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.section-offers .description {
  max-width: 31.625rem;
}
@media (max-width: 714px) {
  .section-offers .offers-button {
    width: 100%;
  }
}

.background {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url("../images/back.webp");
  background-size: cover;
  background-repeat: no-repeat;
}

.sec-benefits {
  padding-top: 1rem;
  padding-bottom: 8rem;
}
@media (max-width: 564px) {
  .sec-benefits {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
.sec-benefits .content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.sec-benefits .description {
  font-weight: 700;
  font-size: clamp(1.125rem, 3vw, 1.5625rem);
}

.sec-benefits .description {
  text-align: center;
  width: 100%;
}

.sec-benefits .container {
  max-width: 61.25rem;
  margin: 0 auto;
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-content {
  flex: 1;
}

.form-content {
  display: flex;
  flex-direction: column;
  background-image: url("../images/back2.webp");
  background-size: cover;
  background-repeat: no-repeat;
  gap: 0.85rem;
  align-items: center;
  padding: 1.25rem;
  border: 1px solid var(--color-second);
  margin: 0 auto;
  border-radius: 1.25rem;
  width: 100%; /* Faz o formulário ocupar toda a largura disponível */
  max-width: 335px; /* Define um limite máximo para a largura */
}

.sec-steps {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../images/bg-steps.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media (max-width: 564px) {
  .sec-steps {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.sec-steps::before {
  content: url("../images/icon-pack_disfoque1.png");
  display: block;
  position: absolute;
  z-index: 0;
  left: -8rem;
  top: 50%;
}
@media (max-width: 1336px) {
  .sec-steps::before {
    content: "";
  }
}
.sec-steps::after {
  content: url("../images/icon-discount.png");
  display: block;
  position: absolute;
  z-index: 0;
  right: 3rem;
  top: 10%;
}
@media (max-width: 1205px) {
  .sec-steps::after {
    content: url("../images/icon-discount-mobile.png");
    right: 0;
    top: 90%;
  }
}
.sec-steps .steps {
  position: relative;
  z-index: 1;
}
.title {
  color: #ff6600;
  font-family: var(--font-header);
  text-transform: uppercase;
  position: relative;
  text-align: center;
}
@media (max-width: 564px) {
  .sec-steps .title::after {
    bottom: -1rem;
  }
}
.sec-steps .button {
  margin: 0 auto;
  max-width: fit-content;
}
.sec-steps #slide-steps {
  margin-bottom: 3rem;
}
@media (max-width: 1336px) {
  .sec-steps #slide-steps {
    margin-bottom: 5rem;
  }
}
.sec-steps #slide-steps .item-box {
  height: 100%;
  padding: 1.875rem 2.375rem;
  border: 1px solid var(--color-second);
  max-width: fit-content;
  margin: 0 auto;
  border-radius: 1.25rem;
}
@media (max-width: 588px) {
  .sec-steps #slide-steps .item-box {
    max-width: 100%;
  }
}
.sec-steps #slide-steps .item-box .title-box {
  display: flex;
  align-items: baseline;
  gap: 0.3125em;
  font-family: var(--font-header);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.375rem;
}
.sec-steps #slide-steps .item-box .title-box .index {
  color: var(--color-second);
}
.sec-steps #slide-steps .item-box .description {
  max-width: 10.25rem;
  font-size: 1.125rem;
}
@media (max-width: 813px) {
  .sec-steps #slide-steps .item-box .description {
    max-width: 100%;
  }
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; /* Usa 80% da largura da viewport */
  max-width: 600px; /* Define um limite máximo de largura */
  height: auto; /* Altura automática */
  max-height: 80vh; /* Máximo de 80% da altura da viewport */
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.hidden {
  display: none;
}

.modal-content {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  width: 100%; /* Usa toda a largura disponível no modal */
  max-height: 100%; /* Garante que o conteúdo não ultrapasse o modal */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow-y: auto; /* Permite rolagem caso o conteúdo exceda a altura */
  text-align: center;
}

.modal-content p {
  font-size: 20px;
  color: #000; /* Texto preto */
  margin-bottom: 20px;
}

.modal-content button {
  margin-top: 20px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.footer {
  padding-top: 3.375rem;
  padding-bottom: 3.375rem;
  text-align: center;
  color: #fff;
}
.footer a {
  color: #fff;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  max-width: 44.375rem;
}
.footer .logo-box {
  display: flex;
  align-items: center;
  gap: 5.3125rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 579px) {
  .footer .logo-box {
    gap: 1.25rem;
  }
}
.footer .sponsors {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.footer .copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  font-size: 0.75rem;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 858px) {
  .footer .copyright p {
    text-align: center;
    width: 100%;
  }
}
