/* ===============================
   RESET / BASE
================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --azul: #054394;
  --azul-2: #054394;
  --azul-3: #054394;
  --verde: #18c58f;
  --verde-2: #0fa477;
  --texto: #1e2b38;
  --cinza: #657384;
  --branco: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Arial, sans-serif;
  color: var(--texto);
  background:
    radial-gradient(circle at 12% 6%, rgba(4, 36, 68, .09), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(24, 197, 143, .13), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(4, 36, 68, .06), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #f7fafc 50%, #eef6f9 100%);
  overflow-x: hidden;
  user-select: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(4,36,68,.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4,36,68,.032) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
  z-index: 0;
}

img {
  max-width: 100%;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

a {
  color: inherit;
}

.gs-page {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  padding: 28px 16px 46px;
}

.gs-container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

/* ===============================
   HERO
================================ */

.gs-hero {
  min-height: 350px;
  padding: 38px 28px 42px;
  border-radius: 38px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(255,255,255,.72));
  border: 1px solid rgba(4,36,68,.09);
  box-shadow: 0 26px 75px rgba(4,36,68,.10);
  backdrop-filter: blur(18px);
}

.gs-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24,197,143,.12), transparent 66%);
  top: -325px;
  left: 50%;
  transform: translateX(-50%);
}

.gs-hero::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 30px;
  border: 1px solid rgba(4,36,68,.06);
  pointer-events: none;
}

.gs-hero-logo {
  width: 210px;
  margin: 0 auto 18px;
  position: relative;
  z-index: 2;
}

.gs-hero-logo img {
  width: 100%;
  filter: drop-shadow(0 12px 24px rgba(4,36,68,.18));
}

.gs-mini-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--azul);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.gs-mini-title::before,
.gs-mini-title::after {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(4,36,68,.28);
  margin: 0 10px;
}

.gs-hero h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: .92;
  letter-spacing: -2.5px;
  margin-bottom: 18px;
  color: var(--azul);
  position: relative;
  z-index: 2;
}

.gs-hero p {
  max-width: 720px;
  margin: 0 auto 28px;
  color: #526171;
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.gs-primary-btn {
  min-height: 60px;
  padding: 0 30px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, var(--azul) 0%, var(--azul-3) 55%, var(--verde-2) 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(4,36,68,.22);
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: .3s ease;
}

.gs-primary-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.24), transparent);
  transform: translateX(-120%);
  transition: .8s ease;
}

.gs-primary-btn:hover {
  transform: translateY(-5px);
}

.gs-primary-btn:hover::before {
  transform: translateX(120%);
}

/* ===============================
   CARDS DESTAQUE
================================ */

.gs-featured {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.gs-feature-card {
  min-height: 255px;
  padding: 26px;
  border-radius: 34px;
  text-decoration: none;
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-image:
    linear-gradient(145deg, rgba(4,36,68,.38), rgba(4,36,68,.08)),
    var(--bg-img);
  background-size: 108%;
  background-position: center;
  border: 1px solid rgba(4,36,68,.10);
  box-shadow: 0 24px 70px rgba(4,36,68,.12);
  transition: .35s ease;
}

.gs-feature-card::after,
.gs-link-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 64%;
  background:
    linear-gradient(
      to top,
      rgba(2,14,24,.88),
      rgba(2,14,24,.58),
      rgba(2,14,24,.08),
      transparent
    );
  z-index: -1;
}

.gs-feature-card:hover {
  transform: translateY(-8px);
  background-size: 116%;
}

.gs-feature-card::before,
.gs-link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.20), transparent);
  transform: translateX(-120%);
  transition: .8s ease;
  z-index: 0;
}

.gs-feature-card:hover::before,
.gs-link-card:hover::before {
  transform: translateX(120%);
}

.gs-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 42px;
  position: relative;
  z-index: 2;
}

.gs-feature-card span,
.gs-feature-card h2,
.gs-feature-card p {
  position: relative;
  z-index: 2;
}

.gs-feature-card span,
.gs-link-text span,
.gs-qr-card span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-weight: 900;
  color: rgba(255,255,255,.78);
}

.gs-feature-card h2 {
  font-size: 30px;
  margin: 8px 0;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
}

.gs-feature-card p {
  color: rgba(255,255,255,.84);
  line-height: 1.5;
}

/* ===============================
   LINKS
================================ */

.gs-links {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gs-link-card {
  min-height: 110px;
  padding: 15px;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  display: grid;
  grid-template-columns: 68px 1fr 46px;
  gap: 15px;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-image:
    linear-gradient(120deg, rgba(4,36,68,.34), rgba(4,36,68,.08)),
    var(--bg-img);
  background-size: 108%;
  background-position: center;
  border: 1px solid rgba(4,36,68,.10);
  box-shadow: 0 18px 46px rgba(4,36,68,.11);
  transition: .3s ease;
}

.gs-link-card:hover {
  transform: translateY(-6px);
  background-size: 116%;
  border-color: rgba(4,36,68,.20);
}

.gs-whatsapp-card {
  min-height: 124px;
  background-image:
    linear-gradient(120deg, rgba(4,36,68,.42), rgba(15,164,119,.24)),
    var(--bg-img);
  border: 1px solid rgba(24,197,143,.34);
  box-shadow: 0 22px 60px rgba(0,120,90,.13);
}

.gs-link-icon {
  width: 68px;
  height: 68px;
  border-radius: 24px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  font-size: 25px;
  position: relative;
  z-index: 2;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
}

.gs-link-text {
  position: relative;
  z-index: 2;
}

.gs-link-text h3 {
  font-size: 19px;
  margin: 5px 0;
  text-shadow: 0 2px 14px rgba(0,0,0,.35);
}

.gs-link-text p {
  color: rgba(255,255,255,.82);
  font-size: 13px;
  line-height: 1.35;
}

.gs-arrow {
  width: 46px;
  height: 46px;
  border-radius: 17px;
  background: rgba(255,255,255,.17);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
  transition: .3s ease;
}

.gs-link-card:hover .gs-arrow {
  background: #fff;
  color: var(--azul);
  transform: translateX(4px);
}

/* ===============================
   QR
================================ */

.gs-qr-card {
  margin-top: 20px;
  padding: 24px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(255,255,255,.76));
  border: 1px solid rgba(4,36,68,.09);
  display: grid;
  grid-template-columns: 1fr 118px;
  gap: 18px;
  align-items: center;
  box-shadow: 0 20px 55px rgba(4,36,68,.09);
}

.gs-qr-card span {
  color: var(--azul);
}

.gs-qr-card h2 {
  font-size: 28px;
  margin: 7px 0;
  color: var(--azul);
}

.gs-qr-card p {
  color: #5e6c7b;
  line-height: 1.5;
}

#qrcode {
  width: 118px;
  height: 118px;
  background: transparent;
  display: grid;
  place-items: center;
}

#qrcode img,
#qrcode canvas {
  background: #fff;
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(4,36,68,.12);
}

/* ===============================
   FOOTER
================================ */

.gs-footer {
  text-align: center;
  margin-top: 28px;
  color: #6b7988;
  font-size: 13px;
}

.gs-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}

.gs-social a {
  width: 46px;
  height: 46px;
  border-radius: 17px;
  background: var(--azul);
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(4,36,68,.18);
  transition: .3s ease;
}

.gs-social a:hover {
  transform: translateY(-4px);
  background: var(--azul-2);
}

.gs-footer small {
  display: block;
  margin-top: 6px;
  color: #7b8794;
  font-weight: 700;
}

.gs-legal-links {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.gs-legal-links a {
  color: var(--azul);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(4,36,68,.06);
  transition: .3s ease;
}

.gs-legal-links a:hover {
  background: var(--azul);
  color: #fff;
}

/* ===============================
   VOLTAR AO TOPO
================================ */

.gs-back-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--azul), var(--azul-3));
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(4,36,68,.22);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: .3s ease;
}

.gs-back-top.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ===============================
   MODAL LEGAL
================================ */

.gs-modal {
  position: fixed;
  inset: 0;
  background: rgba(4, 18, 32, .68);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 9999;
}

.gs-modal.active {
  display: flex;
}

.gs-modal-box {
  width: 100%;
  max-width: 760px;
  max-height: 86vh;
  overflow-y: auto;
  background: #fff;
  color: #102030;
  border-radius: 30px;
  padding: 0;
  position: relative;
  box-shadow: 0 34px 100px rgba(0,0,0,.32);
}

.gs-modal-header {
  padding: 18px 28px;
  background: linear-gradient(
    135deg,
    var(--azul),
    var(--azul-3)
  );

  display: flex;
  align-items: center;
}

.gs-modal-header img {
  width: 180px;
  max-width: 100%;
  filter: brightness(0) invert(1);
}

.gs-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 18px;
}

.gs-modal-content {
  padding: 30px 32px 34px;
}

.gs-modal-content h2 {
  color: var(--azul);
  font-size: 30px;
  margin-bottom: 10px;
}

.gs-modal-content .doc-subtitle {
  color: #687789;
  margin-bottom: 22px;
  line-height: 1.6;
}

.gs-modal-content h3 {
  color: var(--azul);
  font-size: 17px;
  margin: 22px 0 8px;
}

.gs-modal-content p {
  color: #4d5b68;
  line-height: 1.75;
  margin-bottom: 12px;
}

.gs-modal-content ul {
  padding-left: 20px;
  color: #4d5b68;
  line-height: 1.75;
}

.gs-modal-content li {
  margin-bottom: 6px;
}

.gs-modal-content .doc-note {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: #f2f6fa;
  border-left: 4px solid var(--azul);
}

/* ===============================
   TELA DE DIRECIONAMENTO CLEAN
================================ */

.gs-redirect-screen {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(24,197,143,.16), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(238,245,251,.96));
  backdrop-filter: blur(14px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 10000;
}

.gs-redirect-screen::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(4,36,68,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4,36,68,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.gs-redirect-screen.active {
  display: flex;
}

.gs-redirect-card {
  width: 100%;
  max-width: 420px;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 20px;
}

.gs-redirect-logo {
  width: 124px;
  margin: 0 auto 18px;
  filter: drop-shadow(0 12px 24px rgba(4,36,68,.18));
}

.gs-redirect-card h2 {
  color: var(--azul);
  font-size: 28px;
  line-height: 1.25;
  margin-bottom: 18px;
}

.gs-redirect-card strong {
  color: var(--verde-2);
}

.gs-redirect-line {
  width: 100%;
  max-width: 320px;
  height: 7px;
  border-radius: 999px;
  background: rgba(4,36,68,.10);
  margin: 0 auto;
  overflow: hidden;
}

.gs-redirect-line div {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--azul), var(--verde));
  border-radius: inherit;
}

.gs-redirect-screen.active .gs-redirect-line div {
  animation: progress 1.2s ease forwards;
}

/* ===============================
   ANIMAÇÕES
================================ */

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  70% { transform: scale(1.8); opacity: .22; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes progress {
  from { width: 0%; }
  to { width: 100%; }
}

/* ===============================
   TABLET
================================ */

@media (max-width: 900px) {
  .gs-container {
    max-width: 620px;
  }

  .gs-featured {
    grid-template-columns: 1fr;
  }

  .gs-hero {
    min-height: auto;
  }
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 560px) {
  .gs-page {
    padding: 16px 12px 34px;
  }

  .gs-hero {
    padding: 28px 18px 24px;
    border-radius: 30px;
  }

  .gs-hero-logo {
    width: 110px;
    margin-bottom: 12px;
  }

  .gs-mini-title {
    font-size: 10px;
  }

  .gs-mini-title::before,
  .gs-mini-title::after {
    width: 18px;
    margin: 0 7px;
  }

  .gs-hero h1 {
    font-size: 40px;
    letter-spacing: -1.5px;
  }

  .gs-hero p {
    font-size: 14px;
  }

  .gs-primary-btn {
    width: 100%;
    min-height: 58px;
    border-radius: 18px;
  }

  .gs-feature-card {
    min-height: 215px;
    border-radius: 28px;
    padding: 22px;
    background-size: 122%;
  }

  .gs-feature-card:hover {
    background-size: 128%;
  }

  .gs-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    margin-bottom: 32px;
  }

  .gs-feature-card h2 {
    font-size: 25px;
  }

  .gs-link-card {
    grid-template-columns: 58px 1fr 40px;
    min-height: 106px;
    gap: 12px;
    border-radius: 25px;
    padding: 12px;
    background-size: 128%;
  }

  .gs-link-card:hover {
    background-size: 136%;
  }

  .gs-whatsapp-card {
    min-height: 116px;
  }

  .gs-link-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    font-size: 22px;
  }

  .gs-arrow {
    width: 40px;
    height: 40px;
    border-radius: 15px;
  }

  .gs-link-text span {
    font-size: 9px;
  }

  .gs-link-text h3 {
    font-size: 16px;
  }

  .gs-link-text p {
    font-size: 12px;
  }

  .gs-qr-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    border-radius: 28px;
  }

  .gs-modal-box {
    border-radius: 24px;
  }

/* apagar */

.gs-modal-box::before {
    padding: 22px 24px;
}

  .gs-modal-content {
    padding: 24px;
  }

  .gs-modal-content h2 {
    font-size: 25px;
  }

  .gs-back-top {
    right: 14px;
    bottom: 14px;
  }
}

.gs-modal-header{
    height:90px;
    background:linear-gradient(
        135deg,
        #054394,
        #0972ff
    );

    display:flex;
    align-items:center;
    justify-content:center;
}

.gs-modal-header img{
    width:220px;
    max-width:90%;
}

