:root {
  --ciano: #0bb5f5;
  --amarelo: #f0c609;
  --azul-escuro: #2b2157;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", sans-serif;
  color: var(--white);
  background-color: var(--azul-escuro);
  background-image: url("images/bg.jpg");
  background-repeat: repeat;
  background-position: top left;
}

/* Wrap 1400 */
.container-1400 {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Regra global de seção: 40px top/bottom */
.site-section {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--white);
}

p, li, span {
  font-weight: 400;
  color: var(--white);
}

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

.hero-title {
  font-size: clamp(1.6rem, 2.4vw, 2.8rem);
  line-height: 1.15;
  text-transform: lowercase;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  line-height: 1.55;
  opacity: 0.95;
}

.benefits-title {
  font-size: clamp(1.05rem, 1.2vw, 1.35rem);
  color: var(--amarelo);
  margin-bottom: 1rem;
}

.bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--ciano);
  flex: 0 0 10px;
}

.form-box {
  background: rgba(11, 181, 245, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(2px);
}

/* Destaque gráfico do topo direito */
.hero-graphic {
  position: absolute;
  top: 0;
  right: 2%;
  width: min(28vw, 420px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.95;
}

/* Títulos de seção */
.section-title {
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.5;
  opacity: 0.95;
}

/* Cards de imagem */
.card-media {
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card-media:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  border-color: rgba(240, 198, 9, 0.55);
}

/* Hover “botão” (aplicável para CTAs futuros) */
.btn:hover,
.btn:focus-visible {
  background-color: #fff !important;
  color: var(--azul-escuro) !important;
  border-color: #fff !important;
}

/* Brilhos (placeholders com nomes solicitados) */
.glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.35;
}

.glow-top {
  width: 460px;
  height: 460px;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  background-image:
    radial-gradient(circle, rgba(11,181,245,0.35) 0%, rgba(11,181,245,0) 65%),
    url("images/brilho1.png");
}

.glow-left {
  width: 380px;
  height: 380px;
  top: 40%;
  left: -120px;
  background-image:
    radial-gradient(circle, rgba(11,181,245,0.28) 0%, rgba(11,181,245,0) 70%),
    url("images/brilho2.png");
}

.glow-right {
  width: 380px;
  height: 380px;
  top: 52%;
  right: -120px;
  background-image:
    radial-gradient(circle, rgba(11,181,245,0.28) 0%, rgba(11,181,245,0) 70%),
    url("images/brilho3.png");
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsivo */
@media (max-width: 991.98px) {
  .hero-logo {
    max-width: 220px;
  }

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

  .glow-top { top: -160px; }
}

@media (max-width: 767.98px) {
  .site-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-graphic {
    display: none !important;
  }

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

  .glow-left,
  .glow-right {
    opacity: 0.22;
  }
}