:root {
  --bg: #e9f0f7;
  --bg-soft: #f6f9fc;
  --surface: #ffffff;
  --surface-soft: #fbfdff;

  --text: #14243d;
  --text-soft: #4d607c;

  --line: #c9d7e6;
  --line-strong: #b9cadc;

  --blue-950: #0b2554;
  --blue-900: #10336b;
  --blue-800: #184892;
  --blue-700: #215dc7;
  --blue-600: #2f74e6;
  --blue-100: #eaf2ff;

  --green-900: #0b4d2c;
  --green-800: #0f6a3c;
  --green-700: #19884f;
  --green-600: #21a861;
  --green-100: #e9f8ef;

  --shadow-sm: 0 12px 28px rgba(16, 51, 107, 0.08);
  --shadow-md: 0 20px 48px rgba(16, 51, 107, 0.12);
  --shadow-lg: 0 28px 64px rgba(16, 51, 107, 0.16);

  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;

  --container: 1180px;
  --transition: 0.28s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(180deg, #eef4fa 0%, #e6edf5 100%);
  color: var(--text);
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.section-alt {
  background: linear-gradient(180deg, #f8fbff 0%, #edf4fb 100%);
}

.section-tight-top {
  padding-top: 44px;
}

.section-tight-bottom {
  padding-bottom: 44px;
}

h1,
h2,
h3,
h4 {
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--blue-900);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.24rem;
  color: var(--blue-900);
  margin-bottom: 10px;
}

p {
  color: var(--text-soft);
  margin-bottom: 14px;
  text-align: justify;
  text-justify: inter-word;
}

.section-intro {
  max-width: 780px;
  font-size: 1.05rem;
  margin-bottom: 34px;
  text-align: justify;
  text-justify: inter-word;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* =========================
   HEADER
========================= */

.site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #dde8f4;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 6px 18px rgba(16, 51, 107, 0.04);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.nav a {
  position: relative;
  font-weight: 600;
  color: #1d3255;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav a:hover {
  color: var(--blue-700);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-700), var(--green-600));
  transition: width var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

/* =========================
   BOTÕES
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: #fff;
  box-shadow: 0 14px 30px rgba(33, 93, 199, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 18px 36px rgba(33, 93, 199, 0.30);
}

.btn-outline {
  background: #ffffff;
  color: var(--blue-900);
  border-color: rgba(16, 51, 107, 0.16);
}

.btn-outline:hover {
  background: #fafdff;
  border-color: rgba(16, 51, 107, 0.28);
}

.btn-gnv {
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  color: #fff;
  box-shadow: 0 14px 30px rgba(33, 168, 97, 0.22);
}

.btn-gnv:hover {
  box-shadow: 0 18px 36px rgba(33, 168, 97, 0.30);
}

/* =========================
   HERO HOME
========================= */

.hero-home {
  position: relative;
  height: calc(100vh - 94px);
  min-height: 560px;
  max-height: 680px;
  overflow: hidden;
  background: var(--blue-900);
}

.hero-track {
  position: relative;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 37, 84, 0.95) 0%,
    rgba(16, 51, 107, 0.84) 44%,
    rgba(16, 51, 107, 0.38) 100%
  );
}

.hero-slide.gnv .hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(11, 77, 44, 0.94) 0%,
    rgba(15, 106, 60, 0.82) 44%,
    rgba(33, 168, 97, 0.34) 100%
  );
}

.hero-copy-wrap {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(180px, 1fr);
  align-items: center;
  gap: 36px;
  padding-top: 24px;
  padding-bottom: 64px;
}

.hero-copy {
  max-width: 560px;
  color: #fff;
}

.hero-copy-wrap::after {
  content: "";
  display: block;
  width: 100%;
  min-height: 260px;
  max-height: 320px;
  border-radius: 24px;
  background: none;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.99rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-copy h1 {
  color: #fff;
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 0.98;
  max-width: 9ch;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.90);
  font-size: 0.96rem;
  max-width: 500px;
  margin-bottom: 20px;
  text-align: left;
}

.hero-copy-glp h1 {
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1.02;
  max-width: 11ch;
}

.hero-copy-glp p {
  max-width: 540px;
  font-size: 0.93rem;
}

.hero-copy-gnv h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 0.98;
  max-width: 9ch;
}

.hero-copy-gnv p {
  max-width: 500px;
  font-size: 0.96rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions .btn {
  padding: 12px 20px;
  font-size: 0.95rem;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.hero-dot.active {
  width: 28px;
  background: #fff;
}

/* =========================
   HERO INTERNO
========================= */

.page-hero {
  padding: 92px 0;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

.page-hero.glp {
  background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
}

.page-hero.gnv {
  background: linear-gradient(135deg, var(--green-900), var(--green-600));
}

.page-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 16px;
  text-align: center;
}

.page-hero p {
  max-width: 900px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.90);
  text-align: center;
  text-justify: auto;
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   LAYOUTS
========================= */

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.about-intro-text {
  max-width: 680px;
}

.about-intro-side {
  display: grid;
  gap: 18px;
  align-self: start;
}

.about-summary-card,
.about-support-card {
  height: fit-content;
}

.about-support-card {
  background: linear-gradient(180deg, #f9fcff 0%, #f3f8fd 100%);
  border: 1px solid var(--line);
}

/* =========================
   CARDS
========================= */

.card {
  background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #b2c6dd;
}

.card-glp {
  border-top: 4px solid var(--blue-700);
}

.card-gnv {
  border-top: 4px solid var(--green-600);
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 700;
  background: var(--blue-100);
  color: var(--blue-700);
}

.card-gnv .card-icon {
  background: var(--green-100);
  color: var(--green-700);
}

.section .card h3 {
  line-height: 1.15;
}

.card p {
  text-align: justify;
  text-justify: inter-word;
}

/* =========================
   PAINÉIS DE PRODUTO
========================= */

.product-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product-panel {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  padding: 36px;
  border-radius: var(--radius-lg);
  color: #fff;
  box-shadow: var(--shadow-md);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    filter var(--transition);
}

.product-panel:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  filter: saturate(1.04);
}

.product-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.14), transparent 28%);
}

.product-panel > * {
  position: relative;
  z-index: 1;
}

.product-panel.glp {
  background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
}

.product-panel.gnv {
  background: linear-gradient(135deg, var(--green-900), var(--green-600));
}

.product-panel .tag {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}

.product-panel h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 12px;
}

.product-panel p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 22px;
  text-align: justify;
  text-justify: inter-word;
}

.product-panel ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.product-panel li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.92);
  text-align: left;
}

.product-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.90);
}

/* =========================
   LISTAS
========================= */

.feature-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--text-soft);
}

.feature-list li span:last-child {
  text-align: left;
}

.feature-bullet {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--blue-700);
}

.feature-bullet.gnv {
  background: var(--green-600);
}

/* =========================
   FAIXA DE MÉTRICAS
========================= */

.highlight-band {
  background: linear-gradient(90deg, var(--blue-950), var(--blue-700));
  color: #fff;
}

.highlight-band .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 30px 0;
  align-items: start;
}

.metric strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 6px;
  text-align: left;
}

.metric span {
  display: block;
  color: rgba(255, 255, 255, 0.84);
  text-align: left;
}

/* =========================
   CTA
========================= */

.cta-box {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 42px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #b4c8df;
}

.cta-box .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.cta-box h2 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.1;
}

.cta-box p {
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  text-align: center;
  text-justify: auto;
}

.cta-box .btn {
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   CONTATO
========================= */

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "contact form"
    "map     form";
  gap: 30px;
  align-items: stretch;
}

.contact-card,
.form-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.contact-card:hover,
.form-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #b4c8df;
}

.contact-card h3,
.form-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.contact-points {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.contact-points li {
  color: var(--text-soft);
  text-align: left;
}

.contact-points li strong {
  display: block;
  color: var(--blue-900);
}

.form-card {
  position: relative;
  overflow: hidden;
}

.form-card::before,
.form-card::after {
  content: none !important;
}

.form-grid {
  display: grid;
  gap: 18px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1.5px solid #b7c9de;
  background: #ffffff;
  color: var(--text);
  box-shadow: inset 0 1px 2px rgba(16, 51, 107, 0.03);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    transform var(--transition);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: #95afcc;
  background: #ffffff;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: #215dc7;
  box-shadow:
    0 0 0 4px rgba(33, 93, 199, 0.14),
    0 8px 20px rgba(33, 93, 199, 0.08);
  transform: translateY(-1px);
}

/* =========================
   GALERIA
========================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  border: 0;
  padding: 0;
  background: #fff;
  cursor: pointer;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #b8cbe1;
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

/* =========================
   LIGHTBOX
========================= */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 16, 31, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  z-index: 2000;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  max-width: 1000px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.04);
}

.lightbox-close {
  top: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav.prev {
  left: 24px;
}

.lightbox-nav.next {
  right: 24px;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  margin-top: 40px;
  padding: 28px 0;
  background: #fff;
  border-top: 1px solid #d9e4f1;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
  text-align: left;
}

/* =========================
   EQUIPE
========================= */

.team-section {
  position: relative;
}

.team-section .section-intro {
  max-width: none;
  width: 100%;
  margin-bottom: 28px;
  text-align: justify;
  text-justify: inter-word;
}

.team-stack {
  display: grid;
  gap: 28px;
  margin-top: 18px;
}

.team-member {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: center;
  margin: 0;
  padding: 30px;
}

.team-photo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-member img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid #dbe5f0;
  box-shadow: 0 12px 28px rgba(16, 51, 107, 0.10);
  background: #f3f7fb;
}

.team-info h3 {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.team-info .role {
  display: block;
  font-size: 0.94rem;
  color: var(--blue-700);
  font-weight: 600;
  margin-bottom: 14px;
}

.team-info p {
  margin-bottom: 10px;
  text-align: justify;
  text-justify: inter-word;
}

.team-section .card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

/* =========================
   THEME GNV
========================= */

.theme-gnv {
  background: linear-gradient(180deg, #edf8f1 0%, #e5f3ea 100%);
}

.theme-gnv h2,
.theme-gnv h3 {
  color: var(--green-900);
}

.theme-gnv p,
.theme-gnv .section-intro {
  color: #05401f;
}

.theme-gnv .feature-list li,
.theme-gnv .contact-points li {
  color: #2f5b42;
}

.theme-gnv .eyebrow {
  background: var(--green-100);
  color: var(--green-700);
}

.theme-gnv .nav a {
  color: #234b35;
}

.theme-gnv .nav a:hover,
.theme-gnv .nav a.active {
  color: var(--green-700);
}

.theme-gnv .page-hero,
.theme-gnv .page-hero.gnv {
  background: linear-gradient(135deg, var(--green-900), var(--green-600));
}

.theme-gnv .card {
  border-color: rgba(25, 136, 79, 0.14);
  box-shadow: 0 18px 44px rgba(25, 136, 79, 0.10);
}

.theme-gnv .card:hover {
  box-shadow: 0 24px 54px rgba(25, 136, 79, 0.14);
}

.theme-gnv .card-icon {
  background: var(--green-100);
  color: var(--green-700);
}

.theme-gnv .feature-bullet,
.theme-gnv .feature-bullet.gnv {
  background: var(--green-600);
}

.theme-gnv .btn-primary,
.theme-gnv .btn-gnv {
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
}

.theme-gnv .btn-outline {
  color: var(--green-800);
  border-color: rgba(25, 136, 79, 0.18);
}

.theme-gnv .btn-outline:hover {
  background: #fff;
  border-color: rgba(25, 136, 79, 0.30);
}

.theme-gnv .highlight-band {
  background: linear-gradient(90deg, var(--green-900), var(--green-700));
}

.theme-gnv .cta-box {
  background: linear-gradient(180deg, #ffffff 0%, #f3fbf6 100%);
  border-color: rgba(25, 136, 79, 0.16);
}

.theme-gnv .contact-card,
.theme-gnv .form-card {
  border-color: rgba(25, 136, 79, 0.14);
}

.theme-gnv .form-field input,
.theme-gnv .form-field select,
.theme-gnv .form-field textarea {
  border-color: #b7d8c4;
}

.theme-gnv .form-field input:hover,
.theme-gnv .form-field select:hover,
.theme-gnv .form-field textarea:hover {
  border-color: #8fbea1;
}

.theme-gnv .form-field input:focus,
.theme-gnv .form-field select:focus,
.theme-gnv .form-field textarea:focus {
  border-color: #19884f;
  box-shadow:
    0 0 0 4px rgba(25, 136, 79, 0.14),
    0 8px 20px rgba(25, 136, 79, 0.08);
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 980px) {
  .grid-2,
  .grid-3,
  .product-split,
  .contact-wrap,
  .highlight-band .container,
  .gallery-grid,
  .about-intro-grid {
    grid-template-columns: 1fr;
  }

  .hero-home,
  .hero-track {
    min-height: auto;
  }

  .hero-copy-wrap {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .hero-copy-wrap::after {
    min-height: 240px;
  }

  .header-wrap {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 16px 0;
  }

  .nav {
    gap: 18px 24px;
  }

  .about-intro-text {
    max-width: 100%;
  }

  .team-member {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 22px;
  }

  .team-member img {
    margin: 0 auto;
  }

  .team-section .section-intro {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 64px 0;
  }

  .section-tight-top {
    padding-top: 32px;
  }

  .section-tight-bottom {
    padding-bottom: 32px;
  }

  .hero-home,
  .hero-track {
    min-height: auto;
  }

  .hero-copy-wrap {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 96px;
    gap: 24px;
  }

  .hero-copy h1 {
    font-size: 2.9rem;
    max-width: 100%;
    line-height: 1.02;
  }

  .hero-copy p {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-dots {
    bottom: 18px;
  }

  .gallery-item img {
    height: 220px;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox-nav {
    width: 48px;
    height: 48px;
    font-size: 1.6rem;
  }

  .lightbox-nav.prev {
    left: 10px;
  }

  .lightbox-nav.next {
    right: 10px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 46px;
    height: 46px;
  }

  .brand img {
    height: 52px;
  }

  .team-member {
    padding: 24px;
  }

  .team-member img {
    width: 180px;
    height: 180px;
  }

  .team-info h3 {
    font-size: 1.4rem;
  }
}

/* =========================
   PADRONIZAÇÃO DE LAYOUT INTERNO
========================= */

/* TODAS AS SEÇÕES INTERNAS */
.section .container {
  max-width: 1100px;
}

/* BLOCO DE TEXTO (título + parágrafo) */
.section > .container > h2,
.section > .container > p,
.section > .container > .section-intro {
  max-width: 820px;
}

/* GARANTE QUE CARDS COMECEM NO MESMO EIXO */
.grid-3,
.grid-2,
.product-split {
  margin-top: 28px;
}

/* REMOVE sensação de “flutuação” */
.section h2 {
  margin-bottom: 16px;
}

.section p {
  margin-bottom: 16px;
}

/* CORREÇÃO DE ESPAÇAMENTO EXAGERADO ENTRE BLOCOS */
.section {
  padding: 72px 0;
}

/* EVITA QUE TEXTOS FIQUEM “soltos” demais */
.section-intro {
  margin-bottom: 28px;
}

/* =========================
   CORREÇÃO ESPECÍFICA (SEÇÕES QUE VOCÊ MOSTROU)
========================= */

/* PORTFÓLIO / PROCESSO / APLICAÇÃO / ATENDIMENTO */
.section .eyebrow + h2 {
  max-width: 900px;
}

.section .eyebrow + h2 + p {
  max-width: 820px;
}

/* =========================
   FAIXA AZUL (NÃO JUSTIFICAR)
========================= */

.highlight-band p,
.highlight-band span {
  text-align: left !important;
  text-justify: auto !important;
}

/* =========================
   TÍTULOS DE SEÇÃO CENTRALIZADOS
   + PARÁGRAFOS RELACIONADOS JUSTIFICADOS
========================= */

.section > .container > .eyebrow {
  display: table;
  margin-left: auto;
  margin-right: auto;
}

.section > .container > .eyebrow {
  display: table;
  margin-left: auto;
  margin-right: auto;
}

.section > .container > h2 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section > .container > p,
.section > .container > .section-intro {
  max-width: 100%;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  text-align: justify;
  text-justify: inter-word;
}

/* quando houver grid logo abaixo, o texto acompanha a largura dele */
.section > .container > p + .grid-3,
.section > .container > .section-intro + .grid-3,
.section > .container > p + .grid-2,
.section > .container > .section-intro + .grid-2,
.section > .container > p + .product-split,
.section > .container > .section-intro + .product-split {
  margin-top: 28px;

}

.map-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow-md);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.map-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #b4c8df;
}

.map-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.map-frame {
  width: 100%;
  min-height: 320px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #dbe5f0;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 320px;
}

.contact-card {
  grid-area: contact;
}

.map-card {
  grid-area: map;
}

.form-card {
  grid-area: form;
}

.form-message {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  display: none;
}

.form-message.success {
  color: #16a34a;
}

.form-message.error {
  color: #dc2626;
}

.btn.loading {
  opacity: 0.7;
  pointer-events: none;
}