/* =========================================================
   ALF ENERGIA - Landing Page
   Stack: HTML5 + CSS3 + JS Vanilla
   Paleta: Azul marinho #0d1a4a / Azul claro #3ba9e0 / Verde WA #25d366
   ========================================================= */

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

:root {
  /* Cores */
  --navy-deep: #0a1538;
  --navy: #0d1a4a;
  --navy-light: #1e2a5e;
  --blue-bright: #3ba9e0;
  --blue-bright-dark: #2a8cc4;
  --cyan-glow: #5fc4f5;
  --white: #ffffff;
  --off-white: #f3f6fb;
  --gray-100: #e8edf5;
  --gray-300: #b8c2d4;
  --gray-500: #6b7488;
  --gray-700: #2d3447;
  --wa-green: #25d366;
  --wa-green-dark: #1ebe5b;
  --solar-yellow: #ffc83a;

  /* Tipografia */
  --font-display: 'Archivo', 'Sora', system-ui, -apple-system, sans-serif;
  --font-body: 'Manrope', 'Inter', system-ui, -apple-system, sans-serif;

  /* Espaçamentos */
  --container: 1200px;
  --container-tight: 980px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(10, 21, 56, 0.08);
  --shadow: 0 8px 28px rgba(10, 21, 56, 0.12);
  --shadow-lg: 0 18px 50px rgba(10, 21, 56, 0.18);
  --shadow-glow: 0 0 40px rgba(59, 169, 224, 0.35);

  /* Transições */
  --t-fast: 180ms ease;
  --t: 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

/* ---------- LAYOUT HELPERS ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section--tight { padding: 70px 0; }

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.section-title--dark { color: var(--white); }

.section-title .accent { color: var(--blue-bright); }

.section-sub {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-sub--dark { color: var(--gray-300); }

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

/* ---------- BOTÕES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  white-space: nowrap;
  line-height: 1;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--wa {
  background: var(--wa-green);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.btn--wa:hover {
  background: var(--wa-green-dark);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.65);
}

.btn--ghost {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
}

.btn--ghost:hover {
  background: var(--off-white);
}

.btn--lg {
  padding: 19px 36px;
  font-size: 17px;
}

.btn .ic-wa {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 21, 56, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: padding var(--t);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.header__logo img {
  height: 44px;
  width: auto;
}

.header__cta {
  padding: 12px 20px;
  font-size: 14px;
}

.header__cta .ic-wa { width: 16px; height: 16px; }

@media (max-width: 520px) {
  .header__logo img { height: 36px; }
  .header__cta { padding: 10px 16px; font-size: 13px; }
  .header__cta-text-full { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 160px 0 100px;
  color: var(--white);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-light) 100%);
}

/* Foto de fundo */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

/* Overlay escuro por cima da foto pra dar legibilidade ao texto */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg,
      rgba(10, 21, 56, 0.96) 0%,
      rgba(10, 21, 56, 0.86) 35%,
      rgba(13, 26, 74, 0.62) 60%,
      rgba(13, 26, 74, 0.38) 100%),
    radial-gradient(ellipse 70% 60% at 12% 30%, rgba(59, 169, 224, 0.20) 0%, transparent 65%);
}

/* Grid de pontos decorativo sutil */
.hero__overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 30% center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 30% center, black 0%, transparent 70%);
}

.hero__inner {
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 680px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(59, 169, 224, 0.18);
  border: 1px solid rgba(59, 169, 224, 0.4);
  font-size: 13px;
  font-weight: 500;
  color: var(--cyan-glow);
  margin-bottom: 24px;
  width: fit-content;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero__badge .dot {
  width: 8px;
  height: 8px;
  background: var(--blue-bright);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--blue-bright);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  text-shadow: 0 2px 24px rgba(10, 21, 56, 0.5);
}

.hero__title .highlight {
  color: var(--blue-bright);
  position: relative;
}

.hero__title .highlight::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 8px;
  background: rgba(59, 169, 224, 0.22);
  border-radius: 4px;
  z-index: -1;
}

.hero__sub {
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--gray-100);
  margin-bottom: 36px;
  max-width: 600px;
  line-height: 1.6;
  text-shadow: 0 1px 12px rgba(10, 21, 56, 0.4);
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 520px;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.hero__stat-num .unit {
  color: var(--blue-bright);
}

.hero__stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-300);
}

@media (max-width: 920px) {
  .hero {
    padding: 130px 0 80px;
  }
}

@media (max-width: 520px) {
  .hero {
    padding: 120px 0 70px;
  }
  /* Em mobile, botão CTA grande pode quebrar texto pra caber */
  .hero__ctas .btn--lg {
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    padding: 16px 22px;
    font-size: 15px;
  }
  .hero__ctas {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .hero__ctas .btn { width: 100%; }
  .hero__stats { gap: 16px; }
}

/* ---------- BENEFITS STRIP ---------- */
.benefits {
  background: var(--white);
  padding: 50px 0;
  border-bottom: 1px solid var(--gray-100);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.benefit__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--cyan-glow) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(59, 169, 224, 0.3);
}

.benefit__icon svg { width: 24px; height: 24px; }

.benefit__text strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
  line-height: 1.2;
}

.benefit__text span {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.45;
}

@media (max-width: 840px) {
  .benefits__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 480px) {
  .benefits__grid { grid-template-columns: 1fr; }
}

/* ---------- SERVICES ---------- */
.services {
  background: var(--off-white);
}

.services__header {
  text-align: center;
  margin-bottom: 60px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-bright);
}

.service-card--featured {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  border-color: transparent;
}

.service-card--featured::before {
  content: 'Diferencial ALF';
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--solar-yellow);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  z-index: 1;
}

.service-card--featured .service-card__title {
  padding-right: 70px;
}

.service-card--featured:hover {
  border-color: var(--blue-bright);
}

.service-card__icon {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--cyan-glow) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(59, 169, 224, 0.3);
}

.service-card--featured .service-card__icon {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.service-card__icon svg { width: 30px; height: 30px; }

.service-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card--featured .service-card__title { color: var(--white); }

.service-card__desc {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 22px;
  line-height: 1.6;
}

.service-card--featured .service-card__desc { color: var(--gray-300); }

.service-card__list {
  list-style: none;
  margin-bottom: 26px;
  flex: 1;
}

.service-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
  margin-bottom: 10px;
  line-height: 1.45;
}

.service-card--featured .service-card__list li { color: var(--gray-100); }

.service-card__list li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--blue-bright);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 13px 13px;
  background-position: center;
  background-repeat: no-repeat;
}

.service-card__cta {
  width: 100%;
  padding: 14px;
  font-size: 14px;
  margin-top: auto;
}

@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

@media (max-width: 560px) {
  .services__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ---------- DIFERENCIAL HIGHLIGHT ---------- */
.diferencial {
  position: relative;
  color: var(--white);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
}

/* Foto de fundo */
.diferencial__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.diferencial__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

/* Overlay escuro sobre a foto, mais forte à esquerda pra legibilidade do texto */
.diferencial::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg,
      rgba(10, 21, 56, 0.97) 0%,
      rgba(10, 21, 56, 0.93) 42%,
      rgba(13, 26, 74, 0.78) 68%,
      rgba(13, 26, 74, 0.62) 100%),
    radial-gradient(ellipse 70% 70% at 80% 50%, rgba(59, 169, 224, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.diferencial__inner {
  position: relative;
  z-index: 2;
}

.diferencial__content {
  max-width: 620px;
}

.diferencial__badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--solar-yellow);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.diferencial__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(10, 21, 56, 0.5);
}

.diferencial__title .accent { color: var(--blue-bright); }

.diferencial__text {
  font-size: 16px;
  color: var(--gray-100);
  margin-bottom: 18px;
  line-height: 1.65;
}

.diferencial__list {
  list-style: none;
  margin: 28px 0 36px;
}

.diferencial__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--gray-100);
  line-height: 1.5;
}

.diferencial__list svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--blue-bright);
  margin-top: 2px;
}

/* ---------- COMO FUNCIONA ---------- */
.steps {
  background: var(--off-white);
}

.steps__header {
  text-align: center;
  margin-bottom: 70px;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}

/* Linha conectora */
.steps__grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-bright) 0%, var(--blue-bright) 100%);
  background-size: 16px 2px;
  background-image: linear-gradient(90deg, var(--blue-bright) 50%, transparent 50%);
  background-repeat: repeat-x;
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__num {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  background: var(--white);
  border: 2px solid var(--blue-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--blue-bright);
  position: relative;
  box-shadow: 0 4px 14px rgba(59, 169, 224, 0.25);
  transition: transform var(--t), background var(--t), color var(--t);
}

.step:hover .step__num {
  background: var(--blue-bright);
  color: var(--white);
  transform: scale(1.05);
}

.step__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.25;
}

.step__desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
}

@media (max-width: 920px) {
  .steps__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 20px;
  }
  .steps__grid::before { display: none; }
}

@media (max-width: 480px) {
  .steps__grid { grid-template-columns: 1fr; }
}

/* ---------- PARA QUEM ---------- */
.para-quem {
  position: relative;
  background: var(--navy-deep);
  overflow: hidden;
}

/* Foto de fundo */
.para-quem__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.para-quem__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Overlay escuro sobre a foto */
.para-quem::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 21, 56, 0.93) 0%, rgba(13, 26, 74, 0.88) 100%),
    radial-gradient(ellipse 60% 70% at 80% 30%, rgba(59, 169, 224, 0.18) 0%, transparent 65%);
}

.para-quem .container {
  position: relative;
  z-index: 2;
}

.para-quem__header {
  text-align: center;
  margin-bottom: 60px;
}

.para-quem__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.target {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t), background var(--t);
}

.target:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-bright);
  background: rgba(255, 255, 255, 0.1);
}

.target__icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--cyan-glow) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  position: relative;
  box-shadow: 0 8px 20px rgba(59, 169, 224, 0.35);
}

.target__icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  opacity: 0.6;
}

.target__icon svg { width: 36px; height: 36px; }

.target__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.target__desc {
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.5;
}

@media (max-width: 840px) {
  .para-quem__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .para-quem__grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
}

/* ---------- GALERIA (CARROSSEL) ---------- */
.galeria {
  background: var(--off-white);
  overflow: hidden;
}

.galeria__header {
  text-align: center;
  margin-bottom: 56px;
}

.carousel {
  position: relative;
  margin-bottom: 32px;
}

.carousel__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Padding lateral pra espaço com as setas */
  padding: 8px 24px 24px;
}

@media (min-width: 1024px) {
  .carousel__track {
    padding-left: 100px;
    padding-right: 100px;
  }
}

@media (min-width: 1440px) {
  .carousel__track {
    padding-left: 120px;
    padding-right: 120px;
  }
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

.carousel__item {
  position: relative;
  flex: 0 0 auto;
  width: clamp(280px, 32vw, 460px);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  box-shadow: var(--shadow);
  transition: transform var(--t), box-shadow var(--t);
}

.carousel__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.carousel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 600ms ease;
}

.carousel__item picture {
  display: block;
  width: 100%;
  height: 100%;
}

.carousel__item:hover img {
  transform: scale(1.04);
}

.carousel__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 60px 22px 22px;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 21, 56, 0.85) 70%, rgba(10, 21, 56, 0.95) 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  pointer-events: none;
}

/* Item de vídeo no carrossel */
.carousel__item--video {
  cursor: pointer;
}

.carousel__item--video .carousel__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 82px;
  height: 82px;
  background: var(--blue-bright);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 36px rgba(59, 169, 224, 0.55), 0 0 0 6px rgba(255, 255, 255, 0.18);
  transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  z-index: 2;
  cursor: pointer;
  border: none;
}

.carousel__item--video:hover .carousel__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--blue-bright-dark);
  box-shadow: 0 16px 40px rgba(59, 169, 224, 0.7), 0 0 0 8px rgba(255, 255, 255, 0.22);
}

.carousel__item--video .carousel__play svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}

.carousel__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

/* Setas de navegação */
.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: var(--white);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 10;
  transition: transform var(--t-fast), background var(--t-fast), opacity var(--t-fast);
  cursor: pointer;
}

.carousel__nav:hover {
  background: var(--blue-bright);
  color: var(--white);
  transform: translateY(-50%) scale(1.08);
}

.carousel__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.carousel__nav svg {
  width: 24px;
  height: 24px;
}

.carousel__nav--prev {
  left: 16px;
}

.carousel__nav--next {
  right: 16px;
}

/* Em telas médias-grandes, setas vão pras laterais externas (extremidades da tela) */
@media (min-width: 1024px) {
  .carousel__nav--prev {
    left: 28px;
  }
  .carousel__nav--next {
    right: 28px;
  }
}

@media (min-width: 1440px) {
  .carousel__nav--prev {
    left: 40px;
  }
  .carousel__nav--next {
    right: 40px;
  }
}

/* Bullets/dots de paginação */
.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: background var(--t-fast), width var(--t-fast);
  padding: 0;
}

.carousel__dot:hover {
  background: var(--blue-bright);
}

.carousel__dot.is-active {
  background: var(--blue-bright);
  width: 28px;
  border-radius: 4px;
}

/* --- Affordance de clique nas fotos (abrir maior) --- */
.carousel__item:not(.carousel__item--video) {
  cursor: zoom-in;
}

/* Scrim que aparece no hover/focus pra indicar interatividade */
.carousel__item:not(.carousel__item--video)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,21,56,0.18) 0%, rgba(10,21,56,0) 35%);
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
  z-index: 1;
}
.carousel__item:not(.carousel__item--video):hover::after,
.carousel__item:not(.carousel__item--video):focus-visible::after {
  opacity: 1;
}

/* Ícone de lupa no canto — sempre visível, cresce no hover */
.carousel__zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(10, 21, 56, 0.55);
  color: var(--white);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 14px rgba(10, 21, 56, 0.3);
  transition: transform var(--t-fast), background var(--t-fast);
  pointer-events: none;
}
.carousel__zoom svg { width: 19px; height: 19px; }

.carousel__item:hover .carousel__zoom,
.carousel__item:focus-visible .carousel__zoom {
  transform: scale(1.12);
  background: var(--blue-bright);
}

.carousel__item:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 3px;
}

/* ---------- LIGHTBOX (foto ampliada) ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(6, 12, 30, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t), visibility var(--t);
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__content {
  position: relative;
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.96);
  transition: transform var(--t);
}
.lightbox.is-open .lightbox__content { transform: scale(1); }

.lightbox__content img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.lightbox__caption {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
}
.lightbox__counter {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--gray-300);
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background var(--t-fast), transform var(--t-fast);
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.25); transform: rotate(90deg); }
.lightbox__close svg { width: 24px; height: 24px; }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background var(--t-fast), transform var(--t-fast);
}
.lightbox__nav:hover { background: var(--blue-bright); }
.lightbox__nav--prev { left: 18px; }
.lightbox__nav--next { right: 18px; }
.lightbox__nav--prev:hover { transform: translateY(-50%) translateX(-2px); }
.lightbox__nav--next:hover { transform: translateY(-50%) translateX(2px); }
.lightbox__nav svg { width: 26px; height: 26px; }

@media (max-width: 540px) {
  .lightbox { padding: 12px; }
  .lightbox__nav { width: 44px; height: 44px; bottom: 14px; top: auto; transform: none; }
  .lightbox__nav svg { width: 22px; height: 22px; }
  .lightbox__nav--prev { left: 24%; }
  .lightbox__nav--next { right: 24%; }
  .lightbox__content img { max-height: 68vh; }
  .lightbox__caption { margin-bottom: 56px; text-align: center; flex-direction: column; gap: 8px; }
}

@media (max-width: 920px) {
  .carousel__item {
    width: clamp(260px, 65vw, 380px);
  }
  .carousel__nav {
    width: 44px;
    height: 44px;
  }
  .carousel__nav svg { width: 20px; height: 20px; }
}

@media (max-width: 540px) {
  .carousel__track {
    padding-left: 24px;
    padding-right: 24px;
    gap: 14px;
  }
  .carousel__item {
    width: 78vw;
    max-width: 320px;
  }
  /* No mobile, setas ficam menos prominentes (usuário arrasta) */
  .carousel__nav {
    display: none;
  }
}

/* ---------- SOBRE ---------- */
.sobre {
  background: var(--white);
}

.sobre__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.sobre__visual {
  position: relative;
}

.sobre__logo-wrap {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 70px 40px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sobre__logo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(59, 169, 224, 0.25) 0%, transparent 60%);
}

.sobre__logo-wrap img {
  position: relative;
  z-index: 1;
  max-width: 80%;
}

.sobre__values {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: var(--white);
  padding: 22px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.sobre__values strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sobre__values-list {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  max-width: 200px;
}

.sobre__values-list span {
  font-size: 11px;
  padding: 4px 10px;
  background: var(--off-white);
  color: var(--navy);
  border-radius: var(--radius-pill);
  font-weight: 500;
}

.sobre__content h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.sobre__content h2 .accent { color: var(--blue-bright); }

.sobre__content p {
  font-size: 16px;
  color: var(--gray-700);
  margin-bottom: 16px;
  line-height: 1.7;
}

.sobre__mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px 0 32px;
}

.mission-box {
  padding: 18px 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--blue-bright);
}

.mission-box strong {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-bright);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.mission-box span {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.5;
}

@media (max-width: 920px) {
  .sobre__inner { grid-template-columns: 1fr; gap: 70px; }
  .sobre__visual { max-width: 420px; margin: 0 auto; }
  .sobre__values { bottom: -25px; right: 10px; }
}

@media (max-width: 480px) {
  .sobre__mission { grid-template-columns: 1fr; }
  .sobre__values { position: relative; bottom: auto; right: auto; margin-top: 20px; }
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--off-white);
}

.faq__inner {
  max-width: var(--container-tight);
  margin: 0 auto;
}

.faq__header {
  text-align: center;
  margin-bottom: 50px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.faq-item[open] {
  border-color: var(--blue-bright);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  list-style: none;
  padding: 22px 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  transition: color var(--t-fast);
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }

.faq-item summary:hover { color: var(--blue-bright); }

.faq-item__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-bright);
  transition: transform var(--t), background var(--t);
}

.faq-item[open] .faq-item__icon {
  background: var(--blue-bright);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-item__icon svg { width: 16px; height: 16px; }

.faq-item__body {
  padding: 0 26px 24px;
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.65;
}

.faq-item__body p + p { margin-top: 12px; }

@media (max-width: 540px) {
  .faq-item summary { padding: 18px 20px; font-size: 15px; }
  .faq-item__body { padding: 0 20px 20px; font-size: 14px; }
}

/* ---------- CTA FINAL ---------- */
.cta-final {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

/* Foto de fundo */
.cta-final__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-final__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Overlay azul escuro sobre a foto */
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 90% 100% at 50% 50%, rgba(13, 26, 74, 0.62) 0%, rgba(10, 21, 56, 0.82) 80%),
    linear-gradient(180deg, rgba(10, 21, 56, 0.62) 0%, rgba(10, 21, 56, 0.72) 100%);
  pointer-events: none;
}

.cta-final__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(10, 21, 56, 0.6);
}

.cta-final__title .accent { color: var(--blue-bright); }

.cta-final__sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--gray-100);
  margin-bottom: 40px;
  line-height: 1.55;
  text-shadow: 0 1px 12px rgba(10, 21, 56, 0.5);
}

.cta-final .btn { padding: 22px 44px; font-size: 18px; }

.cta-final__perks {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cta-final__perks span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-300);
}

.cta-final__perks svg {
  width: 18px;
  height: 18px;
  color: var(--blue-bright);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy-deep);
  color: var(--gray-300);
  padding: 60px 0 28px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand img {
  height: 50px;
  margin-bottom: 18px;
}

.footer__brand p {
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.6;
  max-width: 320px;
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.footer__col ul {
  list-style: none;
}

.footer__col li {
  margin-bottom: 10px;
}

.footer__col a {
  font-size: 14px;
  color: var(--gray-300);
  transition: color var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer__col a:hover { color: var(--blue-bright); }

.footer__col svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 13px;
  color: var(--gray-500);
}

.footer__bottom a {
  color: var(--blue-bright);
}

@media (max-width: 840px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px 30px;
  }
}

@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; }
}

/* ---------- FLOATING WHATSAPP ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 62px;
  height: 62px;
  background: var(--wa-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  z-index: 50;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

.wa-float svg {
  width: 32px;
  height: 32px;
}

/* Pulse animation no botão flutuante */
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--wa-green);
  animation: wa-pulse 2.5s ease-out infinite;
  z-index: -1;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.7); opacity: 0; }
}

@media (max-width: 480px) {
  .wa-float { width: 56px; height: 56px; bottom: 18px; right: 18px; }
  .wa-float svg { width: 28px; height: 28px; }
}

/* ---------- MODAL DE VÍDEO ---------- */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 21, 56, 0.92);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.video-modal.is-open {
  display: flex;
  animation: modal-in 200ms ease;
}

@keyframes modal-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.video-modal__content {
  position: relative;
  max-width: 480px;
  width: 100%;
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background var(--t-fast);
}

.video-modal__close:hover {
  background: rgba(0, 0, 0, 0.8);
}

.video-modal__close svg { width: 22px; height: 22px; }

.video-modal video {
  width: 100%;
  height: auto;
  max-height: 88vh;
  display: block;
}

/* ---------- ANIMAÇÕES DE SCROLL (reveal) ---------- */
/* Só aplica opacity 0 quando JS está ativo (classe .js no <html>).
   Se JS estiver desabilitado, conteúdo aparece normal. */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.js .reveal[data-delay="50"] { transition-delay: 50ms; }
.js .reveal[data-delay="100"] { transition-delay: 100ms; }
.js .reveal[data-delay="150"] { transition-delay: 150ms; }
.js .reveal[data-delay="200"] { transition-delay: 200ms; }
.js .reveal[data-delay="250"] { transition-delay: 250ms; }
.js .reveal[data-delay="300"] { transition-delay: 300ms; }
.js .reveal[data-delay="400"] { transition-delay: 400ms; }

/* ---------- PRINT / REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ---------- AJUSTE DE FOTOS DE FUNDO NO MOBILE ---------- */
/* Garante que o <picture> preencha o container do fundo (senão a <img>
   colapsa pra altura natural e sobra um vazio embaixo da seção). */
.hero__bg picture,
.diferencial__bg picture,
.para-quem__bg picture,
.cta-final__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

/* No mobile usamos versões VERTICAIS das fotos (swap via <picture media>).
   Como a seção pode ser mais alta que a foto, alinhamos a foto ao topo e
   aplicamos um fade-out na base: a parte de baixo da foto desvanece pro
   azul-marinho do fundo da seção, eliminando o "corte seco". */
@media (max-width: 760px) {
  .hero__bg img,
  .diferencial__bg img,
  .para-quem__bg img,
  .cta-final__bg img {
    object-position: top center;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 62%, rgba(0,0,0,0.45) 82%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 62%, rgba(0,0,0,0.45) 82%, transparent 100%);
  }

  /* O diferencial mostra o técnico, que fica na parte de baixo da foto —
     então o fade começa mais embaixo pra não apagar a pessoa. */
  .diferencial__bg img {
    object-position: top center;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 78%, rgba(0,0,0,0.5) 90%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 78%, rgba(0,0,0,0.5) 90%, transparent 100%);
  }

  /* Overlay um pouco mais forte no mobile pra compensar o corte da foto */
  .hero__overlay {
    background:
      linear-gradient(180deg,
        rgba(10, 21, 56, 0.92) 0%,
        rgba(10, 21, 56, 0.86) 45%,
        rgba(13, 26, 74, 0.82) 100%),
      radial-gradient(ellipse 90% 50% at 50% 20%, rgba(59, 169, 224, 0.22) 0%, transparent 70%);
  }

  .diferencial::before {
    background:
      linear-gradient(180deg,
        rgba(10, 21, 56, 0.62) 0%,
        rgba(10, 21, 56, 0.80) 38%,
        rgba(13, 26, 74, 0.92) 62%,
        rgba(10, 21, 56, 0.96) 100%),
      radial-gradient(ellipse 90% 50% at 50% 85%, rgba(59, 169, 224, 0.16) 0%, transparent 70%);
  }
}
