/* CSS escopado para uso no GreatPages. Todo o layout vive dentro de .gp-test-lp. */
.gp-test-lp {
  --blue: #1604a1;
  --blue-dark: #08042f;
  --green: #2cca03;
  --green-dark: #118700;
  --text: #0b123d;
  --muted: #5b627d;
  --line: #dce1ef;
  --white: #ffffff;
  --off-white: #f6f8fb;
  --shadow: 0 22px 60px rgba(8, 4, 47, 0.18);
}
.gp-test-lp * {
  box-sizing: border-box;
}
.gp-test-lp {
  scroll-behavior: smooth;
}
.gp-test-lp {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial,
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
.gp-test-lp img {
  display: block;
  max-width: 100%;
}
.gp-test-lp a {
  color: inherit;
  text-decoration: none;
}
.gp-test-lp button,
.gp-test-lp input,
.gp-test-lp textarea {
  font: inherit;
}
.gp-test-lp .container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.gp-test-lp .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.gp-test-lp .site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(8, 4, 47, 0.08);
  backdrop-filter: blur(12px);
}
.gp-test-lp .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 24px;
}
.gp-test-lp .logo img {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 350px;
}
.gp-test-lp .logo strong {
  color: var(--green-dark);
}
.gp-test-lp .site-nav {
  display: none;
  align-items: center;
  gap: 28px;
  color: var(--text);
  font-weight: 600;
}
.gp-test-lp .site-nav a {
  transition: color 180ms ease;
}
.gp-test-lp .site-nav a:hover {
  text-decoration: underline;
}
.gp-test-lp .menu-toggle {
  display: inline-grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  place-content: center;
  color: var(--blue);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}
.gp-test-lp .menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: currentColor;
}
.gp-test-lp .site-header.menu-open .site-nav {
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  display: grid;
  gap: 16px;
  padding: 20px 16px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 36px rgba(8, 4, 47, 0.12);
}
.gp-test-lp .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border: 0;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(44, 202, 3, 0.26);
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
}
.gp-test-lp .button:hover {
  filter: brightness(0.98);
}
.gp-test-lp .button-small {
  min-height: 42px;
  padding-inline: 20px;
  font-size: 0.95rem;
}
.gp-test-lp .button-full {
  width: 100%;
}
.gp-test-lp .hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}
.gp-test-lp .hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background:
    radial-gradient(circle at 20% 35%, rgba(44, 202, 3, 0.35) 0 2px, transparent 3px),
    radial-gradient(circle at 36% 58%, rgba(255, 255, 255, 0.28) 0 2px, transparent 3px),
    linear-gradient(115deg, transparent 0 22%, rgba(255, 255, 255, 0.15) 22.2% 22.5%, transparent 22.7%),
    linear-gradient(35deg, transparent 0 34%, rgba(255, 255, 255, 0.13) 34.2% 34.5%, transparent 34.7%),
    linear-gradient(155deg, transparent 0 50%, rgba(255, 255, 255, 0.12) 50.2% 50.5%, transparent 50.7%);
  background-size: 260px 260px, 320px 320px, 100% 100%, 100% 100%, 100% 100%;
}
.gp-test-lp .hero-grid {
  position: relative;
  display: grid;
  gap: 32px;
  padding: 64px 0 56px;
}
.gp-test-lp .hero-copy {
  max-width: 620px;
  z-index: 2;
}
.gp-test-lp .eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.gp-test-lp h1,
.gp-test-lp h2,
.gp-test-lp h3,
.gp-test-lp p {
  margin-top: 0;
}
.gp-test-lp h1,
.gp-test-lp h2,
.gp-test-lp h3 {
  font-weight: 900;
}
.gp-test-lp h1 {
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 8vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}
.gp-test-lp h1 span {
  display: block;
  color: var(--green);
}
.gp-test-lp .hero-copy p {
  max-width: 560px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2.2vw, 1.12rem);
}
.gp-test-lp .hero-card {
  position: relative;
  z-index: 3;
  width: min(100%, 460px);
  margin-inline: auto;
  background: var(--white);
  border: 2px solid var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.gp-test-lp .hero-media {
  position: relative;
  margin: 0;
  background: var(--blue-dark);
  line-height: 0;
}
.gp-test-lp .hero-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.gp-test-lp .lead-form {
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(8, 4, 47, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.gp-test-lp .hero-form {
  z-index: 3;
  padding: 24px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.gp-test-lp .form-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.gp-test-lp .form-mark {
  flex: 0 0 auto;
  width: 12px;
  height: 42px;
  border-radius: 999px;
  background: var(--green);
}
.gp-test-lp .form-header h2 {
  margin: 0;
  font-size: 1.16rem;
  font-weight: 900;
  line-height: 1.25;
}
.gp-test-lp .field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}
.gp-test-lp .field label {
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
}
.gp-test-lp .field input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid #cfd5e2;
  border-radius: 8px;
  outline: none;
}
.gp-test-lp .field textarea {
  width: 100%;
  min-height: 140px;
  padding: 12px 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid #cfd5e2;
  border-radius: 8px;
  outline: none;
  resize: vertical;
}
.gp-test-lp .field input:focus,
.gp-test-lp .field textarea:focus,
.gp-test-lp .checkbox input:focus-visible,
.gp-test-lp .button:focus-visible,
.gp-test-lp .site-nav a:focus-visible,
.gp-test-lp .menu-toggle:focus-visible {
  outline: 3px solid rgba(44, 202, 3, 0.5);
  outline-offset: 3px;
}
.gp-test-lp .checkbox {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 16px 0 18px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}
.gp-test-lp .checkbox input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--green-dark);
}
.gp-test-lp .form-honey {
  display: none;
}
.gp-test-lp .microcopy,
.gp-test-lp .form-message {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}
.gp-test-lp .form-message {
  color: var(--green-dark);
  font-weight: 700;
}
.gp-test-lp .form-message.is-error {
  color: #b42318;
}
.gp-test-lp .button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.gp-test-lp .section {
  padding: 72px 0;
}
.gp-test-lp .section-white {
  background: var(--white);
}
.gp-test-lp .section-soft {
  background: var(--off-white);
}
.gp-test-lp .split-section {
  display: grid;
  gap: 30px;
}
.gp-test-lp .split-section h2,
.gp-test-lp .section-heading h2,
.gp-test-lp .municipalismo h2,
.gp-test-lp .cta-copy h2 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}
.gp-test-lp .section-text {
  color: var(--text);
  border-left: 2px solid var(--line);
  padding-left: 24px;
}
.gp-test-lp .section-text p:last-child,
.gp-test-lp .municipalismo p:last-of-type,
.gp-test-lp .section-heading p:last-child,
.gp-test-lp .cta-copy p:last-child {
  margin-bottom: 0;
}
.gp-test-lp .feature-list {
  display: grid;
  gap: 16px;
  margin-top: 44px;
}
.gp-test-lp .feature-item {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.gp-test-lp .feature-line {
  display: block;
  width: 44px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--green);
}
.gp-test-lp .feature-item h3,
.gp-test-lp .result-card h3 {
  margin-bottom: 6px;
  color: var(--green-dark);
  font-size: 1.05rem;
  font-weight: 900;
}
.gp-test-lp .feature-item p,
.gp-test-lp .result-card p,
.gp-test-lp .municipalismo p,
.gp-test-lp .section-heading p,
.gp-test-lp .cta-copy p {
  color: var(--muted);
}
.gp-test-lp .section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}
.gp-test-lp .result-grid {
  display: grid;
  gap: 16px;
}
.gp-test-lp .result-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(8, 4, 47, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(8, 4, 47, 0.08);
}
.gp-test-lp .result-card strong {
  display: block;
  margin-bottom: 20px;
  color: var(--green-dark);
  font-size: clamp(1.9rem, 9vw, 2.45rem);
  line-height: 1;
}
.gp-test-lp .result-card p {
  margin-bottom: 18px;
}
.gp-test-lp .result-card small {
  margin-top: auto;
  color: var(--muted);
  font-size: 0.8rem;
}
.gp-test-lp .municipalismo {
  background: linear-gradient(135deg, var(--white) 0%, #eef7f0 100%);
}
.gp-test-lp .municipalismo-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}
.gp-test-lp .portrait-wrap {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.gp-test-lp .portrait-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
}
.gp-test-lp blockquote {
  margin: 28px 0 0;
  padding: 22px 0 22px 24px;
  color: var(--blue);
  border-left: 5px solid var(--green);
  font-size: clamp(1.4rem, 5vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
}
.gp-test-lp .cta-section {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}
.gp-test-lp .cta-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}
.gp-test-lp .cta-copy h2,
.gp-test-lp .cta-copy p {
  color: var(--white);
}
.gp-test-lp .cta-copy p {
  opacity: 0.88;
}
.gp-test-lp .cta-form {
  padding: 24px;
}
.gp-test-lp .site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.82);
  background: var(--blue-dark);
}
.gp-test-lp .footer-content {
  display: grid;
  gap: 16px;
}
.gp-test-lp .footer-content p,
.gp-test-lp .footer-content small {
  margin: 0;
  max-width: 940px;
}
.gp-test-lp .footer-logo {
  width: min(100%, 320px);
  height: auto;
}
.gp-test-lp .footer-content nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}
.gp-test-lp .footer-content a,
.gp-test-lp .footer-content span {
  color: var(--white);
  font-weight: 600;
}
.gp-test-lp .footer-content a:hover {
  color: var(--green);
}
.gp-test-lp .legal-hero {
  padding: 72px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}
.gp-test-lp .legal-hero h1 {
  max-width: 820px;
  margin-bottom: 16px;
}
.gp-test-lp .legal-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}
.gp-test-lp .legal-updated {
  margin-top: 18px;
  font-weight: 700;
}
.gp-test-lp .legal-content {
  max-width: 860px;
}
.gp-test-lp .legal-content h2 {
  margin: 34px 0 12px;
  color: var(--text);
  font-size: clamp(1.4rem, 4vw, 2rem);
  line-height: 1.2;
}
.gp-test-lp .legal-content h3 {
  margin: 30px 0 10px;
  color: var(--text);
  font-size: clamp(1.18rem, 3vw, 1.55rem);
  line-height: 1.25;
}
.gp-test-lp .legal-content h2:first-child,
.gp-test-lp .legal-content h3:first-child {
  margin-top: 0;
}
.gp-test-lp .legal-content p,
.gp-test-lp .legal-content li {
  color: var(--muted);
}
.gp-test-lp .legal-content ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 22px;
}
.gp-test-lp .legal-content a,
.gp-test-lp .contact-card a {
  color: var(--blue);
  font-weight: 700;
}
.gp-test-lp .legal-section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.gp-test-lp .legal-section .section-heading {
  display: none;
}
.gp-test-lp .legal-accordion {
  display: grid;
  gap: 8px;
}
.gp-test-lp .legal-panel {
  scroll-margin-top: 88px;
  background: #fbfcfe;
  border: 1px solid rgba(8, 4, 47, 0.1);
  border-radius: 8px;
  overflow: hidden;
}
.gp-test-lp .legal-panel summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  padding: 12px 16px;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}
.gp-test-lp .legal-panel summary::-webkit-details-marker {
  display: none;
}
.gp-test-lp .legal-panel summary::after {
  content: "+";
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  color: var(--green-dark);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}
.gp-test-lp .legal-panel[open] summary::after {
  content: "-";
}
.gp-test-lp .legal-panel summary:focus-visible {
  outline: 3px solid rgba(44, 202, 3, 0.5);
  outline-offset: -3px;
}
.gp-test-lp .legal-panel summary span {
  padding-right: 28px;
  font-size: 0.95rem;
  font-weight: 900;
}
.gp-test-lp .legal-panel summary small {
  color: var(--muted);
  font-size: 0.76rem;
}
.gp-test-lp .legal-panel .legal-content,
.gp-test-lp .legal-contact-content {
  max-width: none;
  padding: 18px 16px 22px;
  border-top: 1px solid var(--line);
}
.gp-test-lp .legal-contact-content {
  padding-top: 18px;
}
.gp-test-lp .contact-page-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}
.gp-test-lp .contact-form {
  margin-top: 22px;
  padding: 24px;
}
.gp-test-lp .contact-card {
  padding: 24px;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.gp-test-lp .contact-card h2,
.gp-test-lp .contact-card h3 {
  margin-bottom: 18px;
  font-size: 1.35rem;
  line-height: 1.2;
}
.gp-test-lp .contact-card ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.gp-test-lp .contact-card li {
  display: grid;
  gap: 4px;
  color: var(--muted);
}
.gp-test-lp .contact-card strong {
  color: var(--text);
}
.gp-test-lp .whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(17, 135, 0, 0.28);
  font-weight: 900;
}
.gp-test-lp .whatsapp-float:focus-visible {
  outline: 3px solid rgba(44, 202, 3, 0.5);
  outline-offset: 3px;
}
@media (min-width: 720px) {
.gp-test-lp .feature-list,
.gp-test-lp .result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.gp-test-lp .hero-form,
.gp-test-lp .cta-form {
    padding: 30px;
  }


}
@media (min-width: 860px) {
.gp-test-lp .contact-page-grid {
    grid-template-columns: minmax(0, 1fr) 320px;
  }


}
@media (min-width: 980px) {
.gp-test-lp .menu-toggle {
    display: none;
  }
.gp-test-lp .site-nav {
    display: flex;
  }
.gp-test-lp .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
    align-items: center;
    gap: 48px;
    padding: 80px 0;
  }
.gp-test-lp .hero-copy {
    max-width: 620px;
  }
.gp-test-lp .hero-card {
    width: 100%;
    margin-inline: 0;
    justify-self: end;
  }
.gp-test-lp .split-section,
.gp-test-lp .municipalismo-grid,
.gp-test-lp .cta-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
.gp-test-lp .feature-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.gp-test-lp .result-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
.gp-test-lp .result-card {
    min-height: 330px;
  }


}
@media (min-width: 1280px) {
.gp-test-lp .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 500px);
    gap: 64px;
    padding: 96px 0;
  }
.gp-test-lp .hero-copy {
    max-width: 660px;
  }
.gp-test-lp .hero-card {
    width: 100%;
  }


}
@media (max-width: 430px) {
.gp-test-lp .container {
    width: min(100% - 24px, 1120px);
  }
.gp-test-lp .hero-grid {
    padding-top: 52px;
  }
.gp-test-lp .hero-form,
.gp-test-lp .cta-form,
.gp-test-lp .feature-item,
.gp-test-lp .result-card {
    padding: 20px;
  }
.gp-test-lp .header-content {
    gap: 0;
  }
.gp-test-lp .logo img {
  max-width: 250px;
}
.gp-test-lp .section {
    padding: 56px 0;
  }
.gp-test-lp .section-text {
    padding-left: 16px;
  }
.gp-test-lp .whatsapp-float {
    right: 12px;
    bottom: 12px;
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.9rem;
  }


}

/* ===== Aditivos: media de conteudo (trajetoria) + resultados em lista ===== */
.gp-test-lp .media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(8, 4, 47, 0.08);
}
.gp-test-lp .media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gp-test-lp .media-duo {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}
.gp-test-lp .media-duo .media-frame {
  aspect-ratio: 4 / 3;
}
.gp-test-lp .media-duo .media-frame img {
  object-position: center 25%;
}
.gp-test-lp .results-split {
  display: grid;
  gap: 30px;
  align-items: center;
}
.gp-test-lp .results-photo {
  aspect-ratio: 4 / 3;
}
.gp-test-lp .results-photo img {
  object-position: 62% center;
}
.gp-test-lp .results-list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
}
.gp-test-lp .results-list li {
  position: relative;
  padding-left: 34px;
  color: var(--text);
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  font-weight: 600;
  line-height: 1.4;
}
.gp-test-lp .results-list li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green-dark);
  font-weight: 900;
}
.gp-test-lp .results-list strong {
  color: var(--green-dark);
}
@media (min-width: 720px) {
  .gp-test-lp .media-duo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 980px) {
  .gp-test-lp .results-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.lp-video-short {
  width: 100%;
  padding: clamp(40px, 6vw, 80px) 20px;
  display: flex;
  justify-content: center;
  background: transparent;
}

.lp-video-short iframe {
  width: min(100%, 390px);
  aspect-ratio: 9 / 16;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

@media (max-width: 480px) {
  .lp-video-short {
    padding: 32px 16px;
  }

  .lp-video-short iframe {
    width: min(100%, 340px);
    border-radius: 20px;
  }
}