/* ═══════════════════════════════════════════════
   onHUB Landing Page – estilos.css (Puro CSS)
   ═══════════════════════════════════════════════ */

/* ─── VARIÁVEIS E RESET ───────────────────────── */
:root {
  /* Cores */
  --brand-blue: #034991;
  --brand-blue-mid: #1269c2;
  --brand-blue-dark: #0e3d6e;
  --brand-navy: #011438;
  --brand-yellow: #ffbd1a;
  --white: #ffffff;
  --gray-light: #f3f3f4;
  --gray-border: #f0f0f0;

  /* Fontes */
  --font-sans: 'Noto Sans', sans-serif;
  --font-inter: 'Inter', sans-serif;
  --font-poppins: 'Poppins', sans-serif;
  --font-nunito: 'Nunito', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--white);
  color: var(--brand-navy);
  overflow-x: hidden;
  line-height: 1.5;
}

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

ul {
  list-style: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: transparent;
}

/* ─── CLASSES GERAIS E LAYOUT ────────────────── */
.container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 350px;
  }
}

.hidden {
  display: none !important;
}

.text-blue {
  color: var(--brand-blue);
}

.text-yellow {
  color: var(--brand-yellow);
}

.text-white {
  color: var(--white);
}

/* Tipografia Base */
h1,
h2,
h3,
h4 {
  font-family: var(--font-sans);
}

strong {
  font-weight: 700;
}

.section-title {
  font-weight: 800;
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 24px;
}

.section-desc {
  font-size: 14px;
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 38px;
  }

  .section-desc {
    font-size: 22px;
  }
}

/* Utilitários Extras */
.icon-24 {
  width: 24px;
  height: 24px;
}

.icon-32 {
  width: 32px;
  height: 32px;
}

.mt-mb {
  margin-bottom: 16px;
}

.mb-lg {
  margin-bottom: 40px;
}

/* ─── COMPONENTES COMPARTILHADOS ─────────────── */
.badge-outline {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--brand-yellow);
  color: var(--brand-blue);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12px;
  padding: 8px 20px;
  border-radius: 100px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.badge-outline.badge-white {
  color: var(--white);
}

@media (min-width: 1024px) {
  .badge-outline {
    font-size: 18px;
  }
}

.btn-primary,
.btn-primary-dark,
.btn-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 16px;
  padding: 10px 24px;
  border-radius: 100px;
  height: 44px;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--brand-blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--brand-blue-mid);
}

.btn-primary-dark {
  background: var(--brand-blue);
  color: var(--white);
}

.btn-primary-dark:hover {
  background: var(--brand-blue-dark);
}

.btn-yellow {
  background: var(--brand-yellow);
  color: var(--brand-navy);
}

.btn-yellow:hover {
  opacity: 0.88;
}

/* ─── NAVBAR ─────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.navbar-container {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .navbar-container {
    height: 125px;
  }
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo-img-1 {
  height: 32px;
  width: auto;
}

.logo-img-2 {
  height: 24px;
  width: auto;
}

@media (min-width: 1024px) {
  .logo-img-1 {
    height: 46px;
  }

  .logo-img-2 {
    height: 38px;
  }
}

.btn-portal-desktop {
  display: none;
  background: var(--brand-blue);
  color: var(--white);
  font-weight: 600;
  font-size: 18px;
  padding: 14px 20px;
  border-radius: 20px;
  transition: background 0.2s;
  align-items: center;
  gap: 8px;
}

.btn-portal-desktop:hover {
  background: var(--brand-blue-mid);
}

@media (min-width: 1024px) {
  .btn-portal-desktop {
    display: flex;
  }
}

.menu-btn-mobile {
  padding: 8px;
  margin-right: -4px;
}

@media (min-width: 1024px) {
  .menu-btn-mobile {
    display: none;
  }
}

.navbar-separator {
  height: 1px;
  background: var(--brand-yellow);
}

.mobile-menu {
  background: var(--white);
  border-top: 1px solid var(--gray-border);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  display: block;
  padding: 12px 4px;
  color: var(--brand-blue);
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid var(--gray-border);
  transition: color 0.15s;
}

.mobile-nav-link:hover {
  color: var(--brand-blue-mid);
}

.btn-portal-mobile {
  margin-top: 8px;
  background: var(--brand-blue);
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── MAIN E HERO ────────────────────────────── */
.main-content {
  padding-top: 65px;
}

@media (min-width: 1024px) {
  .main-content {
    padding-top: 126px;
  }
}

.hero-section {
  position: relative;
  min-height: 678px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero-section {
    min-height: 744px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-gif-desktop {
  display: none;
  position: absolute;
  top: -22%;
  left: 15%;
  width: 100%;
  height: auto;
  min-height: 150%;
  min-width: 85vw;
}

.hero-gif-mobile {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

@media (min-width: 1024px) {
  .hero-gif-desktop {
    display: block;
  }

  .hero-gif-mobile {
    display: none;
  }
}

.hero-overlay-desktop {
  display: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(105.91deg, rgb(3, 73, 145) 49.67%, rgba(1, 20, 56, 0) 61.65%),
    linear-gradient(90deg, rgba(3, 73, 145, .47) 0%, rgba(3, 73, 145, .47) 100%);
}

.hero-overlay-mobile {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 73, 145, 0) 28.84%, rgb(3, 73, 145) 52.66%),
    linear-gradient(90deg, rgba(3, 73, 145, .35) 0%, rgba(3, 73, 145, .35) 100%);
}

@media (min-width: 1024px) {
  .hero-overlay-desktop {
    display: block;
  }

  .hero-overlay-mobile {
    display: none;
  }
}

.hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 1024px) {
  .hero-container {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.hero-content {
  max-width: 611px;
}

.hero-headline-wrapper {
  position: relative;
  margin-bottom: 4px;
  display: inline-block;
}

.hero-title {
  font-weight: 800;
  font-size: 28px;
  color: var(--white);
  line-height: 1.2;
}

.hero-underline {
  position: absolute;
  bottom: -2px;
  right: 0;
  height: 3px;
  background: var(--brand-yellow);
  width: 73%;
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 60px;
  }

  .hero-underline {
    height: 6px;
  }
}

.hero-subtitle {
  font-weight: 800;
  font-size: 40px;
  color: var(--brand-yellow);
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-text {
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 32px;
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 77px;
    margin-bottom: 40px;
  }

  .hero-text {
    font-size: 24px;
    margin-bottom: 78px;
  }
}

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

@media (min-width: 1024px) {
  .hero-ctas {
    flex-direction: row;
    gap: 39px;
  }
}

.btn-hero-outline {
  border: 1px solid var(--brand-yellow);
  color: var(--white);
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  transition: all 0.2s;
}

.btn-hero-outline:hover {
  background: var(--brand-yellow);
  color: var(--brand-navy);
}

.btn-hero-filled {
  background: var(--brand-yellow);
  color: var(--brand-blue);
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  transition: opacity 0.2s;
}

.btn-hero-filled:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .btn-hero-outline,
  .btn-hero-filled {
    font-size: 18px;
    border-radius: 20px;
    min-height: 52px;
  }
}

.icon-hero-sm {
  width: 14px;
  height: auto;
}

.icon-hero-md {
  width: 20px;
  height: 20px;
}

@media (min-width: 1024px) {
  .icon-hero-sm {
    width: 19px;
  }

  .icon-hero-md {
    width: 24px;
    height: 24px;
  }
}

/* ─── SEÇÃO SOLUÇÕES ─────────────────────────── */
.section-solucoes {
  padding: 60px 0;
  background: var(--white);
}

.solucoes-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 1024px) {
  .solucoes-grid {
    flex-direction: row;
    align-items: flex-end;
  }
}

.solucoes-text-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (min-width: 1024px) {
  .solucoes-text-col {
    width: 332px;
    flex-shrink: 0;
    gap: 40px;
  }
}

.solucoes-cards-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

@media (min-width: 1024px) {
  .solucoes-cards-col {
    flex-direction: row;
    gap: 28px;
  }
}

.product-card {
  background: var(--brand-yellow);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media (min-width: 1024px) {
  .product-card {
    width: 264px;
    min-height: 363px;
    flex: none;
  }
}

.product-card-img-box {
  background: var(--brand-blue-mid);
  height: 139px;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card-img-box img {
  height: 132px;
  object-fit: contain;
}

.product-card-img-box .img-wifi {
  height: 124px;
}

.product-card-img-box .img-gestao {
  height: 114px;
}

.product-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-card-body h3 {
  font-weight: 700;
  font-size: 18px;
  color: var(--brand-blue);
}

.product-card-body ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-family: var(--font-inter);
  font-size: 14px;
  color: var(--brand-blue);
  line-height: 1.2;
}

.bullet-item::before {
  content: '';
  display: inline-block;
  background-image: url('../imagens/a560100d-5773-4223-9bdc-f78d26758313.svg');
  background-size: contain;
  background-repeat: no-repeat;
  width: 13px;
  height: 9px;
  flex-shrink: 0;
  margin-top: 4px;
}

/* ─── SEÇÃO O QUE É? ─────────────────────────── */
.section-oquee {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(254.15deg, rgb(1, 20, 56) 12.5%, rgb(3, 73, 145) 67.79%);
}

.oquee-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 1024px) {
  .oquee-grid {
    flex-direction: row;
    gap: 100px;
    align-items: flex-start;
  }
}

.oquee-text {
  flex: 1;
}

@media (min-width: 1024px) {
  .oquee-text {
    max-width: 542px;
  }
}

.oquee-video {
  width: 100%;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .oquee-video {
    width: 592px;
  }
}

.video-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--white);
  font-weight: 500;
  font-size: 12px;
}

@media (min-width: 1024px) {
  .video-label {
    font-size: 18px;
  }
}

.icon-arrow-down {
  width: 12px;
  transform: rotate(-90deg);
}

@media (min-width: 1024px) {
  .icon-arrow-down {
    width: 20px;
  }
}

/* ================================================== */
/* ─── UTILITÁRIOS EXTRAS (Adicionais) ────────── */
.text-center {
  text-align: center;
}

.badge-blue {
  border-color: var(--brand-blue-mid);
  color: var(--brand-blue-mid);
}

.mt-lg {
  margin-top: 40px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.icon-20 {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.flex-center {
  display: flex;
  justify-content: center;
}

/* ─── SERVIÇOS / PLANOS ──────────────────────── */
.section-servicos {
  padding: 60px 0;
  background: var(--brand-yellow);
}

.servicos-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}

.servicos-header-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  max-width: 963px;
}

@media (min-width: 1024px) {
  .servicos-header {
    margin-bottom: 50px;
  }
}

.planos-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 1024px) {
  .planos-grid {
    flex-direction: row;
    gap: 19px;
  }
}

.plan-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .plan-card {
    width: 384px;
    flex: none;
  }
}

.plan-header {
  background: var(--brand-blue);
  border-radius: 20px 20px 0 0;
  height: 113px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 16px;
  gap: 8px;
}

.plan-icon {
  width: 28px;
  height: auto;
  object-fit: contain;
  margin-bottom: 3px;
}

.plan-icon-lg {
  width: 55px;
  height: auto;
  object-fit: contain;
  margin-bottom: 5px;
}

.plan-icon-xl {
  width: 88px;
  height: auto;
  object-fit: contain;
  margin-bottom: 2px;
}

.plan-title {
  font-weight: 700;
  font-size: 32px;
  color: var(--white);
  text-align: center;
  line-height: 1.2;
}

.plan-body {
  border: 1px solid var(--brand-blue);
  border-top: none;
  border-radius: 0 0 20px 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: var(--white);
}

.plan-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  flex: 1;
}

.plan-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--brand-blue);
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .plan-item {
    font-size: 18px;
  }
}

.plan-item::before {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  margin-top: 6px;
  width: 13px;
  height: 9px;
  background-image: url('../imagens/d66de350-1e83-4c84-b5d3-e754b0c15dd1.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

/* ─── ATUAÇÃO ────────────────────────────────── */
.section-atuacao {
  padding: 60px 0;
  background: var(--white);
}

.atuacao-banner {
  position: relative;
  background: var(--brand-blue);
  border-radius: 20px;
  overflow: hidden;
  min-height: 294px;
  display: flex;
  align-items: center;
}

.atuacao-content {
  position: relative;
  z-index: 10;
  padding: 32px;
  max-width: 700px;
}

@media (min-width: 1024px) {
  .atuacao-content {
    padding: 60px;
  }
}

.atuacao-title {
  font-weight: 800;
  font-size: 30px;
  color: var(--brand-yellow);
  line-height: 1.2;
  margin-bottom: 16px;
}

.atuacao-desc {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .atuacao-title {
    font-size: 36px;
  }

  .atuacao-desc {
    font-size: 34px;
  }
}

.atuacao-img-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  display: none;
  align-items: flex-end;
  pointer-events: none;
}

.atuacao-img {
  height: 346px;
  width: auto;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .atuacao-img-wrapper {
    display: flex;
  }
}

/* ─── SEGMENTOS ──────────────────────────────── */
.section-segmentos {
  padding: 60px 0;
  background: var(--white);
}

.segmentos-grid-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.segmentos-grid-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
  justify-content: center;
}

@media (min-width: 1024px) {
  .segmentos-grid-top {
    flex-direction: row;
    gap: 22px;
  }

  .segmentos-grid-bottom {
    flex-direction: row;
    gap: 32px;
  }
}

.segment-card {
  border: 3px solid var(--brand-blue);
  border-radius: 30px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 195px;
  flex: 1;
}

.segment-card-lg {
  flex: none;
}

@media (min-width: 1024px) {
  .segment-card {
    padding: 40px;
    min-height: 260px;
    gap: 24px;
  }

  .segment-card-lg {
    width: 393px;
  }
}

.segment-icon {
  height: 35px;
  width: auto;
}

@media (min-width: 1024px) {
  .segment-icon {
    height: 60px;
  }
}

.segment-title {
  font-weight: 800;
  font-size: 20px;
  color: var(--brand-blue);
  text-align: center;
}

.segment-desc {
  font-family: var(--font-nunito);
  font-size: 14px;
  color: var(--brand-blue);
  text-align: center;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .segment-title {
    font-size: 22px;
  }

  .segment-desc {
    font-size: 16px;
  }
}

/* ─── PILOTO ─────────────────────────────────── */
.section-piloto {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(193.24deg, rgb(1, 20, 56) 26.04%, rgb(3, 73, 145) 64.55%);
}

.piloto-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-end;
}

@media (min-width: 1024px) {
  .piloto-grid {
    flex-direction: row;
    gap: 156px;
  }
}

.piloto-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 1024px) {
  .piloto-text {
    width: 475px;
  }
}

.piloto-img-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 16px;
}

.piloto-img-bg {
  position: absolute;
  bottom: 0;
  left: 32px;
  right: 32px;
  height: 189px;
  background: var(--brand-blue-mid);
  border-radius: 16px;
}

.piloto-img {
  position: relative;
  z-index: 10;
  height: 261px;
  width: auto;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .piloto-img-wrapper {
    display: block;
    width: 588px;
    height: 427px;
    flex-shrink: 0;
    margin-top: 0;
  }

  .piloto-img-bg {
    left: 0;
    right: 0;
    height: 342px;
    border-radius: 20px;
  }

  .piloto-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: auto;
  }
}

/* ─── CONTATO ────────────────────────────────── */
.section-contato {
  padding: 60px 0;
  background: var(--white);
}

.contato-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .contato-grid {
    flex-direction: row;
    gap: 80px;
  }
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .contato-info {
    width: 491px;
  }
}

.contato-selo {
  width: 200px;
  object-fit: contain;
  margin-top: 16px;
}

@media (min-width: 1024px) {
  .contato-selo {
    width: 305px;
  }
}

.contato-form {
  border: 2px solid var(--brand-blue);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  width: 100%;
}

@media (min-width: 1024px) {
  .contato-form {
    border-radius: 45px;
    padding: 60px;
    max-width: 592px;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-label {
  font-family: var(--font-poppins);
  font-weight: 500;
  color: var(--brand-blue);
  font-size: 18px;
}

@media (min-width: 1024px) {
  .form-label {
    font-size: 20px;
  }
}

.form-input {
  background: var(--gray-light);
  border: none;
  border-radius: 10px;
  height: 49px;
  padding: 0 16px;
  color: var(--brand-blue);
  font-family: var(--font-poppins);
  font-size: 16px;
  width: 100%;
  outline: none;
  transition: box-shadow 0.2s;
}

.form-input:focus {
  box-shadow: 0 0 0 2px var(--brand-blue);
}

@media (min-width: 1024px) {
  .form-input {
    height: 60px;
  }
}

.form-disclaimer {
  font-family: var(--font-poppins);
  color: var(--brand-blue);
  font-size: 12px;
  line-height: 1.5;
}

.btn-submit {
  width: 100%;
  color: var(--white);
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 18px;
  padding: 16px 24px;
  border-radius: 40px;
  background: linear-gradient(90deg, #034991 48.54%, #1269c2 118.13%);
  border: none;
  transition: opacity 0.2s;
}

.btn-submit:hover {
  opacity: 0.90;
}

.form-success {
  color: #16a34a;
  font-weight: 600;
  text-align: center;
  padding: 8px 0;
}

/* ─── FAQ ────────────────────────────────────── */
.section-faq {
  padding: 60px 0;
  position: relative;
  background: linear-gradient(193.24deg, rgb(1, 20, 56) 26.04%, rgb(3, 73, 145) 64.55%);
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .faq-grid {
    flex-direction: row;
    gap: 85px;
  }
}

.faq-img-wrapper {
  display: none;
  position: relative;
  width: 489px;
  flex-shrink: 0;
}

.faq-img-bg {
  background: var(--brand-blue-mid);
  border-radius: 20px;
  height: 358px;
  width: 489px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.faq-img {
  position: relative;
  z-index: 10;
  width: 438px;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .faq-img-wrapper {
    display: block;
  }
}

.faq-content-area {
  flex: 1;
  width: 100%;
}

.faq-title {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 32px;
}

@media (min-width: 1024px) {
  .faq-title {
    font-size: 32px;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(217, 217, 217, 0.5);
  padding: 16px 0;
}

.faq-item.no-border {
  border-bottom: none;
}

.faq-trigger {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
}

.faq-trigger:focus-visible {
  outline: 2px solid var(--brand-yellow);
  outline-offset: 4px;
  border-radius: 4px;
}

.faq-question {
  font-weight: 500;
  font-size: 14px;
  color: var(--brand-yellow);
}

@media (min-width: 1024px) {
  .faq-question {
    font-size: 20px;
  }
}

.faq-content {
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.faq-answer {
  color: var(--white);
  font-size: 13px;
  line-height: 1.5;
  padding: 12px 0 8px 40px;
}

@media (min-width: 1024px) {
  .faq-answer {
    font-size: 18px;
    padding-left: 52px;
  }
}

/* ─── FOOTER ─────────────────────────────────── */
.footer {
  padding: 60px 0;
  background: var(--white);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 32px;
}

@media (min-width: 1024px) {
  .footer-grid {
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    margin-bottom: 34px;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (min-width: 1024px) {
  .footer-logo {
    width: 250px;
  }
}

.footer-img-1 {
  height: 50px;
  width: auto;
}

.footer-img-2 {
  height: 36px;
  width: auto;
}

@media (min-width: 1024px) {
  .footer-img-1 {
    height: 60px;
  }

  .footer-img-2 {
    height: 42px;
  }
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-title {
  font-weight: 700;
  font-size: 18px;
  color: var(--brand-blue);
}

.footer-text {
  color: var(--brand-blue);
  font-size: 14px;
  line-height: 1.2;
  max-width: 345px;
}

@media (min-width: 1024px) {
  .footer-text {
    font-size: 16px;
  }
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-email {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: opacity 0.2s;
  font-family: var(--font-poppins);
  font-weight: 500;
  color: var(--brand-blue);
  font-size: 14px;
}

.footer-email:hover {
  opacity: 0.7;
}

@media (min-width: 1024px) {
  .footer-email {
    font-size: 16px;
  }
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--brand-blue);
  font-weight: 500;
  font-size: 14px;
}

.social-icon {
  background: var(--brand-yellow);
  border-radius: 50%;
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.social-icon:hover {
  opacity: 0.8;
}

.social-icon img {
  width: 18px;
  height: auto;
}

.social-icon.img-fill {
  background: transparent;
  overflow: hidden;
}

.social-icon.img-fill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-bottom {
  border-top: 1px solid var(--gray-border);
  padding-top: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (min-width: 1024px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom p {
  font-family: var(--font-inter);
  color: #606060;
  font-size: 13px;
  text-align: center;
}

@media (min-width: 1024px) {
  .footer-bottom p {
    text-align: left;
  }
}

.footer-logo-sm {
  height: 18px;
  width: auto;
}

/* ================================================== */

.video-thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

.video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 105, 194, 0.67);
  transition: background 0.2s;
}

.video-thumb:hover .video-overlay {
  background: rgba(0, 0, 0, 0.08);
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-btn img {
  width: 53px;
  transition: transform 0.2s;
}

.video-thumb:hover .video-play-btn img {
  transform: scale(1.1);
  filter: drop-shadow(0px 2px 28px #fff);
}

@media (min-width: 1024px) {
  .video-play-btn img {
    width: 80px;
  }
}

/* ─── VANTAGENS ──────────────────────────────── */
.section-vantagens {
  padding: 60px 0;
  background: var(--white);
}

.vantagens-header {
  margin-bottom: 32px;
}

@media (min-width: 1024px) {
  .vantagens-header {
    margin-bottom: 60px;
  }
}

.vantagens-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 1024px) {
  .vantagens-grid {
    flex-direction: row;
    gap: 0;
    align-items: flex-start;
  }
}

.vantagens-lista {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

@media (min-width: 1024px) {
  .vantagens-lista {
    gap: 83px;
    padding-right: 40px;
  }
}

.vantagens-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vantagens-item p {
  font-weight: 800;
  font-size: 16px;
  color: var(--brand-blue);
}

@media (min-width: 1024px) {
  .vantagens-item {
    gap: 16px;
  }

  .vantagens-item p {
    font-size: 24px;
  }
}

.vantagem-icon-img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .vantagem-icon-img {
    width: 63px;
    height: 63px;
  }
}

.icon-box {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--brand-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box img {
  width: 24px;
  height: auto;
}

@media (min-width: 1024px) {
  .icon-box {
    width: 63px;
    height: 63px;
    border-radius: 12px;
  }

  .icon-box img {
    width: 32px;
  }

  /* Aproximado para os vários icones */
}

.vantagens-personagem {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.personagem-bg {
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 161px;
  background: var(--brand-blue-mid);
  border-radius: 14px;
}

.personagem-img {
  position: relative;
  z-index: 10;
  height: 226px;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .vantagens-personagem {
    display: flex;
    width: 575px;
    height: 610px;
    flex-shrink: 0;
    align-items: flex-end;
    justify-content: flex-end;
    margin-top: 0;
  }

  .personagem-bg {
    left: auto;
    right: 0;
    width: 528px;
    height: 455px;
  }

  .personagem-img {
    height: 553px;
  }
}




/* ---------------------------------------------------------- */

.youtube_widget {
  display: flex;
  width: 100%;
  height: auto;
  border-radius: 32px;
  margin: 40px 0;
  cursor: pointer;
  background: #000;
}

.hideme {
  display: none !important;
}

iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  border-radius: 32px !important;
}

.transition {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.floating {
  animation-name: floating;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  padding: 20px 0;
  margin-bottom: 10px;
}

@keyframes floating {
  from {
    transform: translate(0, 0px);
  }

  65% {
    transform: translate(0, 15px);
  }

  to {
    transform: translate(0, -0px);
  }
}