@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Sora:wght@500;600;700;800&display=swap");

:root {
  --gn-primary: #0d89e0;
  --gn-primary-dark: #066db8;
  --gn-primary-soft: #ecf8ff;
  --gn-accent: #35c4ff;
  --gn-ink: #122742;
  --gn-muted: #5c6d84;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--gn-muted);
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 22%, #f7fbff 100%);
}

h1,
h2,
h3,
h4,
h5,
h6,
.section_title .title {
  font-family: "Sora", sans-serif;
  color: var(--gn-ink);
}

/* Section title accent */
.section_title .title {
  position: relative;
  display: inline-block;
}

.section_title.text-center .title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gn-primary), var(--gn-accent));
  border-radius: 2px;
}

.navbar-brand img {
  max-height: 44px;
  width: auto;
}

.gn-nav-btn {
  margin-left: 24px;
  height: 46px;
  line-height: 46px;
  padding: 0 22px;
}

.main-btn {
  background-color: var(--gn-primary);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(13, 137, 224, 0.24);
  transition: all 0.3s ease;
}

.main-btn:hover {
  background-color: var(--gn-primary-dark);
  box-shadow: 0 8px 20px rgba(13, 137, 224, 0.35);
  transform: translateY(-2px);
}

.main-btn.main-btn-2 {
  border-color: rgba(255, 255, 255, 0.82);
  color: #ffffff;
  background-color: transparent;
}

.main-btn.main-btn-2:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.header_hero {
  padding-top: 110px;
  padding-bottom: 46px;
  min-height: 760px;
}

.header_hero::before {
  background-image: none;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.16), transparent 46%),
    linear-gradient(135deg, #1f99e8 0%, #0d89e0 52%, #066db8 100%);
  height: 100%;
}

.shape.shape-1,
.shape.shape-2,
.shape.shape-3 {
  opacity: 0.16;
}

.header_hero_content .header_title {
  font-size: 57px;
  line-height: 1.12;
  max-width: 640px;
}

.header_hero_content .header_title span {
  color: #2f3b4c;
}

.header_hero_content p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  font-size: 18px;
  line-height: 1.7;
}

.gn-badge {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2); }
  50% { box-shadow: 0 0 20px 4px rgba(255, 255, 255, 0.15); }
}

.gn-hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 25px;
}

.gn-hero-metrics-desktop {
  display: none;
}

.gn-metric {
  min-width: 130px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 10px 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.gn-metric:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

.gn-metric strong {
  display: block;
  font-family: "Sora", sans-serif;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.2;
}

.gn-metric span {
  color: rgba(255, 255, 255, 0.87);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.gn-dashboard-frame {
  background: #ffffff;
  border-radius: 18px;
  padding: 12px;
  box-shadow: 
    0 24px 52px rgba(12, 48, 84, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  border: 1px solid rgba(255, 255, 255, 0.52);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.gn-dashboard-frame:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 
    0 32px 64px rgba(12, 48, 84, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.gn-dashboard-frame img:first-child {
  border-radius: 12px;
}

.features_area {
  margin-top: 46px;
}

.single_features {
  border-radius: 16px;
  border: 1px solid #e6eef8;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.single_features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gn-primary), var(--gn-accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.single_features:hover {
  border-color: var(--gn-primary-soft);
  box-shadow: 0 20px 40px rgba(13, 137, 224, 0.12);
}

.single_features:hover::before {
  transform: scaleX(1);
}

.single_features .features_icon i {
  border-radius: 18px;
  font-size: 34px;
  transition: transform 0.4s ease;
}

.single_features:hover .features_icon i {
  transform: scale(1.08);
}

.single_features.features_1 .features_icon i {
  background: linear-gradient(135deg, #0d89e0 0%, #2fc0ff 100%);
}

.single_features.features_2 .features_icon i {
  background: linear-gradient(135deg, #0a82d8 0%, #28b1f8 100%);
}

.single_features.features_3 .features_icon i {
  background: linear-gradient(135deg, #066fb9 0%, #1fa3ef 100%);
}

.about_area {
  background: linear-gradient(180deg, rgba(30, 163, 255, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.about_image .image {
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(16, 39, 66, 0.16);
  border: 1px solid #dcecff;
}

.gn-check-list {
  margin-top: 26px;
}

.gn-check-list li {
  position: relative;
  padding-left: 30px;
  margin-top: 12px;
  color: #27415f;
  font-weight: 500;
  transition: all 0.3s ease;
}

.gn-check-list li:hover {
  color: var(--gn-primary-dark);
  transform: translateX(4px);
}

.gn-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gn-primary), var(--gn-accent));
  box-shadow: 0 0 0 4px rgba(30, 163, 255, 0.16);
  transition: all 0.3s ease;
}

.gn-check-list li:hover::before {
  box-shadow: 0 0 0 6px rgba(30, 163, 255, 0.25);
  transform: scale(1.1);
}

.gn-modules-area {
  background: #ffffff;
}

.gn-module-card {
  background: #ffffff;
  border: 1px solid #e6eff9;
  border-radius: 16px;
  padding: 28px 22px;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(16, 39, 66, 0.06);
  position: relative;
  overflow: hidden;
}

.gn-module-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gn-primary), var(--gn-accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.gn-module-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(13, 137, 224, 0.15);
  border-color: var(--gn-primary-soft);
}

.gn-module-card:hover::after {
  transform: scaleX(1);
}

.gn-module-card i {
  width: 54px;
  height: 54px;
  line-height: 54px;
  border-radius: 12px;
  text-align: center;
  background: var(--gn-primary-soft);
  color: var(--gn-primary);
  font-size: 25px;
  transition: all 0.4s ease;
}

.gn-module-card:hover i {
  background: var(--gn-primary);
  color: #ffffff;
  transform: rotate(-5deg) scale(1.05);
}

.gn-module-card h5 {
  margin-top: 16px;
  font-size: 20px;
}

.gn-module-card p {
  margin-top: 10px;
  font-size: 15px;
}

.pricing_area {
  background: linear-gradient(180deg, #f8fcff 0%, #eff8ff 100%);
  border-radius: 30px;
}

.single_pricing {
  border: 1px solid #dbeafb;
  border-radius: 16px;
  transition: all 0.4s ease;
}

.single_pricing:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(13, 137, 224, 0.12);
}

.single_pricing.pricing_active {
  border-color: var(--gn-primary);
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(13, 137, 224, 0.18);
}

.single_pricing.pricing_active .pricing_top_bar {
  position: relative;
}

.single_pricing.pricing_active .pricing_top_bar::after {
  content: "Mais escolhido";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gn-primary);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.download_app {
  background: linear-gradient(120deg, #168cd8 0%, #0b7acd 52%, #055fa7 100%);
  border-radius: 20px;
}

.download_shape img {
  opacity: 0.45;
}

.download_app_content ul li a {
  border-radius: 12px;
}

.download_app_content ul li a .icon i {
  color: var(--gn-primary);
}

.blog_area .single_blog {
  border: 1px solid #e2ecf7;
  box-shadow: 0 14px 34px rgba(16, 39, 66, 0.1);
}

.single_blog .blog_content .blog_title a {
  font-size: 22px;
  line-height: 1.35;
}

.footer_area::before {
  background-image: none;
  height: 100%;
  background: linear-gradient(145deg, #0a79c7 0%, #086db8 45%, #05579a 100%);
}

.footer_subscribe .subscribe_title {
  max-width: 640px;
  margin: 0 auto;
}

.subscribe_form .main-btn {
  box-shadow: none;
}

.footer_social ul li a:hover {
  color: var(--gn-primary);
}

.footer_copyright p {
  font-size: 14px;
}

.gn-footer-contacts {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.gn-footer-contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 28px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 16px;
}

.gn-footer-contact-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
  text-decoration: none;
}

.gn-fc-icon {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  margin-bottom: 14px;
}

.gn-fc-icon i {
  font-size: 26px;
  color: #ffffff;
}

.gn-fc-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.gn-fc-value {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.back-to-top {
  background-color: var(--gn-primary);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(13, 137, 224, 0.35);
}

@media only screen and (min-width: 992px) {
  .header_hero {
    overflow: hidden;
  }

  .header_hero .gn-hero-metrics-inline {
    display: none;
  }

  .header_hero .gn-hero-metrics-desktop {
    display: flex;
    position: absolute;
    left: 54%;
    right: 2.8%;
    bottom: 36px;
    width: auto;
    margin-top: 0;
    gap: 12px;
    z-index: 12;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .header_hero .gn-hero-metrics-desktop .gn-metric {
    flex: 1 1 0;
    min-width: 0;
    padding: 10px 12px;
  }

  .header_image {
    align-items: flex-start !important;
    padding-top: 102px;
  }

  .header_image .image {
    top: 0 !important;
    padding-bottom: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_hero {
    min-height: auto;
    height: auto;
    padding-top: 90px;
    padding-bottom: 30px;
  }

  .header_hero_content .header_title {
    font-size: 44px;
  }

  .features_area {
    margin-top: 18px;
  }

  .pricing_area {
    border-radius: 22px;
  }
}

@media (max-width: 767px) {
  .navbar-brand img {
    max-height: 38px;
  }

  .header_hero {
    min-height: auto;
    height: auto;
    padding-top: 84px;
    padding-bottom: 24px;
  }

  .header_hero_content .header_title {
    font-size: 34px;
  }

  .header_hero_content p {
    font-size: 16px;
    line-height: 1.55;
    margin-top: 25px;
  }

  .gn-hero-metrics {
    gap: 10px;
  }

  .gn-metric {
    flex: 1 1 calc(50% - 10px);
    min-width: auto;
  }

  .header_image {
    margin-top: 32px;
  }

  .features_area {
    margin-top: 0;
  }

  .pricing_area {
    border-radius: 20px;
  }

  .download_app {
    padding: 90px 22px 95px;
  }

  .download_app_content ul li {
    display: block;
  }

  .download_app_content ul li + li {
    margin-left: 0;
    margin-top: 14px;
  }

  .single_blog .blog_content .blog_title a {
    font-size: 20px;
  }
}
