:root {
  --gm-primary: #ba5208;
  --gm-primary-dark: #8f3e05;
  --gm-dark: #251e20;
  --gm-dark-2: #1d1718;
  --gm-light: #f2f2f2;
  --gm-white: #ffffff;
  --gm-text: #2d2527;
  --gm-text-soft: #6b6366;
  --gm-border: rgba(37, 30, 32, 0.08);
  --gm-shadow: 0 22px 60px rgba(37, 30, 32, 0.10);
  --gm-radius-xl: 30px;
  --gm-radius-lg: 24px;
  --gm-radius-md: 18px;
  --gm-radius-sm: 14px;
  --gm-container: 1240px;
  --gm-header-height: 72px;
  --gm-transition: 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
.gm-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--gm-light);
  color: var(--gm-text);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.gm-container {
  width: min(100% - 40px, var(--gm-container));
  margin: 0 auto;
}

/* HEADER */
.gm-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--gm-header-height);
  z-index: 1000;
  background: linear-gradient(180deg, var(--gm-dark) 0%, var(--gm-dark-2) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    background var(--gm-transition),
    border-color var(--gm-transition),
    box-shadow var(--gm-transition),
    backdrop-filter var(--gm-transition);
}

.gm-header.scrolled {
  background: rgba(37, 30, 32, 0.48);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
}

.gm-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.gm-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.gm-brand__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #d56c21, var(--gm-primary));
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.gm-brand__text {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

.gm-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.gm-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color var(--gm-transition), transform var(--gm-transition);
}

.gm-nav a:hover {
  color: var(--gm-primary);
}

.gm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform var(--gm-transition),
    background var(--gm-transition),
    color var(--gm-transition),
    border-color var(--gm-transition),
    box-shadow var(--gm-transition);
}

.gm-btn:hover {
  transform: translateY(-2px);
}

.gm-btn--header {
  min-height: 42px;
  padding: 0 18px;
  background: #fff;
  color: var(--gm-dark) !important;
  font-size: 0.9rem;
}

.gm-btn--header:hover {
  background: var(--gm-primary);
  color: #fff !important;
}

.gm-btn--primary {
  background: var(--gm-primary);
  color: #fff;
  box-shadow: 0 14px 28px rgba(186, 82, 8, 0.24);
}

.gm-btn--primary:hover {
  background: var(--gm-primary-dark);
}

.gm-btn--secondary {
  border: 1px solid rgba(37, 30, 32, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--gm-dark);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.gm-btn--secondary:hover {
  border-color: rgba(186, 82, 8, 0.28);
  color: var(--gm-primary);
}

.gm-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.gm-menu-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  display: block;
  margin: 0 auto;
  border-radius: 999px;
}

/* HERO */
.gm-hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(186, 82, 8, 0.12), transparent 25%),
    radial-gradient(circle at 90% 12%, rgba(186, 82, 8, 0.10), transparent 24%),
    linear-gradient(180deg, #f6f3f0 0%, #f2f2f2 100%);
  z-index: 1;
}

.gm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(242, 242, 242, 0.78);
  backdrop-filter: blur(2px);
  z-index: 0;
}

.gm-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gm-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(85px);
  opacity: 0.55;
}

.gm-orb--left {
  width: 260px;
  height: 260px;
  background: rgba(186, 82, 8, 0.16);
  left: -60px;
  top: 90px;
}

.gm-orb--right {
  width: 280px;
  height: 280px;
  background: rgba(186, 82, 8, 0.12);
  right: -90px;
  top: 110px;
}

.gm-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 30, 32, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 30, 32, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.28), transparent 86%);
}

.gm-hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 380px);
  align-items: center;
  gap: 24px;
  padding-top: calc(var(--gm-header-height) + 22px);
  padding-bottom: 16px;
}

.gm-hero__left {
  min-width: 0;
  padding-left: 16px;
}

.gm-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(186, 82, 8, 0.12);
  color: var(--gm-primary);
  font-size: 0.78rem;
  font-weight: 700;
}

.gm-badge--dark {
  background: rgba(186, 82, 8, 0.12);
  color: var(--gm-primary);
}

.gm-hero__title {
  margin-top: 10px;
  max-width: 100%;
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--gm-dark);
}

.gm-hero__title span {
  color: var(--gm-primary);
  display: block;
  margin-top: 4px;
}

.gm-hero__text {
  margin-top: 12px;
  max-width: 680px;
  font-size: 0.92rem;
  color: var(--gm-text-soft);
}

.gm-hero__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.gm-mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
  max-width: 760px;
}

.gm-mini-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--gm-shadow);
  border-radius: var(--gm-radius-md);
  padding: 16px 14px;
  min-width: 0;
}

.gm-mini-card h3 {
  font-size: 0.95rem;
  line-height: 1.2;
  color: var(--gm-dark);
  margin-bottom: 6px;
}

.gm-mini-card p {
  color: var(--gm-text-soft);
  font-size: 0.88rem;
}

.gm-hero__right {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.gm-hero-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  min-height: 340px;
  padding: 28px 28px 20px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(186, 82, 8, 0.16), transparent 28%),
    linear-gradient(135deg, #2a2023 0%, #251e20 45%, #34272a 100%);
  color: #fff;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.35),
    0 8px 24px rgba(186, 82, 8, 0.12);
  overflow: visible;
}

.gm-hero-card h2 {
  margin-top: 14px;
  margin-bottom: 14px;
  max-width: 300px;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.gm-hero-card p {
  margin-top: 0;
  max-width: 255px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.55;
}

.gm-floating-card {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 200px;
  min-height: 130px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  color: var(--gm-dark);
  z-index: 5;
}

.gm-floating-card > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.gm-floating-dot {
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--gm-primary);
  flex-shrink: 0;
}

.gm-floating-card strong {
  display: block;
  font-size: 0.96rem;
  line-height: 1.2;
  margin-bottom: 6px;
}

.gm-floating-card span {
  display: block;
  font-size: 0.84rem;
  line-height: 1.35;
  color: var(--gm-text-soft);
}

.gm-hero__bottom-strip {
  position: relative;
  z-index: 2;
  background: #231c1e;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.gm-strip {
  min-height: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: center;
}

.gm-strip span {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

/* SECTIONS */
.gm-section {
  padding: 110px 0;
}

.gm-section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.gm-section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--gm-dark);
  margin-top: 18px;
}

.gm-section-heading p {
  margin-top: 18px;
  font-size: 1.08rem;
  color: var(--gm-text-soft);
}

/* SEGUNDA DOBRA - SERVIÇOS */
.gm-section--services {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(186, 82, 8, 0.08), transparent 26%),
    linear-gradient(180deg, #f6f3f0 0%, #f2f2f2 100%);
}

.gm-services-top {
  display: grid;
  grid-template-columns: minmax(390px, 0.92fr) minmax(0, 1.08fr);
  gap: 90px;
  align-items: center;
  margin-bottom: 70px;
}

.gm-services-copy h2 {
  margin-top: 16px;
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
  line-height: 1.07;
  letter-spacing: -0.03em;
  color: var(--gm-dark);
  max-width: 760px;
}

.gm-services-copy p {
  margin-top: 16px;
  max-width: 700px;
  font-size: 0.96rem;
  color: var(--gm-text-soft);
}

.gm-services-visual {
  display: flex;
  justify-content: flex-start;
}

.gm-services-visual__image {
  position: relative;
  width: 100%;
  max-width: 560px;
  min-height: 420px;
  border-radius: 32px;
  overflow: visible;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.22),
    0 8px 24px rgba(186, 82, 8, 0.10);
}

.gm-services-visual__image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 32px;
  display: block;
  filter: brightness(0.72);
}

.gm-services-visual__image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(186, 82, 8, 0.22), transparent 28%),
    linear-gradient(rgba(37, 30, 32, 0.22), rgba(37, 30, 32, 0.34));
  pointer-events: none;
}

.gm-services-visual__center-copy {
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  z-index: 3;
  width: 85%;
  max-width: 420px;
}

.gm-services-visual__center-copy p {
  background: rgba(255,255,255,0.96);
  padding: 18px 22px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--gm-dark);
}

.gm-services-floating {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--gm-dark);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}

.gm-services-floating--top-right {
  top: 22%;
  right: -54px;
}

.gm-services-floating--middle-left {
  top: 52%;
  left: -58px;
}

.gm-services-floating--bottom-right {
  bottom: 16%;
  right: -72px;
}

.gm-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.gm-service-card,
.gm-info-box,
.gm-cta-box,
.gm-services-cta__box {
  background: #fff;
  border: 1px solid var(--gm-border);
  border-radius: var(--gm-radius-lg);
  box-shadow: var(--gm-shadow);
}

.gm-service-card {
  padding: 30px;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(186, 82, 8, 0.07), rgba(255,255,255,1));
  border-color: rgba(186, 82, 8, 0.14);
  transition:
    transform var(--gm-transition),
    box-shadow var(--gm-transition),
    border-color var(--gm-transition),
    background var(--gm-transition);
}

.gm-service-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 60px rgba(37, 30, 32, 0.14),
    0 8px 24px rgba(186, 82, 8, 0.12);
  border-color: rgba(186, 82, 8, 0.22);
}

.gm-service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: var(--gm-dark);
  line-height: 1.15;
}

.gm-service-card p {
  color: var(--gm-text-soft);
  font-size: 1rem;
}

.gm-service-card--featured {
  background: linear-gradient(180deg, rgba(186, 82, 8, 0.2), rgba(255, 247, 241, 1));
  border-color: rgba(186, 82, 8, 0.34);
  box-shadow:
    0 22px 60px rgba(37, 30, 32, 0.12),
    0 8px 22px rgba(186, 82, 8, 0.18);
  transform: translateY(-6px);
}

.gm-service-card--featured:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow:
    0 30px 70px rgba(37, 30, 32, 0.16),
    0 12px 30px rgba(186, 82, 8, 0.22);
}

.gm-services-cta {
  margin-top: 34px;
}

.gm-services-cta__box {
  padding: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background:
    linear-gradient(180deg, rgba(186, 82, 8, 0.06), rgba(255, 255, 255, 1));
}

.gm-services-cta__box h3 {
  margin-top: 12px;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 600;
  color: var(--gm-dark);
  max-width: 520px;
}

.gm-highlight {
  color: var(--gm-primary);
}

.gm-services-cta__box p {
  margin-top: 12px;
  max-width: 520px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.gm-services-cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* DOBRA - TROCAR DE CONTABILIDADE | V2 */
.gm-section--troca {
  position: relative;
  background:
    radial-gradient(circle at 84% 8%, rgba(186, 82, 8, 0.10), transparent 20%),
    radial-gradient(circle at 12% 90%, rgba(186, 82, 8, 0.06), transparent 24%),
    linear-gradient(180deg, #2a2023 0%, #251e20 100%);
  overflow: hidden;
}

.gm-troca-v2 {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.95fr);
  gap: 48px;
  align-items: center;
}

.gm-troca-v2__content {
  min-width: 0;
}

.gm-section--troca .gm-badge {
  background: rgba(186, 82, 8, 0.16);
  color: #ffb07a;
}

.gm-troca-v2__title {
  margin-top: 18px;
  max-width: 620px;
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #fff;
}

.gm-troca-v2__subtitle {
  margin-top: 20px;
  max-width: 590px;
  font-size: 1.04rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.gm-troca-v2__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.gm-troca-v2__actions .gm-btn--secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.gm-troca-v2__actions .gm-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(186, 82, 8, 0.34);
}

.gm-troca-v2__trust {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 22px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.gm-troca-v2__trust span {
  flex: 1;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
}

.gm-troca-v2__trust span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.15);
}

.gm-troca-v2__visual {
  min-width: 0;
}

.gm-troca-v2__image-wrap {
  position: relative;
  min-height: 520px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.30),
    0 8px 24px rgba(186, 82, 8, 0.10);
}

.gm-troca-v2__image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
}

.gm-troca-v2__image-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(186, 82, 8, 0.18), transparent 28%),
    linear-gradient(rgba(37, 30, 32, 0.10), rgba(37, 30, 32, 0.42));
}

.gm-troca-v2__floating {
  position: absolute;
  z-index: 3;
  max-width: 280px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    0 6px 14px rgba(186, 82, 8, 0.10);
  color: var(--gm-dark);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.gm-troca-v2__floating small {
  display: block;
  margin-bottom: 6px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gm-primary);
}

.gm-troca-v2__floating strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.28;
}

.gm-troca-v2__floating p {
  margin-top: 8px;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--gm-text-soft);
}

.gm-troca-v2__floating--top {
  top: 18px;
  left: 18px;
}

.gm-troca-v2__floating--bottom {
  right: 18px;
  bottom: 18px;
}

.gm-troca-v2__steps-box {
  margin-top: 34px;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.gm-troca-v2__steps-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.gm-troca-v2__steps-label {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffb07a;
  text-transform: uppercase;
}

.gm-troca-v2__steps-head p {
  max-width: 760px;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.gm-troca-v2__timeline {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.gm-troca-v2__timeline-step {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.84);
  cursor: pointer;
  transition:
    transform var(--gm-transition),
    border-color var(--gm-transition),
    background var(--gm-transition),
    box-shadow var(--gm-transition);
}

.gm-troca-v2__timeline-step:hover {
  transform: translateY(-2px);
  border-color: rgba(186, 82, 8, 0.26);
}

.gm-troca-v2__timeline-step.is-active {
  background: linear-gradient(
    180deg,
    rgba(186, 82, 8, 0.18),
    rgba(186, 82, 8, 0.08)
  );
  border-color: rgba(186, 82, 8, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 30px rgba(0, 0, 0, 0.16);
}

.gm-troca-v2__timeline-step.is-active .gm-troca-v2__timeline-title {
  color: #fff;
}

.gm-troca-v2__timeline-step.is-active .gm-troca-v2__timeline-number {
  background: rgba(255, 255, 255, 0.16);
  color: #ffb07a;
}

.gm-troca-v2__timeline-number {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(186, 82, 8, 0.16);
  color: #ffb07a;
  font-size: 0.94rem;
  font-weight: 800;
}

.gm-troca-v2__timeline-title {
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
}

.gm-troca-v2__timeline-line {
  height: 1px;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(186, 82, 8, 0.18),
    rgba(255, 255, 255, 0.10)
  );
}

.gm-troca-v2__timeline-card {
  margin-top: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 220px;
  overflow: hidden;
}

.gm-troca-v2__timeline-panel {
  padding: 30px;
}

.gm-troca-v2__timeline-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 28px;
  align-items: start;
}

.gm-troca-v2__timeline-panel-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffb07a;
}

.gm-troca-v2__timeline-panel h3 {
  font-size: 1.3rem;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 12px;
}

.gm-troca-v2__timeline-panel p {
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.76);
}

.gm-troca-v2__timeline-panel-side {
  display: grid;
  gap: 14px;
}

.gm-troca-v2__timeline-meta {
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.gm-troca-v2__timeline-meta span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffb07a;
}

.gm-troca-v2__timeline-meta strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1200px) {
  .gm-troca-v2 {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .gm-troca-v2__title,
  .gm-troca-v2__subtitle {
    max-width: 100%;
  }
}

@media (max-width: 1100px) {
  .gm-troca-v2__timeline {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .gm-troca-v2__timeline-line {
    display: none;
  }
}

@media (max-width: 900px) {
  .gm-troca-v2__image-wrap,
  .gm-troca-v2__image {
    min-height: 400px;
  }

  .gm-troca-v2__timeline-panel-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.gm-troca-v2__accordion-mobile {
  display: none;
}

@media (max-width: 640px) {
  .gm-section--troca {
    padding: 82px 0;
  }

  .gm-troca-v2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gm-troca-v2__content {
    text-align: center;
  }

  .gm-troca-v2__title {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
  }

  .gm-troca-v2__subtitle {
    max-width: 100%;
    margin: 16px auto 0;
    text-align: center;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .gm-troca-v2__actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
  }

  .gm-troca-v2__actions .gm-btn {
    width: 100%;
    max-width: 320px;
  }

  .gm-troca-v2__trust {
    margin: 18px auto 0;
    width: 100%;
    padding: 12px 10px;
    border-radius: 16px;
  }

  .gm-troca-v2__trust span {
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .gm-troca-v2__trust span:not(:last-child)::after {
    height: 14px;
  }

  .gm-troca-v2__visual {
    order: 2;
  }

  .gm-troca-v2__image-wrap,
  .gm-troca-v2__image {
    min-height: 300px;
    border-radius: 22px;
  }

  .gm-troca-v2__floating {
    max-width: calc(100% - 24px);
    padding: 12px 13px;
    border-radius: 14px;
  }

  .gm-troca-v2__floating small {
    font-size: 0.68rem;
    margin-bottom: 4px;
  }

  .gm-troca-v2__floating strong {
    font-size: 0.86rem;
    line-height: 1.3;
  }

  .gm-troca-v2__floating p {
    margin-top: 6px;
    font-size: 0.76rem;
    line-height: 1.4;
  }

  .gm-troca-v2__floating--top {
    top: 12px;
    left: 12px;
  }

  .gm-troca-v2__floating--bottom {
    right: 12px;
    bottom: 12px;
  }

  .gm-troca-v2__steps-box {
    margin-top: 22px;
    padding: 16px;
    border-radius: 22px;
  }

  .gm-troca-v2__steps-head {
    gap: 8px;
    margin-bottom: 16px;
    text-align: left;
  }

  .gm-troca-v2__steps-label {
    font-size: 0.76rem;
  }

  .gm-troca-v2__steps-head p {
    max-width: 100%;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  /* some desktop */
  .gm-troca-v2__timeline,
  .gm-troca-v2__timeline-card {
    display: none !important;
  }

  /* mostra mobile */
  .gm-troca-v2__accordion-mobile {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
  }

  .gm-acc-item {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
  }

  .gm-acc-item.is-active {
    border-color: rgba(186, 82, 8, 0.34);
    background: linear-gradient(
      180deg,
      rgba(186, 82, 8, 0.10),
      rgba(255, 255, 255, 0.03)
    );
  }

  .gm-acc-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
  }

  .gm-acc-number {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: rgba(186, 82, 8, 0.18);
    color: #ffb07a;
    font-size: 0.88rem;
    font-weight: 800;
  }

  .gm-acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .gm-acc-item.is-active .gm-acc-content {
    max-height: 320px;
  }

  .gm-acc-content p {
    padding: 0 16px 16px;
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.76);
  }
}


/*Dobra Consultoria*/
.gm-section--consultoria {
  background: linear-gradient(180deg, #251e20 0%, #1d1718 100%);
  color: #fff;
}

.gm-consultoria {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.gm-consultoria__title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
  margin-top: 16px;
}

.gm-consultoria__title span {
  color: var(--gm-primary);
  display: block;
}

.gm-consultoria__subtitle {
  margin-top: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
}

.gm-consultoria__cta {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.gm-consultoria__highlight {
  margin-top: 24px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: 600;
}

.gm-consultoria__visual img {
  border-radius: 28px;
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: brightness(0.7);
}

.gm-consultoria__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.gm-consultoria__step {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.gm-consultoria__step h3 {
  margin-bottom: 10px;
}

.gm-consultoria__step p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

/* MOBILE — CONSULTORIA */
@media (max-width: 640px) {

  .gm-section--consultoria {
    padding: 80px 0;
  }

  .gm-consultoria {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* IMAGEM */
  .gm-consultoria__visual {
    order: 1;
    display: flex;
    justify-content: center;
  }

  .gm-consultoria__visual img {
    width: 100%;
    max-width: 320px;
    height: 240px;
    border-radius: 20px;
  }

  /* TEXTO */
  .gm-consultoria__content {
    order: 2;
    text-align: center;
  }

  .gm-consultoria__title {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
    line-height: 1.08;
  }

  .gm-consultoria__subtitle {
    font-size: 0.95rem;
    margin: 14px auto 0;
  }

  /* BOTÕES */
  .gm-consultoria__cta {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .gm-consultoria__cta .gm-btn {
    width: 100%;
    max-width: 300px;
  }

  /* FRASE DE IMPACTO */
  .gm-consultoria__highlight {
    font-size: 0.9rem;
    padding: 14px;
    border-radius: 16px;
  }

  /* STEPS */
  .gm-consultoria__steps {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 40px;
  }

  .gm-consultoria__step {
    padding: 18px;
    border-radius: 18px;
    text-align: left;
  }

  .gm-consultoria__step h3 {
    font-size: 1rem;
  }

  .gm-consultoria__step p {
    font-size: 0.88rem;
  }
}
/* RESTANTE */
.gm-section--dark {
  background: linear-gradient(180deg, #2a2023 0%, #251e20 100%);
}

.gm-section--dark h2,
.gm-section--dark p {
  color: #fff;
}

.gm-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
}

.gm-split__content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
}

.gm-split__content p + p {
  margin-top: 18px;
}

.gm-consultoria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gm-info-box {
  padding: 28px;
}

.gm-info-box h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
  color: var(--gm-dark);
}

.gm-info-box p {
  color: var(--gm-text-soft);
}

/*Dobra FAQ*/
.gm-section--faq { 
  background: linear-gradient(180deg, #f7f2ee 0%, #f2f2f2 100%);
}

.gm-faq-section {
  background: #e9e5e3;
  padding: 80px 20px;
}

.gm-faq-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.gm-faq-header {
  max-width: 620px;
  margin-bottom: 28px;
}

.gm-faq-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(186, 82, 8, 0.12);
  color: #ba5208;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.gm-faq-title {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #251e20;
}

.gm-faq-subtitle {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(37, 30, 32, 0.72);

  max-width: 950px; /* aumenta largura */
  letter-spacing: 0.01em; /* abre levemente */
}

.gm-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gm-faq-item {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(37, 30, 32, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.gm-faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(186, 82, 8, 0.18);
  box-shadow: 0 12px 30px rgba(37, 30, 32, 0.05);
}

.gm-faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  padding: 20px 22px;
  font-size: 1rem;
  font-weight: 600;
  color: #251e20;
}

.gm-faq-item summary::-webkit-details-marker {
  display: none;
}

.gm-faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.gm-faq-icon::before,
.gm-faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #ba5208;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: all 0.25s ease;
}

.gm-faq-icon::before {
  width: 16px;
  height: 2px;
}

.gm-faq-icon::after {
  width: 2px;
  height: 16px;
}

.gm-faq-item[open] {
  border-color: rgba(186, 82, 8, 0.15);
  box-shadow: 0 14px 35px rgba(37, 30, 32, 0.06);
}

.gm-faq-item[open] .gm-faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.gm-faq-answer {
  padding: 0 22px 20px;
  max-width: 760px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(37, 30, 32, 0.78);
}

.gm-contact-location-section {
  position: relative;
  overflow: hidden;
  padding: 110px 20px;
  background:
    radial-gradient(circle at top left, rgba(186, 82, 8, 0.16), transparent 30%),
    radial-gradient(circle at bottom right, rgba(186, 82, 8, 0.10), transparent 28%),
    linear-gradient(180deg, #251e20 0%, #1d1718 100%);
}

.gm-contact-location-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.gm-contact-location-content {
  position: relative;
  z-index: 2;
}

.gm-contact-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(186, 82, 8, 0.14);
  border: 1px solid rgba(186, 82, 8, 0.22);
  color: #f4b183;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.gm-contact-title {
  margin: 0 0 16px;
  color: #f2f2f2;
  font-size: clamp(1.8rem, 3vw, 2.6rem); /* 👈 menor e mais elegante */
  line-height: 1.15; /* 👈 mais compacto */
  font-weight: 700;
  max-width: 640px; /* 👈 controla quebra */
}
.gm-contact-text {
  margin: 0 0 34px;
  color: rgba(242, 242, 242, 0.78);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 690px;
}

.gm-contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
  margin-bottom: 30px;
}

.gm-contact-info-card {
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.gm-contact-label {
  display: block;
  margin-bottom: 10px;
  color: #f4b183;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gm-contact-value {
  color: #f2f2f2;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  text-decoration: none;
  word-break: break-word;
  overflow-wrap: break-word;
}

.gm-contact-value:hover {
  color: #f4b183;
}

.gm-contact-address {
  margin: 0;
}

.gm-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  margin-bottom: 0;
}

.gm-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  transition: all 0.28s ease;
}

.gm-contact-btn-primary {
  background: linear-gradient(135deg, #ba5208 0%, #d96a1c 100%);
  color: #fff;
  box-shadow: 0 14px 34px rgba(186, 82, 8, 0.25);
}

.gm-contact-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(186, 82, 8, 0.32);
}

.gm-contact-btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #f2f2f2;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.gm-contact-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(186, 82, 8, 0.28);
  color: #f4b183;
}

.gm-contact-location-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gm-contact-office-photo-card,
.gm-contact-map-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.gm-contact-office-photo-card {
  min-height: 430px;
}

.gm-contact-office-photo {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  display: block;
}

.gm-contact-photo-overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(37, 30, 32, 0.32) 0%, rgba(37, 30, 32, 0.82) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.gm-contact-photo-tag {
  display: inline-block;
  margin-bottom: 8px;
  color: #f4b183;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gm-contact-photo-text {
  margin: 0;
  color: #f2f2f2;
  font-size: 0.98rem;
  line-height: 1.55;
}

.gm-contact-map-card {
  height: 240px;
}

.gm-contact-map-card iframe {
  width: 100%;
  height: 100%;
  filter: contrast(1.05) brightness(0.95);
}

.gm-contact-email {
  font-size: 0.95rem;
  line-height: 1.4;
  word-break: break-all;
}

/* Responsivo */
@media (max-width: 991px) {
  .gm-contact-location-container {
    grid-template-columns: 1fr;
  }

  .gm-contact-location-visual {
    order: -1;
  }

  .gm-contact-office-photo-card {
    min-height: 360px;
  }

  .gm-contact-office-photo {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .gm-contact-location-section {
    padding: 82px 16px;
  }

  .gm-contact-title {
    font-size: 2rem;
  }

  .gm-contact-text {
    font-size: 0.98rem;
    line-height: 1.65;
     margin: 0 0 26px; /* antes menor ou maior desbalanceado */
  }

.gm-contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
  margin-bottom: 30px;
}

.gm-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
  margin-bottom: 56px; /* 👈 mais espaçamento */
}

  .gm-contact-btn {
    width: 100%;
  }

  .gm-contact-office-photo-card {
    min-height: 300px;
    border-radius: 24px;
  }

  .gm-contact-office-photo {
    min-height: 300px;
  }

  .gm-contact-map-card {
    height: 220px;
    border-radius: 24px;
  }
}

@media (max-width: 991px) {
  .gm-faq-section {
    padding: 90px 18px;
  }

  .gm-faq-header {
    margin-bottom: 34px;
  }

  .gm-faq-item summary {
    padding: 24px 22px;
    font-size: 1.05rem;
  }

  .gm-faq-answer {
    padding: 0 22px 24px;
    font-size: 0.98rem;
    line-height: 1.7;
  }
}

@media (max-width: 767px) {
  .gm-faq-section {
    padding: 72px 16px;
  }

  .gm-faq-title {
    font-size: 2.6rem;
    line-height: 0.98;
  }

  .gm-faq-subtitle {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .gm-faq-badge {
    font-size: 0.86rem;
    padding: 9px 14px;
    margin-bottom: 18px;
  }

  .gm-faq-item {
    border-radius: 22px;
  }

  .gm-faq-item summary {
    align-items: flex-start;
    padding: 22px 18px;
    font-size: 1rem;
    line-height: 1.45;
  }

  .gm-faq-answer {
    padding: 0 18px 22px;
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .gm-faq-icon {
    width: 16px;
    height: 16px;
    margin-top: 4px;
  }

  .gm-faq-icon::before {
    width: 16px;
  }

  .gm-faq-icon::after {
    height: 16px;
  }
}
.gm-section--cta {
  padding-top: 0;
}
.gm-cta-box {
  padding: 28px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;

  max-width: 980px;
  margin: 40px auto 0;

  border-radius: 22px;
}

.gm-cta-box h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 10px;
}

.gm-cta-box p {
  margin-top: 10px;
  max-width: 520px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.gm-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gm-footer {
  padding: 28px 0;
  background: #231c1e;
}

.gm-footer__inner {
  display: flex;
  justify-content: center;
  text-align: center;
}

.gm-footer p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

/* RESPONSIVO */
@media (max-width: 1200px) {
  .gm-nav {
    gap: 14px;
  }

  .gm-nav a {
    font-size: 0.86rem;
  }

  .gm-btn--header {
    font-size: 0.86rem;
    padding: 0 16px;
  }

  .gm-hero__content {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 30px;
    padding-top: calc(var(--gm-header-height) + 18px);
    padding-bottom: 12px;
  }

  .gm-hero__left {
    padding-left: 12px;
  }

  .gm-hero__title {
    font-size: clamp(2rem, 3vw, 3.4rem);
    max-width: 100%;
  }

  .gm-hero__text {
    font-size: 0.94rem;
    max-width: 520px;
  }

  .gm-hero-card {
    max-width: 380px;
    min-height: 455px;
    padding: 24px 24px 18px;
  }

  .gm-hero-card h2 {
    max-width: 270px;
    font-size: clamp(1.45rem, 1.9vw, 2rem);
  }

  .gm-hero-card p {
    max-width: 220px;
    font-size: 0.88rem;
  }

  .gm-floating-card {
    width: 170px;
    min-height: 126px;
    right: 10px;
    bottom: 10px;
    padding: 12px;
  }

  .gm-floating-card strong {
    font-size: 0.86rem;
  }

  .gm-floating-card span {
    font-size: 0.78rem;
  }

  .gm-services-top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .gm-services-visual {
    justify-content: center;
  }

  .gm-services-visual__image {
    max-width: 720px;
  }

  .gm-services-floating--top-right {
    top: 20%;
    right: 14px;
  }

  .gm-services-floating--middle-left {
    top: 54%;
    left: 14px;
  }

  .gm-services-floating--bottom-right {
    bottom: 12%;
    right: 14px;
  }

  .gm-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gm-services-cta__box {
    flex-direction: column;
    align-items: flex-start;
  }

  .gm-mini-card {
    padding: 14px 12px;
  }

  .gm-mini-card h3 {
    font-size: 0.9rem;
  }

  .gm-mini-card p {
    font-size: 0.84rem;
  }

  .gm-strip span {
    font-size: 0.84rem;
  }

  .gm-troca {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gm-troca__title,
  .gm-troca__subtitle,
  .gm-troca__microcopy {
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .gm-hero {
    min-height: auto;
    height: auto;
  }

  .gm-hero__content {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
    padding-top: calc(var(--gm-header-height) + 28px);
    padding-bottom: 24px;
  }

  .gm-hero__left {
    padding-left: 0;
  }

  .gm-hero__right {
    justify-content: flex-start;
  }

  .gm-hero-card {
    max-width: 420px;
    width: 100%;
    min-height: auto;
    padding: 24px 22px 22px;
  }

  .gm-hero-card h2,
  .gm-hero-card p {
    max-width: 100%;
  }

  .gm-floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 18px;
    width: 100%;
    max-width: 240px;
    min-height: auto;
  }

  .gm-mini-cards,
  .gm-consultoria-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gm-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 12px 0;
  }

  .gm-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .gm-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .gm-menu-toggle {
    display: flex;
    margin-right: 12px;
  }

  .gm-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(37, 30, 32, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition:
      opacity var(--gm-transition),
      visibility var(--gm-transition),
      transform var(--gm-transition);
  }

  .gm-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .gm-nav a {
    width: 100%;
    font-size: 0.98rem;
  }

  .gm-btn--header {
    width: 100%;
  }

  .gm-hero__title {
    max-width: 100%;
    font-size: clamp(2.3rem, 8vw, 3.6rem);
  }

  .gm-hero__text {
    max-width: 100%;
    font-size: 1rem;
  }

  .gm-services-copy h2 {
    font-size: clamp(1.5rem, 6vw, 2.05rem);
  }

  .gm-services-copy p {
    font-size: 0.96rem;
  }

  .gm-services-grid,
  .gm-mini-cards {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .gm-troca__visual {
    grid-template-columns: 1fr;
  }

  .gm-troca__image {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  :root {
    --gm-header-height: 72px;
  }

  .gm-container {
    width: min(100% - 24px, var(--gm-container));
  }

  .gm-brand__text {
    font-size: 0.88rem;
  }

  .gm-hero__content {
    grid-template-columns: 1fr;
    padding-top: calc(var(--gm-header-height) + 24px);
    padding-bottom: 24px;
    gap: 24px;
  }

  .gm-hero__left {
    padding-left: 0;
    text-align: center;
  }

  .gm-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    text-align: center;
    font-size: 0.78rem;
    padding: 0 14px;
    min-height: 32px;
    width: fit-content;
    max-width: 100%;
  }

  .gm-hero__title {
    font-size: clamp(1.8rem, 9vw, 2.45rem);
    line-height: 1.08;
    text-align: center;
    max-width: 100%;
    margin-top: 12px;
    letter-spacing: -0.02em;
  }

  .gm-hero__title span {
    display: block;
    margin-top: 8px;
    font-size: 0.84em;
    text-align: center;
    line-height: 1.08;
  }

  .gm-hero__text {
    margin-top: 16px;
    font-size: 0.94rem;
    text-align: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .gm-hero__actions {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
  }

  .gm-hero__actions .gm-btn {
    width: 100%;
    max-width: 290px;
  }

  .gm-hero__right {
    justify-content: center;
  }

  .gm-hero-card {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: 24px 18px 22px;
    border-radius: 24px;
    text-align: center;
  }

  .gm-badge--dark {
    margin-left: auto;
    margin-right: auto;
  }

  .gm-hero-card h2 {
    max-width: 100%;
    font-size: clamp(1.55rem, 7vw, 2.15rem);
    line-height: 1.12;
    margin: 14px auto 12px;
    text-align: center;
  }

  .gm-hero-card p {
    max-width: 100%;
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0 auto;
    text-align: center;
  }

  .gm-floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 18px auto 0;
    width: 100%;
    max-width: 260px;
    min-height: auto;
    padding: 15px;
    border-radius: 18px;
    text-align: left;
  }

  .gm-mini-cards {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 14px;
    margin-top: 18px;
    justify-items: stretch;
  }

  .gm-mini-card {
    width: 100%;
    max-width: 100%;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .gm-mini-card h3 {
    margin-bottom: 6px;
  }

  .gm-mini-card p {
    margin: 0;
  }

  .gm-service-card,
  .gm-info-box,
  .gm-faq-item,
  .gm-cta-box,
  .gm-services-cta__box {
    padding: 22px 18px;
    text-align: center;
  }

  .gm-services-top,
  .gm-services-grid,
  .gm-services,
  .gm-consultoria-grid,
  .gm-strip {
    grid-template-columns: 1fr;
  }

  .gm-services-copy,
  .gm-services-visual,
  .gm-section-heading {
    text-align: center;
  }

  .gm-services-visual {
    justify-content: center;
  }

  .gm-services-visual__image {
    position: relative;
    min-height: 280px;
    max-width: 300px;
    margin: 0 auto 42px;
    border-radius: 22px;
    padding: 0;
    display: block;
    overflow: visible;
  }

  .gm-services-visual__image img {
    min-height: 280px;
    height: 280px;
    width: 100%;
    object-fit: cover;
    border-radius: 22px;
  }

  .gm-services-visual__image::after {
    border-radius: 22px;
  }

  .gm-services-visual__center-copy {
    position: absolute;
    left: 50%;
    bottom: -22px;
    transform: translateX(-50%);
    width: calc(100% - 26px);
    max-width: 250px;
    padding: 0;
    z-index: 4;
  }

  .gm-services-visual__center-copy p {
    max-width: 100%;
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.4;
    padding: 14px 14px;
    border-radius: 18px;
  }

  .gm-services-floating {
    position: absolute;
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.78rem;
    border-radius: 999px;
    width: auto;
    max-width: 160px;
    white-space: nowrap;
    z-index: 4;
  }

  .gm-services-floating--top-right {
    top: 14px;
    right: -18px;
    left: auto;
    bottom: auto;
    transform: none;
  }

  .gm-services-floating--middle-left {
    top: 50%;
    left: -34px;
    right: auto;
    bottom: auto;
    transform: translateY(-50%);
  }

  .gm-services-floating--bottom-right {
    right: -60px;
    bottom: 70px;
    left: auto;
    top: auto;
    transform: translateY(-10px);
  }

  .gm-services-cta__box {
    align-items: center;
  }

  .gm-services-cta__actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .gm-services-cta__actions .gm-btn {
    width: 100%;
    max-width: 320px;
  }

  .gm-strip {
    min-height: auto;
    gap: 10px;
    padding: 16px 0;
    text-align: center;
  }

  .gm-strip span {
    text-align: center;
    font-size: 0.9rem;
  }

  .gm-section {
    padding: 82px 0;
  }

  .gm-section-heading h2,
  .gm-cta-box h2 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
    text-align: center;
  }

  .gm-section-heading p,
  .gm-cta-box p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .gm-cta-box {
    align-items: center;
  }

  .gm-cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .gm-cta-actions .gm-btn {
    width: 100%;
    max-width: 320px;
  }

  .gm-hero__bottom-strip {
    overflow: hidden;
  }

  .gm-strip {
    display: flex;
    align-items: center;
    gap: 32px;
    width: max-content;
    min-height: 56px;
    padding: 0 20px;
    animation: gmTicker 16s linear infinite;
    will-change: transform;
  }

  .gm-strip span {
    flex: 0 0 auto;
    white-space: nowrap;
    text-align: center;
    font-size: 0.92rem;
  }

  .gm-section--troca {
    padding: 82px 0;
  }

  .gm-troca {
    gap: 26px;
  }

  .gm-troca__left {
    text-align: center;
  }

  .gm-troca__title {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
    line-height: 1.06;
  }

  .gm-troca__subtitle,
  .gm-troca__microcopy {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .gm-troca__actions {
    flex-direction: column;
    align-items: center;
  }

  .gm-troca__actions .gm-btn {
    width: 100%;
    max-width: 320px;
  }

  .gm-troca__visual {
    gap: 16px;
  }

  .gm-troca__image-wrap,
  .gm-troca__panel {
    border-radius: 22px;
  }

  .gm-troca__image {
    min-height: 300px;
  }

  .gm-troca__panel {
    padding: 16px;
  }

  .gm-troca__panel-intro,
  .gm-troca__steps,
  .gm-troca__security {
    padding: 16px;
  }

  .gm-troca__benefit {
    padding: 14px 16px;
  }

  @keyframes gmTicker {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }
}
.gm-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #25D366, #1ebe5d);
  box-shadow: 
    0 18px 40px rgba(0,0,0,0.25),
    0 8px 20px rgba(37, 211, 102, 0.35);

   z-index: 99999;
  transition: all 0.3s ease;
}

.gm-whatsapp-float img {
  width: 28px;
  height: 28px;
}

.gm-whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 22px 50px rgba(0,0,0,0.3),
    0 12px 28px rgba(37, 211, 102, 0.45);
}
.gm-whatsapp-float::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(186, 82, 8, 0.4);
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }