/* ============================================================
   VARIÁVEIS
============================================================ */
:root {
  --bg-body:    #12161F;
  --bg-dark:    #090B0F;
  --bg-card:    #010D1F;
  --bg-video:   #0B0E14;
  --bg-footer:  #090B0F;
  --bg-bottom:  #191E29;
  --gold:       #F9D394;
  --white:      #FFFFFF;
  --blue:       #09306A;
  --blue-light: #1571FB;
  --green-1:    #06AC46;
  --green-2:    #4CD380;
  --font:       'Poppins', sans-serif;
  --radius-card: 20px;
  --radius-btn:  10px;
  --max-w:      1440px;
  --section-py: 70px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  background-color: var(--bg-body);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================================
   SCROLLBAR
============================================================ */
body::-webkit-scrollbar { width: 10px; }
body::-webkit-scrollbar-track { background: #000; }
body::-webkit-scrollbar-thumb {
  background-color: var(--blue-light);
  border-radius: 10px;
  border: 2px solid #000;
}

/* ============================================================
   UTILITÁRIOS
============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

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

.gold { color: var(--gold); }

.section-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--white);
}

/* ============================================================
   BOTÃO
============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.3;
  border-radius: var(--radius-btn);
  padding: 18px 40px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  border: none;
  text-decoration: none;
}

.btn:hover {
  opacity: 0.9;
  transform: scale(0.98);
}

.btn--green {
  background: linear-gradient(90deg, var(--green-1) 0%, var(--green-2) 100%);
  color: var(--white);
}

.btn--block {
  display: block;
  width: 100%;
  text-align: center;
}

/* ============================================================
   LUZ AMBIENTE (efeito glow nos fundos)
============================================================ */
@keyframes luz {
  0%, 100% { opacity: 0; }
  50%       { opacity: 0.5; }
}

.glow-wrapper {
  position: relative;
  overflow: hidden;
}

.glow-wrapper::before,
.glow-wrapper::after {
  content: "";
  position: absolute;
  border-radius: 100%;
  filter: blur(150px);
  mix-blend-mode: screen;
  pointer-events: none;
}

.glow-wrapper::before {
  top: 15%;
  right: calc(50% - 800px);
  width: 500px;
  height: 600px;
  background: #09306A;
  opacity: 0.3;
  animation: luz 5s infinite;
}

.glow-wrapper::after {
  top: 60%;
  right: calc(50% - 400px);
  width: 10000px;
  height: 300px;
  background: #1571FB;
  opacity: 0.3;
  animation: luz 5s 2s infinite;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  background-color: var(--bg-dark);
  background-image: url('../images/group_14.webp');
  background-size: cover;
  background-position: center top;
  min-height: 820px;
  display: flex;
  align-items: center;
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 100%;
  filter: blur(150px);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero::before {
  top: 15%;
  right: calc(50% - 800px);
  width: 500px;
  height: 600px;
  background: var(--blue);
  opacity: 0.3;
  animation: luz 5s infinite;
}

.hero::after {
  top: 60%;
  right: calc(50% - 400px);
  width: 10000px;
  height: 300px;
  background: var(--blue-light);
  opacity: 0.3;
  animation: luz 5s 2s infinite;
}

.hero__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__pretitle {
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
}

.hero__title {
  font-size: 85px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  margin-top: -20px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(90deg, var(--gold) 0%, #F7DFB8 100%);
  border-radius: 50px;
  padding: 12px 20px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
  align-self: flex-start;
}

.hero__badge-img {
  height: 20px;
  width: auto;
}

.hero__subtitle {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--gold);
  max-width: 92%;
}

.hero__desc {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

.hero__content .btn {
  align-self: flex-start;
}

.hero__media {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-right: -20px;
}

.hero__logo {
  width: 220px;
}

.hero__product {
  width: 73%;
  max-width: none;
}

/* ============================================================
   VÍDEO
============================================================ */
.video-section {
  background-color: var(--bg-dark);
  background-image: url('../images/group_14.webp');
  background-size: cover;
  background-position: center center;
  padding: var(--section-py) 0;
}

.video-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.video-section__inner .section-title {
  max-width: 54%;
}

.video-section__embed {
  width: 60%;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.video-section__embed iframe {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-card);
}

/* ============================================================
   BENEFÍCIOS
============================================================ */
.benefits {
  background-color: #0B0E14;
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../images/group_14.webp');
  background-size: cover;
  background-position: center top;
  opacity: 0.32;
  z-index: 0;
  pointer-events: none;
}

.benefits__top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  min-height: 420px;
  padding-top: var(--section-py);
  padding-bottom: 0;
  position: relative;
  z-index: 1;
}

.benefits__heading {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 50px;
}

.benefits__heading .section-title {
  font-size: 40px;
  line-height: 1.2;
}

.benefits__subtitle {
  font-size: 24px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
}

.benefits__photo {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  align-self: stretch;
}

.benefits__photo img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Cards */
.benefits__cards-wrapper {
  background: linear-gradient(0deg, var(--blue) 0%, #05142A 100%);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.benefits__cards-wrapper::before,
.benefits__cards-wrapper::after {
  content: "";
  position: absolute;
  border-radius: 100%;
  filter: blur(150px);
  mix-blend-mode: screen;
  pointer-events: none;
}

.benefits__cards-wrapper::before {
  top: 15%;
  right: calc(50% - 800px);
  width: 500px;
  height: 600px;
  background: var(--blue);
  opacity: 0.3;
  animation: luz 5s infinite;
}

.benefits__cards-wrapper::after {
  top: 60%;
  right: calc(50% - 400px);
  width: 10000px;
  height: 300px;
  background: var(--blue-light);
  opacity: 0.3;
  animation: luz 5s 2s infinite;
}

.benefits__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.benefit-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  background-color: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 20px 24px;
}

.benefit-card__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  object-fit: contain;
}

.benefit-card__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--white);
}

/* ============================================================
   DEPOIMENTOS
============================================================ */
.testimonials {
  background-color: #0B0E14;
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../images/group_14.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
}

.testimonials__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.testimonials__inner .section-title {
  max-width: 54%;
}

.testimonials__videos {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  width: 72%;
}

.testimonial-video {
  flex: 1;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  max-height: 420px;
}

.testimonial-video iframe {
  width: 100%;
  height: 100%;
}

/* ============================================================
   FORMULÁRIO
============================================================ */
.form-section {
  background-color: var(--bg-body);
  padding: var(--section-py) 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.form-section__inner {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
}

.form-section__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-section__photo {
  border-radius: var(--radius-card);
  width: 75%;
}

.form-section__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-section__desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

.form-section__cta {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
}

/* Formulário */
.lp-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-form input,
.lp-form select {
  width: 100%;
  background-color: #ffffff;
  color: var(--blue);
  border: none;
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 400;
  outline: none;
  transition: box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.lp-form input::placeholder {
  color: #777;
}

.lp-form input:focus,
.lp-form select:focus {
  box-shadow: 0 0 0 3px rgba(6, 172, 70, 0.4);
}

.lp-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%2309306A' d='M5 7l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
  cursor: pointer;
}

.lp-form select option:first-child {
  color: #777;
}

.lp-form .btn {
  margin-top: 8px;
  font-size: 18px;
  padding: 16px;
}

.lp-form__msg {
  font-size: 14px;
  text-align: center;
  min-height: 20px;
}

.lp-form__msg--ok    { color: #0BE33D; }
.lp-form__msg--erro  { color: #ff4444; }

.investimento-readonly {
  cursor: not-allowed !important;
  background-color: #f0f0f0 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%2309306A' d='M5 7l5 5 5-5z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-size: 20px !important;
  padding-right: 40px !important;
  color: var(--blue) !important;
}

/* ============================================================
   RODAPÉ
============================================================ */
.footer {
  background-color: var(--bg-footer);
  padding: var(--section-py) 20px;
}

.footer__inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer__logo img {
  width: 180px;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
  line-height: 1.6;
}

.footer__contact a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__social-title {
  font-size: 15px;
  font-weight: 400;
}

.footer__social-links {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}

.footer__social-links img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  transition: opacity 0.2s;
}

.footer__social-links a:hover img {
  opacity: 0.75;
}

/* ============================================================
   BARRA INFERIOR
============================================================ */
.bottom-bar {
  background-color: var(--bg-bottom);
  text-align: center;
  padding: 20px;
}

.bottom-bar p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}

/* ============================================================
   RESPONSIVO — TABLET (≤ 1024px)
============================================================ */
@media (max-width: 1024px) {

  .hero__title { font-size: 66px; }

  .hero__media { flex: 0 0 42%; margin-right: -10px; }

  .hero__product { width: 100%; }

  .video-section__inner .section-title,
  .testimonials__inner .section-title {
    max-width: 77%;
  }

  .video-section__embed { width: 100%; }

  .benefits__top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .benefits__heading { flex: unset; }

  .testimonials__videos { width: 100%; }

  .form-section__inner {
    flex-direction: column;
  }

  .form-section__photo { width: 100%; }

  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__social-links { justify-content: center; }
}

/* ============================================================
   RESPONSIVO — MOBILE (≤ 767px)
============================================================ */
@media (max-width: 767px) {

  :root { --section-py: 50px; }

  .hero {
    min-height: unset;
  }

  .hero__inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .hero__content {
    align-items: center;
    order: 2;
  }

  .hero__content .btn {
    align-self: center;
  }

  .hero__media {
    flex: unset;
    width: 100%;
    margin-right: 0;
    order: 1;
  }

  .hero__logo { display: none; }

  .hero__product {
    width: 80%;
    margin: 0 auto;
  }

  .hero__badge {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    border-radius: 16px;
    padding: 10px 16px;
  }

  .hero__pretitle { font-size: 28px; line-height: 1.3; }
  .hero__title    { font-size: 54px; }
  .hero__subtitle { font-size: 20px; max-width: 100%; }

  .section-title  { font-size: 26px; }

  .video-section__inner .section-title,
  .testimonials__inner .section-title {
    max-width: 100%;
  }

  .testimonials__videos {
    flex-direction: column;
    width: 100%;
  }

  .testimonial-video {
    width: 100%;
  }

  .form-section__cta { font-size: 22px; }

  .btn { font-size: 17px; padding: 14px 28px; }
}
