/* ============================================
   PALETA & BASE – GEO-TECH AUTHORITY
   ============================================ */

:root {
  --gb-bg-deep: #020718;
  --gb-bg-mid: #061129;
  --gb-bg-soft: #0b1734;
  --gb-blue-bright: #2f7df7;   /* Azul elétrico / CTA */
  --gb-blue-soft: #8fa9ff;     /* Azul pálido para textos */
  --gb-blue-cyan: #31d8ff;     /* Detalhes neon */
  --gb-text-main: #e9eefb;
  --gb-text-muted: rgba(233, 238, 251, 0.78);
  --gb-radius-lg: 18px;
  --gb-radius-xl: 22px;
  --gb-shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.45);
  --gb-border-soft: 1px solid rgba(143, 169, 255, 0.32);
}

/* Aplica o fundo azul profundo apenas dentro da landing */
.page-wrapper {
  background: radial-gradient(circle at top, #0b1d4a 0, #020718 55%, #00030a 100%);
  color: var(--gb-text-main);
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* Overlay de grid / mapa abstrato */
.bg-pattern,
.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.bg-pattern {
  background:
    radial-gradient(circle at 10% 20%, rgba(47, 125, 247, 0.25) 0, transparent 45%),
    radial-gradient(circle at 80% 0, rgba(49, 216, 255, 0.18) 0, transparent 50%);
  opacity: 0.7;
}

.bg-grid {
  background-image:
    linear-gradient(to right, rgba(143, 169, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(143, 169, 255, 0.06) 1px, transparent 1px);
  background-size: 70px 70px;
  mix-blend-mode: soft-light;
}

/* ============================================
   SEÇÕES & TÍTULOS
   ============================================ */

.home-section.gb-section {
  padding: 60px 0;
  background: transparent;
}

.home-section.bg-white.gb-section,
.home-section.bg-gray.gb-section {
  background: transparent; /* mantemos tudo tom sobre tom */
}

.section-heading .section-title {
  color: var(--gb-text-main);
  font-weight: 700;
}

.section-heading .section-subtitle {
  color: var(--gb-text-muted);
  max-width: 720px;
  margin: 0 auto;
}

/* ============================================
   HERO – GEO MAP + PHONE
   ============================================ */

.hero-gb {
  padding: 120px 0 90px;
}

.hero-gb .container {
  position: relative;
}

.hero-gb-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr;
  align-items: center;
  gap: 40px;
}

@media (max-width: 991px) {
  .hero-gb {
    padding: 100px 0 70px;
  }

  .hero-gb-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero-gb-carousel {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.hero-gb-carousel .carousel-inner img {
  display: block;
  width: 100%;
  height: auto;
}

/* Indicadores (bolinhas) */
.hero-gb-carousel .carousel-indicators {
  bottom: 10px;
  margin-bottom: 0;
}

.hero-gb-carousel .carousel-indicators li {
  width: 9px;
  height: 9px;
  margin: 0 3px;
  border-radius: 999px;
  background-color: rgba(233, 238, 251, 0.4);
  border: none;
}

.hero-gb-carousel .carousel-indicators .active {
  background-color: var(--gb-blue-bright);
}


/* Moldura do smartphone */
.hero-gb-phone-frame {
  position: relative;
  z-index: 1;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(11, 23, 68, 0.95), rgba(7, 17, 41, 0.98));
  padding: 10px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(143, 169, 255, 0.45);
}

.hero-gb-phone-frame img {
  display: block;
  width: 100%;
  border-radius: 24px;
}

/* Pin pulsando acima dos concorrentes */
.hero-gb-pin-pulse {
  position: absolute;
  right: 15%;
  top: 18%;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--gb-blue-bright);
  box-shadow: 0 0 0 0 rgba(47, 125, 247, 0.8);
  animation: gb-pulse 1.8s infinite;
}

.hero-gb-pin-pulse::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 999px;
  background: #fff;
}

/* Animação de pulso */
@keyframes gb-pulse {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(47, 125, 247, 0.9);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 16px rgba(47, 125, 247, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(47, 125, 247, 0);
  }
}

/* ---------- Coluna texto ---------- */

.hero-gb-content {
  color: var(--gb-text-main);
}

@media (max-width: 991px) {
  .hero-gb-content {
    text-align: center;
  }
}

.hero-gb-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gb-blue-soft);
  margin-bottom: 14px;
}

.hero-gb-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gb-blue-cyan);
  box-shadow: 0 0 14px rgba(49, 216, 255, 0.85);
}

.hero-gb-title {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--gb-text-main);
}

.hero-gb-highlight {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(47, 125, 247, 0.28), rgba(49, 216, 255, 0.18));
}

@media (min-width: 768px) {
  .hero-gb-title {
    font-size: 34px;
  }
}

.hero-gb-subtitle {
  font-size: 15px;
  color: var(--gb-text-muted);
  margin-bottom: 14px;
}

.hero-gb-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--gb-blue-soft);
}

.hero-gb-bullets li + li {
  margin-top: 4px;
}

.hero-gb-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .hero-gb-actions {
    align-items: center;
  }
}

.hero-gb-note {
  font-size: 13px;
  color: var(--gb-text-muted);
  max-width: 360px;
}

.hero-gb-author {
  font-size: 13px;
  margin-top: 8px;
  color: rgba(233, 238, 251, 0.8);
}

/* ============================================
   BOTÕES & LINKS
   ============================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 999px;
  border: none;
  background: var(--gb-blue-bright);
  color: #fdfdff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  box-shadow: 0 12px 30px rgba(47, 125, 247, 0.6);
  transition: all 0.22s ease-out;
}

.btn-primary .arrow {
  font-size: 18px;
  line-height: 1;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #2867d1;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(47, 125, 247, 0.75);
}

/* Tema padrão do sistema ajustado para o azul da landing */
.btn-theme {
  background: var(--gb-blue-bright);
  border: none;
  color: #fff;
}

.btn-theme:hover,
.btn-theme:focus {
  background: #2867d1;
  color: #fff;
}

/* ============================================
   O PROBLEMA
   ============================================ */

.gb-problem-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 991px) {
  .gb-problem-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.gb-problem-lead {
  font-size: 15px;
  color: var(--gb-text-main);
  margin-bottom: 12px;
}

.gb-problem-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: var(--gb-text-muted);
}

.gb-problem-list li + li {
  margin-top: 4px;
}

.gb-problem-visual img {
  display: block;
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
  border-radius: var(--gb-radius-lg);
  border: 1px solid rgba(143, 169, 255, 0.3);
  box-shadow: var(--gb-shadow-soft);
}

/* ============================================
   MÉTODO / CARDS – ENGENHARIA DO GOOGLE
   ============================================ */

.gb-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 991px) {
  .gb-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .gb-cards-grid {
    grid-template-columns: 1fr;
  }
}

.gb-card {
  padding: 18px 16px 16px;
  border-radius: var(--gb-radius-lg);
  border: var(--gb-border-soft);
  background: radial-gradient(circle at top left, rgba(47, 125, 247, 0.25), transparent 55%),
              linear-gradient(140deg, rgba(6, 17, 41, 0.94), rgba(10, 23, 60, 0.98));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
  font-size: 14px;
  color: var(--gb-text-muted);
  position: relative;
  overflow: hidden;
}

.gb-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(49, 216, 255, 0.08) 0, transparent 40%),
    linear-gradient(-120deg, rgba(47, 125, 247, 0.08) 0, transparent 45%);
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

.gb-card:hover::after {
  opacity: 1;
}

.gb-card-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(143, 169, 255, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 18px;
  background: rgba(2, 7, 24, 0.9);
  color: var(--gb-blue-cyan);
}

.gb-card h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--gb-text-main);
  margin-bottom: 6px;
}

/* ============================================
   PODER DAS ESTRELAS
   ============================================ */

.gb-stars-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr;
  align-items: center;
  gap: 40px;
}

@media (max-width: 991px) {
  .gb-stars-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.gb-stars-visual {
  text-align: center;
}

.gb-stars-row {
  display: inline-flex;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  background: radial-gradient(circle at top, rgba(49, 216, 255, 0.3), rgba(2, 7, 24, 0.95));
  border: 1px solid rgba(143, 169, 255, 0.5);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.65);
}

.gb-star {
  font-size: 20px;
  color: rgba(75, 115, 255, 0.9);
  text-shadow: 0 0 8px rgba(49, 216, 255, 0.6);
}

.gb-star.active {
  color: var(--gb-blue-cyan);
}

.gb-stars-score {
  margin-top: 8px;
  font-size: 13px;
  color: var(--gb-text-muted);
}

.gb-stars-text p {
  font-size: 14px;
  color: var(--gb-text-muted);
}

.gb-stars-text p + p {
  margin-top: 6px;
}

/* ============================================
   RELATÓRIOS E MÉTRICAS
   ============================================ */

.gb-metrics-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 991px) {
  .gb-metrics-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.gb-metrics-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--gb-text-muted);
}

.gb-metrics-list li + li {
  margin-top: 4px;
}

.gb-metrics-note {
  font-size: 13px;
  color: var(--gb-blue-soft);
}

.gb-metrics-visual img {
  display: block;
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
  border-radius: var(--gb-radius-lg);
  border: 1px solid rgba(143, 169, 255, 0.3);
  box-shadow: var(--gb-shadow-soft);
}

/* ============================================
   CONTATO / CTA FINAL
   ============================================ */

.gb-contact-section {
  padding-bottom: 80px;
}

.gb-contact-info {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  padding: 22px 20px 18px;
  border-radius: var(--gb-radius-xl);
  border: var(--gb-border-soft);
  background: radial-gradient(circle at top left, rgba(47, 125, 247, 0.25), transparent 60%),
              linear-gradient(145deg, rgba(5, 14, 38, 0.98), rgba(7, 19, 49, 0.98));
  box-shadow: var(--gb-shadow-soft);
}

@media (max-width: 991px) {
  .gb-contact-info {
    text-align: center;
  }
}

.gb-contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(143, 169, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: rgba(2, 7, 24, 0.9);
}

.gb-contact-icon i {
  font-size: 20px;
  color: var(--gb-blue-cyan);
}

.gb-contact-info h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--gb-text-main);
  margin-bottom: 8px;
}

.gb-contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  color: var(--gb-text-muted);
}

.gb-contact-info ul li + li {
  margin-top: 4px;
}

.gb-contact-note {
  font-size: 13px;
  color: var(--gb-blue-soft);
  margin-bottom: 10px;
}

/* Ilustração do relatório */
.gb-contact-illustration {
  margin-top: 10px;
}

.gb-contact-illustration img {
  display: block;
  max-width: 260px;
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(143, 169, 255, 0.42);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

@media (max-width: 991px) {
  .gb-contact-illustration img {
    margin: 0 auto;
  }
}

/* Formulário (coluna direita) */
.gb-contact-form .form-control {
  border-radius: 8px;
  background: rgba(1, 6, 20, 0.75);
  border: 1px solid rgba(143, 169, 255, 0.5);
  color: var(--gb-text-main);
}

.gb-contact-form .form-control::placeholder {
  color: rgba(143, 169, 255, 0.8);
}

.gb-contact-form .form-control:focus {
  border-color: var(--gb-blue-bright);
  box-shadow: 0 0 0 1px rgba(47, 125, 247, 0.65);
  background: rgba(1, 6, 20, 0.95);
}

.form-note {
  font-size: 12px;
  margin-top: 8px;
  color: var(--gb-text-muted);
}

/* ============================================
   EQUIPE (BOX-TEAM)
   ============================================ */

.box-team img {
  border-radius: 999px;
  border: 2px solid rgba(143, 169, 255, 0.7);
}

/* ============================================
   RESPONSIVO GERAL
   ============================================ */

@media (max-width: 767px) {
  .hero-gb-title {
    font-size: 26px;
  }

  .hero-gb-subtitle {
    font-size: 14px;
  }

  .btn-primary {
    width: 100%;
  }
}
