﻿:root {
  --gp-ink: #0c2260;
  --gp-ink-2: #143786;
  --gp-green: #17b26a;
  --gp-green-strong: #10945a;
  --gp-muted: #5b647c;
  --gp-border: rgba(12, 34, 96, 0.12);
  --gp-surface: #ffffff;
  --gp-surface-soft: #f5f8ff;
  --gp-shadow: 0 24px 60px rgba(12, 34, 96, 0.12);
}

html {
  font-size: 16px;
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: #12203f;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

a {
  color: var(--gp-ink-2);
  text-decoration: none;
}

a:hover {
  color: var(--gp-green-strong);
}

.gp-shell-body {
  position: relative;
  display: flex;
  flex-direction: column;
}

.gp-shell-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(23, 178, 106, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(20, 55, 134, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.36));
  z-index: 0;
}

.gp-shell-header,
.gp-shell-main,
.gp-shell-footer {
  position: relative;
  z-index: 1;
}

.gp-shell-header {
  z-index: 30;
}

.gp-shell-main,
.gp-shell-footer {
  z-index: 1;
}

.gp-shell-header {
  padding: 10px 12px 0;
}

.gp-shell-header-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.gp-nav {
  padding: 0;
  overflow: visible;
}

.gp-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
  width: 100%;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(23, 178, 106, 0.14), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.98));
  border: 1px solid rgba(12, 34, 96, 0.08);
  box-shadow: var(--gp-shadow);
  padding: 10px 14px;
  position: relative;
  overflow: visible;
}

.gp-brand {
  display: inline-flex;
  align-items: center;
  color: var(--gp-ink);
  min-height: 56px;
  flex: 0 0 auto;
}

.gp-brand:hover {
  color: var(--gp-ink);
}

.gp-brand-logo {
  width: 176px;
  height: auto;
  flex: 0 0 auto;
}

.gp-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 14px;
  border: 1px solid rgba(12, 34, 96, 0.12);
  background: rgba(12, 34, 96, 0.04);
  color: var(--gp-ink);
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.gp-contact-link:hover {
  color: var(--gp-green-strong);
  background: rgba(23, 178, 106, 0.1);
  transform: translateY(-1px);
}

.gp-contact-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.gp-nav-toggle {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(12, 34, 96, 0.12);
  border-radius: 14px;
  padding: 0;
  background: rgba(12, 34, 96, 0.04);
  box-shadow: none;
  color: var(--gp-ink);
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.gp-nav-toggle:focus {
  box-shadow: none;
}

.gp-nav-toggle:hover {
  color: var(--gp-green-strong);
  background: rgba(23, 178, 106, 0.1);
  transform: translateY(-1px);
}

.gp-nav-toggle-icon {
  position: relative;
  display: inline-flex;
  width: 22px;
  height: 18px;
}

.gp-nav-toggle-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2.5px;
  border-radius: 999px;
  background: var(--gp-ink);
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.gp-nav-toggle-icon span:nth-child(1) {
  top: 0;
}

.gp-nav-toggle-icon span:nth-child(2) {
  top: 7px;
}

.gp-nav-toggle-icon span:nth-child(3) {
  top: 14px;
}

.gp-nav-toggle.is-open .gp-nav-toggle-icon span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.gp-nav-toggle.is-open .gp-nav-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.gp-nav-toggle.is-open .gp-nav-toggle-icon span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

.gp-nav-collapse {
  flex: 1 0 100%;
  align-items: center;
  gap: 18px;
}

.gp-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  padding: 0;
  min-width: 0;
  flex-wrap: nowrap;
}

.gp-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--gp-ink);
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}

.gp-nav-link:hover {
  background: rgba(12, 34, 96, 0.06);
  color: var(--gp-green-strong);
  transform: translateY(-1px);
}

.gp-unified-footer {
  margin-top: 64px;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  background: #fff;
}

.gp-unified-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.gp-unified-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(4, minmax(0, 1fr));
  gap: 32px;
  padding: 56px 0;
}

.gp-unified-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gp-unified-footer-logo {
  display: inline-flex;
  width: fit-content;
}

.gp-unified-footer-logo img {
  height: 48px;
  width: auto;
}

.gp-unified-footer-brand p,
.gp-unified-footer-links a,
.gp-unified-footer-bottom {
  color: #64748b;
}

.gp-unified-footer-brand p {
  max-width: 260px;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
}

.gp-unified-footer-links h4 {
  margin: 0 0 24px;
  color: #1f3a5f;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.gp-unified-footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gp-unified-footer-links li + li {
  margin-top: 12px;
}

.gp-unified-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.gp-unified-footer-links a:hover {
  color: #1f4560;
}

.gp-unified-footer-social-link svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.gp-unified-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  padding: 28px 0 32px;
}

.gp-unified-footer-bottom p {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 600;
}

.gp-unified-footer-payments {
  display: flex;
  align-items: center;
  gap: 28px;
  opacity: 0.45;
  filter: grayscale(1);
}

.gp-unified-footer-payments img {
  width: auto;
  object-fit: contain;
}

.gp-unified-footer-payments img[alt="Visa"] {
  height: 16px;
}

.gp-unified-footer-payments img[alt="Pix"],
.gp-unified-footer-payments img[alt="Mercado Pago"] {
  height: 20px;
}

.gp-unified-footer-mastercard {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.gp-unified-footer-mastercard img {
  height: 16px;
}

@media (max-width: 900px) {
  .gp-unified-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
    padding: 40px 0 32px;
  }

  .gp-unified-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .gp-unified-footer-payments {
    flex-wrap: wrap;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .gp-unified-footer-inner {
    padding: 0 18px;
  }

  .gp-unified-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0 24px;
  }

  .gp-unified-footer-brand p {
    max-width: none;
  }

  .gp-unified-footer-links h4 {
    margin-bottom: 14px;
  }

  .gp-unified-footer-bottom {
    gap: 16px;
    padding: 22px 0 26px;
  }

  .gp-unified-footer-payments {
    width: 100%;
    gap: 14px 16px;
  }

  .gp-unified-footer-mastercard {
    letter-spacing: 0.08em;
  }
}

.gp-nav-auth {
  margin-left: auto;
  flex: 0 0 auto;
}

.gp-nav-group .dropdown-toggle::after {
  margin-left: 8px;
}

.gp-nav-desktop-only {
  display: list-item;
}

.gp-nav-mobile-only {
  display: none;
}

.gp-nav-mobile-section {
  display: none;
}

.gp-nav-section-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 40px;
  padding: 10px 12px 6px;
  border: 0;
  background: transparent;
  color: var(--gp-ink);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-align: left;
}

.gp-nav-section-toggle::after {
  content: "+";
  color: var(--gp-muted);
  font-size: 1rem;
  font-weight: 700;
}

.gp-nav-section-toggle[aria-expanded="true"]::after {
  content: "-";
}

.gp-nav-mobile-collapse {
  padding-left: 12px;
}

.gp-nav-mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gp-nav-menu {
  border-radius: 18px;
  border: 1px solid rgba(12, 34, 96, 0.1);
  box-shadow: 0 20px 40px rgba(12, 34, 96, 0.12);
  padding: 8px;
  z-index: 2000;
}

.gp-nav-menu .dropdown-item {
  border-radius: 12px;
  font-weight: 700;
  padding: 10px 12px;
}

.gp-nav-menu .dropdown-item:active,
.gp-nav-menu .dropdown-item:focus,
.gp-nav-menu .dropdown-item:hover {
  background: rgba(12, 34, 96, 0.06);
  color: var(--gp-green-strong);
}

.gp-auth-shell {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.gp-auth-user {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(12, 34, 96, 0.06);
  color: var(--gp-ink);
  font-weight: 700;
}

.gp-auth-user:hover {
  color: var(--gp-green-strong);
}

.gp-auth-form {
  margin: 0;
}

.gp-auth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.gp-auth-btn:hover {
  transform: translateY(-1px);
}

.gp-auth-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--gp-green) 0%, var(--gp-green-strong) 100%);
  box-shadow: 0 14px 28px rgba(23, 178, 106, 0.24);
}

.gp-auth-btn-muted {
  color: var(--gp-ink);
  background: rgba(12, 34, 96, 0.06);
}

.gp-shell-main {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 12px 36px;
  flex: 1 0 auto;
}

.gp-shell-footer {
  padding: 0 12px 24px;
}

.gp-shell-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(12, 34, 96, 0.94), rgba(17, 53, 130, 0.95));
  color: rgba(255, 255, 255, 0.9);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 20px 46px rgba(12, 34, 96, 0.18);
}

.gp-shell-footer-inner strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.gp-shell-footer-inner span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.gp-shell-footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.gp-shell-footer-links a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.gp-shell-footer-links a:hover {
  color: #9bf0c3;
}

.btn-primary {
  color: #fff;
  background-color: var(--gp-ink-2);
  border-color: var(--gp-ink-2);
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: var(--gp-ink-2);
  border-color: var(--gp-ink-2);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

@media (max-width: 991.98px) {
  .gp-shell-header {
    padding-top: 10px;
  }

  .gp-nav-bar {
    padding: 10px 12px;
    gap: 10px;
    flex-wrap: wrap;
  }

  .gp-nav-toggle {
    order: 1;
  }

  .gp-contact-link {
    order: 2;
  }

  .gp-brand {
    order: 3;
    margin-left: auto;
  }

  .gp-brand-logo {
    width: 166px;
  }

  .gp-nav-collapse {
    order: 4;
    margin-top: 8px;
    border-top: 1px solid rgba(12, 34, 96, 0.08);
    padding-top: 12px;
  }

  .gp-nav-links {
    align-items: stretch;
    gap: 4px;
    flex-wrap: wrap;
  }

  .gp-nav-link {
    justify-content: flex-start;
    width: 100%;
    padding-inline: 12px;
  }

  .gp-nav-desktop-only {
    display: none;
  }

  .gp-nav-mobile-only {
    display: list-item;
  }

  .gp-nav-mobile-section {
    display: list-item;
  }

  .gp-nav-menu {
    border: 0;
    box-shadow: none;
    padding: 0 0 0 12px;
    background: transparent;
  }

  .gp-nav-menu .dropdown-item {
    padding: 10px 0;
  }

  .gp-nav-auth {
    width: 100%;
    margin-left: 0;
  }

  .gp-auth-shell {
    justify-content: stretch;
  }

  .gp-auth-shell > * {
    flex: 1 1 100%;
  }

  .gp-auth-btn,
  .gp-auth-user {
    width: 100%;
  }

  .gp-shell-main,
  .gp-shell-footer {
    padding-inline: 10px;
  }

  .gp-shell-main {
    padding-top: 8px;
  }

  .gp-shell-footer-inner {
    border-radius: 20px;
    padding: 16px 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  .gp-shell-footer-links {
    justify-content: flex-start;
  }
}

@media (min-width: 992px) {
  .gp-nav-toggle {
    display: none;
  }

  .gp-nav-bar {
    justify-content: flex-start;
  }

  .gp-nav-collapse {
    flex: 1 1 auto;
    order: 3;
    margin-left: 18px;
  }

  .gp-contact-link {
    order: 2;
    margin-left: 0;
  }

  .gp-brand {
    order: 1;
    margin-right: 0;
  }

  .gp-nav-auth {
    margin-left: 12px;
  }
}
