/* =========================================================================
   RESET & BASE
   ========================================================================= */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: "Roboto", sans-serif;
  color: #ffffff;
  background-color: #2b2157;
  background-image: url("images/bg.jpg");
  background-repeat: repeat;
  background-position: top left;
}

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

/* =========================================================================
   VARIÁVEIS
   ========================================================================= */
:root {
  --ciano:      #0bb5f5;
  --amarelo:    #f0c609;
  --azul-escuro:#2b2157;
  --white:      #ffffff;
  --laranja:    #ff7e22;
}

/* =========================================================================
   TIPOGRAFIA
   ========================================================================= */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
}

p, li {
  font-weight: 400;
  color: #ffffff;
}

::marker {
  color: #0bb5f5;
}

/* =========================================================================
   LAYOUT UTILITÁRIOS
   ========================================================================= */
.container-1400 {
  width: 90%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
}

.site-section {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  z-index: 1;
}

main,
.site-section,
.container-1400 {
  overflow-x: clip;
}

.nao-separar {
  white-space: nowrap;
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero-logo-wrap {
  margin-bottom: 28px;
}

.hero-logo {
  max-width: 410px;
  width: 100%;
  height: auto;
}

.hero-title {
  font-size: 36px;
  line-height: 1.12;
  text-transform: uppercase;
}

span.destaque  { color: #0bb5f5; }
span.destaque2 { color: #ff7e22; }

.hero-subtitle {
  font-size: 18px;
  line-height: 1.2;
}

.hero-right-title {
  font-size: 30px;
  color: #ffffff;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-benefits li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 18px;
}

.hero-benefits li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0bb5f5;
  position: absolute;
  left: 0;
  top: 9px;
}

/* imagem decorativa hero — apenas desktop */
.hero-graphic {
  position: absolute;
  top: -82px;
  right: 11%;
  width: min(31vw, 430px);
  height: auto;
  z-index: 0;
  pointer-events: none;
}

/* =========================================================================
   BOTÃO CTA
   ========================================================================= */
.oferta {
  width: 325px;
}

a.botao {
  background: #ff7e22;
  padding: 20px;
  width: 325px;
  display: block;
  text-align: center;
  border-radius: 7px;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  font-size: 22px;
  letter-spacing: -1px;
  font-weight: 700;
  margin-top: 10px;
}

a.botao:hover {
  background: #0bb5f5;
  color: #2b2157;
}

.termos {
  margin-top: -16px;
}

p.text-legal {
  font-size: 14px;
  line-height: 1.2;
  max-width: 90%;
  margin: 0 auto;
}

/* =========================================================================
   SEÇÕES — TÍTULOS E SUBTÍTULOS
   ========================================================================= */
h2.section-title {
  font-size: 42px;
  text-transform: uppercase;
  max-width: 60%;
  margin: 0 auto;
  line-height: 1.1;
  color: #0bb5f5;
}

.raiox-title {
  font-size: 42px;
  text-transform: uppercase;
  line-height: 1.1;
  color: #0bb5f5;
}

.section-subtitle {
  font-size: 20px;
  line-height: 1.4;
}

.section-image {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

p.texto-experts {
  width: 85%;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.2;
}

/* =========================================================================
   BRILHOS DECORATIVOS
   ========================================================================= */
.glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  filter: blur(8px);
}

.glow-top {
  width: 1000px;
  height: 1000px;
  top: -340px;
  left: 10%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(11,181,245,0.35) 0%, rgba(11,181,245,0) 68%);
}

.glow-left {
  width: 1000px;
  height: 1000px;
  top: 42%;
  left: -160px;
  background: radial-gradient(circle, rgba(11,181,245,0.28) 0%, rgba(11,181,245,0) 70%);
}

.glow-right {
  width: 1000px;
  height: 1000px;
  top: 54%;
  right: -350px;
  background: radial-gradient(circle, rgba(11,181,245,0.28) 0%, rgba(11,181,245,0) 70%);
}

/* =========================================================================
   REVEAL SCROLL
   ========================================================================= */
.reveal-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .35s ease, transform .35s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================================
   ALÉM DO CLUBE — CARDS
   ========================================================================= */
.alem-card {
  border: 1px solid #83cee9;
  border-radius: 10px;
  overflow: visible;
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: #ffffff;
  padding: 10px 20px 28px;
  min-height: 433px;
  background: #342160a1;
}

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

.alem-card p {
  font-size: 20px;
  line-height: 1.1;
  margin: 0;
}

/* =========================================================================
   CARROSSEL — SETAS CUSTOMIZADAS
   ========================================================================= */
.owl-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ff7e22;
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.owl-nav-btn:hover {
  background-color: #ffffff;
  color: #000000;
}

[class*="owl-prev-"] { left:  -22px; }
[class*="owl-next-"] { right: -22px; }

/* setas mobile — abaixo do carrossel */
.d-flex .owl-nav-btn {
  position: static;
  transform: none;
}

/* =========================================================================
   OFERTA FINAL
   ========================================================================= */
.section-oferta .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.section-oferta h3 {
  font-size: 130px;
  margin: 0;
  padding: 0;
  line-height: 130px;
}

.text-legal {
  font-size: 14px;
  line-height: 18px;
}

/* =========================================================================
   FORMULÁRIOS
   ========================================================================= */
.form-box {
  width: 82%;
  margin: -13px 0 0 -17px;
  overflow: hidden;
}

.form-box iframe {
  display: block;
  width: 100%;
  border: 0;
}

.form-box-final {
  max-width: 480px;
  margin: -30px auto 0;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.rodape-flex {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 1.5rem;
}

div#copyrights {
  background: #1f123d;
}

#copyrights {
  padding: 50px 0;
  font-size: 0.875rem;
  line-height: 1.8;
}

footer p {
  color: #ffffff;
  font-size: 14px;
  line-height: 18px;
}

p.fone {
  margin: 0 0 6px;
  font-size: 20px;
}

footer h3 {
  color: #ffffff;
  font-size: 17px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 40px;
  line-height: 22px;
}

.icon-social {
  margin-right: 15px;
}

p.legal {
  font-size: 13px;
  line-height: 16px;
  margin-top: 35px;
  width: 70%;
}

.chat a {
  color: #ffffff;
}

/* =========================================================================
   BANNER FIXO
   ========================================================================= */
.fixed-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.fixed-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.fixed-banner-inner {
  background: #2b2157;
  color: #ffffff;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  max-width: 420px;
}

/* =========================================================================
   GUTTER BOOTSTRAP EXTRA
   ========================================================================= */
.g-lg-5,
.gx-lg-5 {
  --bs-gutter-x: 6rem;
}

/* =========================================================================
   RESPONSIVO — 991px (tablets)
   ========================================================================= */
@media (max-width: 991.98px) {
  .hero-logo {
    max-width: 360px;
  }

  .hero-graphic,
  .glow {
    display: none;
  }

  .hero-content-row {
    --bs-gutter-x: 1rem;
  }

  .form-box iframe {
    height: 560px;
  }
}

/* =========================================================================
   RESPONSIVO — 767px (banner fixo mobile)
   ========================================================================= */
@media (max-width: 767px) {
  .fixed-banner {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
  }

  button svg {
    margin-top: -6px;
  }

  .fixed-banner-inner {
    border-radius: 10px;
    max-width: 90%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px 20px;
    gap: 10px;
    margin: 0 auto 10px;
  }

  .fixed-banner-text {
    font-size: 14px;
  }
}

/* =========================================================================
   RESPONSIVO — 575px (mobile pequeno)
   ========================================================================= */
@media (max-width: 575.98px) {
  .site-section {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .hero-logo {
    max-width: 310px;
  }

  .hero-title {
    font-size: 29px;
  }

  .hero-subtitle {
    font-size: 18px;
    line-height: 1.2;
  }

  .hero-right-title {
    font-size: 27px;
  }

  h2.section-title {
    font-size: 28px;
    line-height: 1.1;
    max-width: unset;
  }

  .raiox-title {
    font-size: 33px;
  }

  .section-oferta h3 {
    font-size: 85px;
    line-height: 85px;
  }

  .alem-card {
    min-height: 388px;
    width: 88%;
    margin: 0 auto;
    padding: 5px 10px;
  }

  p.texto-experts {
    width: 87%;
    margin: 4px auto 0;
    font-size: 16px;
  }

  .form-box {
    width: auto;
    margin: 0;
  }

  .form-box iframe {
    height: 600px;
  }

  .rodape-flex {
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 0 20px;
  }

  a.botao {
    width: 100%;
  }
}