/* ============================================================
   DRA. LARA GARCIA — style.css
   All rules scoped inside #lg-site for WordPress compatibility
   ============================================================ */

html {
  scroll-behavior: smooth;
}

/* ============================================================
   ROOT & RESET
   ============================================================ */

#lg-site {
  --off-white:  #F0EDE4;
  --near-black: #2D3D2A;
  --sage:       #8B9D6A;
  --forest:     #2D3D2A;
  --coral:      #E8603A;
  --periwinkle: #B8C4E8;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  font-family: var(--font-body);
  color: var(--near-black);
  background-color: var(--off-white);
  box-sizing: border-box;
}

#lg-site *,
#lg-site *::before,
#lg-site *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

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

#lg-site a {
  text-decoration: none;
  color: inherit;
}

#lg-site ul {
  list-style: none;
}

#lg-site button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* ============================================================
   LOGO
   ============================================================ */

#lg-site .lg-logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 26px;
  letter-spacing: -0.01em;
  text-transform: none;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  flex-shrink: 0;
}

#lg-site .lg-logo__lara {
  color: var(--near-black);
}

#lg-site .lg-logo__garcia {
  color: var(--sage);
}

#lg-site .lg-logo--footer .lg-logo__lara {
  color: rgba(255, 255, 255, 0.4);
}

#lg-site .lg-logo--footer .lg-logo__garcia {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   UTILITY
   ============================================================ */

#lg-site .lg-eyebrow {
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 22px;
}

#lg-site .lg-tag-sage {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 18px;
}

#lg-site .lg-tag-coral {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 18px;
}

#lg-site .lg-accent-sage  { color: var(--sage);  }
#lg-site .lg-accent-coral { color: var(--coral); }

#lg-site .lg-divider-coral {
  width: 44px;
  height: 2px;
  background-color: var(--coral);
  margin: 28px 0;
  flex-shrink: 0;
}

#lg-site .lg-divider-coral--sm {
  width: 32px;
  margin: 18px 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */

#lg-site .lg-btn-coral {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background-color: var(--coral);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--coral);
  transition: background-color 0.2s, transform 0.15s;
}

#lg-site .lg-btn-coral:hover {
  background-color: #cf5331;
  border-color: #cf5331;
  transform: translateY(-1px);
}

#lg-site .lg-btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.45);
  transition: border-color 0.2s, background-color 0.2s;
}

#lg-site .lg-btn-outline-white:hover {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.08);
}

#lg-site .lg-btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  background-color: var(--near-black);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: none;
  transition: background-color 0.2s, transform 0.15s;
}

#lg-site .lg-btn-dark:hover {
  background-color: #2d2d1a;
  transform: translateY(-1px);
}

/* ============================================================
   NAV
   ============================================================ */

#lg-site .lg-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: transparent;
  border-bottom: 1px solid rgba(240, 237, 228, 0.15);
  transition: background-color 0.35s ease, border-color 0.35s ease,
              backdrop-filter 0.35s ease;
}

#lg-site .lg-nav.scrolled {
  background-color: rgba(240, 237, 228, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45, 61, 42, 0.08);
}

#lg-site .lg-nav .lg-logo__lara,
#lg-site .lg-nav .lg-logo__garcia {
  transition: color 0.35s ease;
}

#lg-site .lg-nav:not(.scrolled) .lg-logo__lara {
  color: rgba(255, 255, 255, 0.90);
}

#lg-site .lg-nav:not(.scrolled) .lg-logo__garcia {
  color: var(--sage);
}

#lg-site .lg-nav:not(.scrolled) .lg-nav__links a {
  color: rgba(255, 255, 255, 0.80);
}

#lg-site .lg-nav:not(.scrolled) .lg-nav__links a:hover {
  color: #fff;
}

#lg-site .lg-nav:not(.scrolled) .lg-nav__cta {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.30);
  color: #fff;
  transition: background-color 0.2s;
}

#lg-site .lg-nav:not(.scrolled) .lg-nav__cta:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

#lg-site .lg-nav:not(.scrolled) .lg-hamburger span {
  background-color: rgba(255, 255, 255, 0.85);
}

#lg-site .lg-nav__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 0;
}

#lg-site .lg-nav__links {
  display: flex;
  gap: 36px;
  margin-left: auto;
  margin-right: 36px;
}

#lg-site .lg-nav__links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--near-black);
  transition: color 0.2s;
  white-space: nowrap;
}

#lg-site .lg-nav__links a:hover {
  color: var(--coral);
}

#lg-site .lg-nav__cta {
  padding: 10px 22px;
  background-color: var(--near-black);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background-color 0.2s;
  flex-shrink: 0;
}

#lg-site .lg-nav__cta:hover {
  background-color: var(--forest);
}

#lg-site .lg-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

#lg-site .lg-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--near-black);
  border-radius: 1px;
  transition: all 0.2s;
}

/* ============================================================
   MOBILE MENU
   ============================================================ */

#lg-site .lg-mobile-menu {
  position: fixed;
  inset: 0;
  background-color: var(--near-black);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

#lg-site .lg-mobile-menu.active {
  transform: translateX(0);
}

#lg-site .lg-mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

#lg-site .lg-mobile-menu__link {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 44px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px 0;
  transition: color 0.2s;
}

#lg-site .lg-mobile-menu__link:hover {
  color: var(--coral);
}

#lg-site .lg-mobile-menu__close {
  position: absolute;
  top: 22px;
  right: 26px;
  font-size: 26px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
  transition: color 0.2s;
}

#lg-site .lg-mobile-menu__close:hover {
  color: #fff;
}

/* ============================================================
   HERO CARROSSEL
   ============================================================ */

#lg-site .lg-hero-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

#lg-site .lg-hero-track {
  display: flex;
  transition: transform 0.7s ease-in-out;
  will-change: transform;
}

#lg-site .lg-hero-carousel .lg-hero {
  flex-shrink: 0;
  width: 100vw;
}

#lg-site .lg-hero-slide--2 {
  background-position: center right;
}

/* Backgrounds desktop */
#lg-site .lg-hero-slide {
  background-image: url('../images/banner_1_desktop.png');
  background-position: center;
}

#lg-site .lg-hero-slide--2 {
  background-image: url('../images/banner-2-desktop.png');
}

#lg-site .lg-hero__overlay--2 {
  background: linear-gradient(
    to right,
    rgba(45, 61, 42, 0.82) 0%,
    rgba(45, 61, 42, 0.40) 55%,
    rgba(45, 61, 42, 0.15) 100%
  );
}

/* Slide 2 — conteúdo alinhado à esquerda */
#lg-site .lg-hero-slide--2 .lg-hero__content {
  align-items: flex-start;
  text-align: left;
  margin: 0;
  padding-left: 8%;
  max-width: 560px;
}

#lg-site .lg-hero-slide--2 .lg-hero__rule {
  margin: 0 0 28px;
}

#lg-site .lg-hero-slide--2 .lg-hero__h1 {
  align-items: flex-start;
}

#lg-site .lg-s2-l1 {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(52px, 6vw, 88px);
  color: #F0EDE4;
  line-height: 1.0;
  white-space: nowrap;
}

#lg-site .lg-s2-l2 {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(52px, 6vw, 88px);
  color: #8B9D6A;
  line-height: 1.0;
  white-space: nowrap;
}

#lg-site .lg-divider-coral--s2 {
  width: 40px;
  height: 1.5px;
  margin: 28px 0;
}

#lg-site .lg-s2-tagline {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.6;
  color: rgba(240, 237, 228, 0.75);
  max-width: 460px;
  margin: 0 0 36px;
  text-align: left;
}

#lg-site .lg-btn-hero-outline {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: #F0EDE4;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(240, 237, 228, 0.60);
  border-radius: 40px;
  cursor: pointer;
  transition: background-color 0.22s;
}

#lg-site .lg-btn-hero-outline:hover {
  background-color: rgba(240, 237, 228, 0.12);
}

#lg-site .lg-carousel-prev,
#lg-site .lg-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.30);
  color: #F0EDE4;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s;
  flex-shrink: 0;
}

#lg-site .lg-carousel-prev { left: 24px; }
#lg-site .lg-carousel-next { right: 24px; }

#lg-site .lg-carousel-prev:hover,
#lg-site .lg-carousel-next:hover {
  background: rgba(255, 255, 255, 0.25);
}

#lg-site .lg-carousel-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

#lg-site .lg-carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

#lg-site .lg-carousel-dot--active {
  background: #E8603A;
}

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

/* ============================================================
   HERO — full-width editorial banner
   ============================================================ */

#lg-site .lg-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#lg-site .lg-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(45, 61, 42, 0.65) 0%,
    rgba(45, 61, 42, 0.35) 55%,
    rgba(45, 61, 42, 0.10) 100%
  );
  pointer-events: none;
}

#lg-site .lg-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 40px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* linha fina acima do eyebrow */
#lg-site .lg-hero__rule {
  width: 40px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.30);
  margin: 0 auto 28px;
}

#lg-site .lg-hero .lg-eyebrow {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(240, 237, 228, 0.60);
  margin-bottom: 28px;
}

#lg-site .lg-hero__h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 300;
  line-height: 1.0;
  text-transform: none;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#lg-site .lg-hero__h1-l1 {
  display: block;
  font-size: clamp(64px, 8vw, 110px);
  color: #F0EDE4;
  line-height: 1.0;
}

#lg-site .lg-hero__h1-l2 {
  display: block;
  font-size: clamp(90px, 11.5vw, 158px);
  color: #8B9D6A;
  line-height: 1.0;
}

#lg-site .lg-hero__h1 em {
  font-style: italic;
  font-weight: 300;
}

/* divider fino, centralizado */
#lg-site .lg-divider-coral--hero {
  width: 32px;
  height: 1px;
  margin: 24px auto;
}

#lg-site .lg-hero__tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-style: italic;
  font-size: 18px;
  line-height: 1.70;
  color: rgba(240, 237, 228, 0.70);
  max-width: 500px;
  margin: 0 auto 36px;
}

/* botão CTA sólido coral */
#lg-site .lg-btn-hero-solid {
  display: inline-block;
  padding: 16px 40px;
  background-color: #E8603A;
  color: #F0EDE4;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: 40px;
  text-decoration: none;
  transition: background-color 0.22s;
  cursor: pointer;
}

#lg-site .lg-btn-hero-solid:hover {
  background-color: #c94e2a;
}

/* linha separadora das stats — 200px centralizada */
#lg-site .lg-hero__stats-rule {
  width: 200px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.20);
  margin: 44px auto 32px;
}

#lg-site .lg-hero__stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  width: 100%;
}

#lg-site .lg-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

#lg-site .lg-stat strong {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 38px;
  color: #F0EDE4;
  line-height: 1;
}

#lg-site .lg-stat span {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  color: rgba(240, 237, 228, 0.55);
  letter-spacing: 0.06em;
}

/* placeholder — mantido para compatibilidade mas não usado no novo hero */
#lg-site .lg-hero__caption span {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   SOBRE
   ============================================================ */

#lg-site .lg-sobre {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  max-height: 580px;
  align-items: stretch;
  margin-top: 0;
  padding-top: 0;
}

#lg-site .lg-sobre__left {
  background-color: var(--forest);
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#lg-site .lg-sobre__h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 28px;
}

#lg-site .lg-sobre__tagline {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  max-width: 420px;
  margin-bottom: 28px;
}

#lg-site .lg-sobre__bio {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 40px;
}

#lg-site .lg-sobre__right {
  background-color: #2D3D2A;
  padding: 0;
  margin: 0;
  overflow: hidden;
  height: 100%;
  min-height: 480px;
  position: relative;
}

#lg-site .lg-sobre__carousel {
  width: 100%;
  height: 100%;
  max-height: 580px;
  overflow: hidden;
  position: relative;
}

#lg-site .lg-sobre__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

#lg-site .lg-sobre__slide--active {
  opacity: 1;
}

#lg-site .lg-sobre__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

#lg-site .lg-sobre__carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

#lg-site .lg-sobre__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(240, 237, 228, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

#lg-site .lg-sobre__dot--active {
  width: 24px;
  border-radius: 3px;
  background: #E8603A;
}

#lg-site .lg-sobre__photo-tag {
  position: absolute;
  bottom: 20px;
  right: 0;
  background-color: #E8603A;
  color: #fff;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 14px;
  z-index: 2;
}

#lg-site .lg-credencial {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(45, 61, 42, 0.1);
}

#lg-site .lg-credencial:first-of-type {
  border-top: 1px solid rgba(45, 61, 42, 0.1);
}

#lg-site .lg-credencial__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--coral);
  min-width: 34px;
  line-height: 1;
  padding-top: 2px;
  flex-shrink: 0;
}

#lg-site .lg-credencial__body strong {
  display: block;
  font-weight: 500;
  font-size: 14px;
  color: var(--near-black);
  margin-bottom: 6px;
}

#lg-site .lg-credencial__body p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(45, 61, 42, 0.62);
  line-height: 1.55;
}

#lg-site .lg-sobre__stat {
  margin-top: 44px;
}

#lg-site .lg-sobre__stat span {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 76px;
  color: var(--coral);
  line-height: 1;
  display: block;
}

#lg-site .lg-sobre__stat p {
  font-size: 12px;
  font-weight: 400;
  color: rgba(45, 61, 42, 0.55);
  margin-top: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   PROCEDIMENTOS
   ============================================================ */

#lg-site .lg-procedimentos {
  background-color: var(--off-white);
  padding: 100px 80px;
}

#lg-site .lg-procedimentos__header {
  text-align: center;
  margin-bottom: 60px;
}

#lg-site .lg-proc__h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--near-black);
  margin-bottom: 18px;
}

#lg-site .lg-proc__sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(45, 61, 42, 0.55);
}

#lg-site .lg-proc__grid,
#lg-site section#procedimentos > .lg-proc__grid,
#lg-site .lg-procedimentos .lg-proc__grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2px !important;
  width: 100% !important;
}

#lg-site .lg-proc-card {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
}

#lg-site .lg-proc-card--dark {
  background-color: var(--near-black);
}

#lg-site .lg-proc-card--forest {
  background-color: var(--forest);
}

#lg-site .lg-proc-card__top {
  display: flex;
  flex-direction: column;
}

#lg-site .lg-card-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 5px 11px;
  margin-bottom: 18px;
  align-self: flex-start;
}

#lg-site .lg-card-badge--coral {
  background-color: var(--coral);
  color: #fff;
}

#lg-site .lg-card-badge--outline {
  border: 1px solid var(--sage);
  color: var(--sage);
}

#lg-site .lg-card-pilar {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}

#lg-site .lg-proc-card h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(24px, 2.5vw, 34px);
  text-transform: none;
  color: #F0EDE4;
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

#lg-site .lg-card-subtitle {
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  color: var(--sage);
}

#lg-site .lg-card-desc {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.62);
}

/* ============================================================
   ANTES E DEPOIS
   ============================================================ */

#lg-site .lg-antes-depois {
  background-color: var(--near-black);
  padding: 100px 80px;
}

#lg-site .lg-ad__header {
  text-align: center;
  margin-bottom: 56px;
}

#lg-site .lg-ad__h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 18px;
}

#lg-site .lg-ad__sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}

#lg-site .lg-ad__grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 24px !important;
  max-width: 960px !important;
  margin: 0 auto !important;
  padding: 48px 24px;
  justify-content: center;
  align-items: center;
}

#lg-site .lg-ad-card__img-wrap {
  position: relative;
  overflow: hidden;
  background: transparent;
}

#lg-site .lg-ad-card__img-wrap img {
  width: 100% !important;
  height: 240px !important;
  object-fit: contain !important;
  object-position: center;
  background: #111;
  display: block;
}

#lg-site .lg-ad-tag {
  position: absolute;
  top: 16px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
}

#lg-site .lg-ad-tag--before {
  left: 16px;
  background-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

#lg-site .lg-ad-tag--after {
  right: 16px;
  background-color: var(--coral);
  color: #fff;
}

#lg-site .lg-ad-card__label {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  text-transform: none;
  color: #F0EDE4;
  letter-spacing: -0.01em;
  margin-top: 12px;
  text-align: left;
  padding: 0;
}

#lg-site .lg-ad__disclaimer {
  font-style: italic;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
}

/* ============================================================
   AVALIAÇÕES GOOGLE
   ============================================================ */

#lg-site .lg-avaliacoes {
  background-color: var(--off-white);
  padding: 100px 80px;
}

#lg-site .lg-av-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 56px;
}

#lg-site .lg-av-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  background-color: #fff;
  border: 1px solid rgba(45, 61, 42, 0.10);
  border-radius: 40px;
  padding: 10px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

#lg-site .lg-av-badge__stars {
  color: #FBBC05;
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 1;
}

#lg-site .lg-av-badge__score {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  color: var(--near-black);
  line-height: 1;
}

#lg-site .lg-av-badge__label {
  font-size: 13px;
  font-weight: 400;
  color: rgba(45, 61, 42, 0.50);
}

#lg-site .lg-av__h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--near-black);
  margin-bottom: 18px;
}

#lg-site .lg-av__sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(45, 61, 42, 0.55);
}

/* ── Carrossel de avaliações ── */
#lg-site .lg-av-carousel-wrapper {
  position: relative;
  margin-bottom: 8px;
}

#lg-site .lg-av-carousel {
  overflow: hidden;
  width: 100%;
}

#lg-site .lg-av-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
  will-change: transform;
}

#lg-site .lg-av-track .lg-rv-card {
  flex-shrink: 0;
  width: calc(50% - 12px);
}

#lg-site .lg-av-prev,
#lg-site .lg-av-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(45, 61, 42, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  color: #2D3D2A;
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s;
  padding: 0;
}

#lg-site .lg-av-prev { left: -22px; }
#lg-site .lg-av-next { right: -22px; }

#lg-site .lg-av-prev:hover,
#lg-site .lg-av-next:hover {
  background: #F0EDE4;
}

#lg-site .lg-av-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 32px;
}

#lg-site .lg-av-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(45, 61, 42, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

#lg-site .lg-av-dot--active {
  width: 24px;
  border-radius: 3px;
  background: #E8603A;
}

#lg-site .lg-rv-card {
  background-color: #fff;
  border: 1px solid rgba(45, 61, 42, 0.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#lg-site .lg-rv-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

#lg-site .lg-rv-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
  line-height: 1;
}

#lg-site .lg-rv-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

#lg-site .lg-rv-card__info strong {
  font-size: 14px;
  font-weight: 500;
  color: var(--near-black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#lg-site .lg-rv-card__info span {
  font-size: 12px;
  font-weight: 300;
  color: rgba(45, 61, 42, 0.5);
}

#lg-site .lg-rv-gicon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

#lg-site .lg-rv-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

#lg-site .lg-rv-stars {
  color: #FBBC05;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
}

#lg-site .lg-rv-date {
  font-size: 12px;
  font-weight: 300;
  color: rgba(45, 61, 42, 0.45);
}

#lg-site .lg-rv-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.72;
  color: rgba(45, 61, 42, 0.72);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

#lg-site .lg-rv-text.expanded {
  display: block;
  overflow: visible;
}

#lg-site .lg-rv-more {
  font-size: 12px;
  font-weight: 500;
  color: var(--sage);
  letter-spacing: 0.04em;
  align-self: flex-start;
  transition: color 0.2s;
  text-decoration: underline;
  text-underline-offset: 2px;
}

#lg-site .lg-rv-more:hover {
  color: var(--forest);
}

#lg-site .lg-rv-card__foot {
  padding-top: 12px;
  border-top: 1px solid rgba(45, 61, 42, 0.07);
  margin-top: auto;
}

#lg-site .lg-rv-verified {
  font-size: 11px;
  font-weight: 400;
  color: rgba(45, 61, 42, 0.4);
  display: flex;
  align-items: center;
  gap: 5px;
}

#lg-site .lg-rv-check {
  color: #34A853;
  font-size: 13px;
  line-height: 1;
}

#lg-site .lg-av-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

#lg-site .lg-av-footer span {
  font-size: 13px;
  font-weight: 300;
  color: rgba(45, 61, 42, 0.5);
}

#lg-site .lg-av-footer__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--coral);
  transition: color 0.2s;
}

#lg-site .lg-av-footer__link:hover {
  color: var(--near-black);
}

/* ============================================================
   COMO FUNCIONA
   ============================================================ */

#lg-site .lg-processo {
  background-color: var(--off-white);
  padding: 96px 56px;
}

#lg-site .lg-processo__header {
  text-align: center;
}

#lg-site .lg-divider-coral--proc {
  width: 40px;
  height: 1.5px;
  margin: 0 auto 28px;
}

#lg-site .lg-proc__h2--light {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--near-black);
}

#lg-site .lg-proc__sub-new {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: rgba(45, 61, 42, 0.50);
  margin-top: 16px;
}

#lg-site .lg-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
  padding-top: 24px;
}

#lg-site .lg-step-card {
  background-color: var(--near-black);
  border-radius: 12px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#lg-site .lg-step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

#lg-site .lg-step-card__num {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #E8603A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: #fff;
  z-index: 2;
  flex-shrink: 0;
  line-height: 1;
}

#lg-site .lg-step-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(240, 237, 228, 0.06);
  border: 1px solid rgba(240, 237, 228, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  flex-shrink: 0;
  color: #8B9D6A;
}

#lg-site .lg-step-card__title {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 18px;
  color: #F0EDE4;
  margin-top: 20px;
  line-height: 1.2;
}

#lg-site .lg-step-card__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: rgba(240, 237, 228, 0.55);
  line-height: 1.75;
  margin-top: 10px;
}

#lg-site .lg-processo__cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

#lg-site .lg-btn-proc-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #E8603A;
  color: #F0EDE4;
  padding: 18px 48px;
  border-radius: 40px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 0.22s;
}

#lg-site .lg-btn-proc-cta:hover {
  background: #c94e2a;
}

/* ============================================================
   LOCALIZAÇÃO
   ============================================================ */

#lg-site .lg-localizacao {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  min-height: 480px !important;
  background-color: var(--near-black);
}

#lg-site .lg-loc__left {
  padding: 64px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

#lg-site .lg-localizacao .lg-tag-sage {
  color: var(--sage);
}

#lg-site .lg-loc__h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: #fff;
}

#lg-site .lg-divider-coral--loc {
  width: 40px;
  height: 1.5px;
  margin: 0;
  flex-shrink: 0;
}

#lg-site .lg-loc__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.70);
}

#lg-site .lg-loc__address {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(240, 237, 228, 0.05);
  border: 1px solid rgba(240, 237, 228, 0.10);
  border-radius: 8px;
  padding: 20px 24px;
}

#lg-site .lg-loc__address-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

#lg-site .lg-loc__address-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

#lg-site .lg-loc__address-body strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

#lg-site .lg-loc__address-body span {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.5;
}

#lg-site .lg-loc__hours {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.60);
}

#lg-site .lg-loc__hours svg {
  flex-shrink: 0;
}

#lg-site .lg-loc__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

#lg-site .lg-loc__map {
  overflow: hidden !important;
  min-height: 480px !important;
  display: flex;
  flex-direction: column;
}

#lg-site .lg-loc__map iframe {
  flex: 1;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 480px !important;
  border: 0;
}

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

#lg-site .lg-cta-final {
  background: linear-gradient(
    135deg,
    #E8603A 0%,
    #D4522E 35%,
    #E8603A 60%,
    #C94728 100%
  );
  padding: 96px 80px;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 28px;
  position: relative;
}

#lg-site .lg-cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}

#lg-site .lg-cta-final > * {
  position: relative;
  z-index: 1;
}

#lg-site .lg-cta-final__h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: #fff;
}

#lg-site .lg-cta-dark {
  color: var(--near-black);
}

#lg-site .lg-cta-final__sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
  line-height: 1.65;
}

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

#lg-site .lg-footer {
  background-color: var(--near-black);
  padding: 56px 64px 40px;
}

#lg-site .lg-footer__top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  border-bottom: 1px solid rgba(240, 237, 228, 0.08);
  padding-bottom: 48px;
}

#lg-site .lg-footer__col {
  display: flex;
  flex-direction: column;
}

#lg-site .lg-footer__tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.40);
  margin-top: 12px;
}

#lg-site .lg-footer__method {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--sage);
  margin-top: 16px;
}

#lg-site .lg-footer__col-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

#lg-site .lg-footer__info {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  list-style: none;
  font-style: normal;
  display: flex;
  flex-direction: column;
}

#lg-site .lg-footer__bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#lg-site .lg-footer__copy {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.30);
}

#lg-site .lg-footer__contact-sep {
  margin-top: 16px;
  border-top: 1px solid rgba(240, 237, 228, 0.08);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#lg-site .lg-footer__credit {
  color: var(--sage);
  text-decoration: none;
  transition: color 0.2s;
}

#lg-site .lg-footer__credit:hover {
  color: rgba(255, 255, 255, 0.70);
}

#lg-site .lg-footer__social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
  text-decoration: none;
}

#lg-site .lg-footer__social-link:hover {
  color: rgba(255, 255, 255, 0.90);
}

/* ============================================================
   WHATSAPP FAB
   ============================================================ */

#lg-site .lg-wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s;
}

#lg-site .lg-wa-fab:hover {
  transform: scale(1.08);
}

#lg-site .lg-wa-fab svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* ============================================================
   WHATSAPP POPUP
   ============================================================ */

#lg-site .lg-wa-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(45, 61, 42, 0.68);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s, visibility 0.24s;
}

#lg-site .lg-wa-overlay.active {
  opacity: 1;
  visibility: visible;
}

#lg-site .lg-wa-card {
  background: #fff;
  max-width: 420px;
  width: 100%;
  padding: 44px 40px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transform: translateY(20px);
  transition: transform 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

#lg-site .lg-wa-overlay.active .lg-wa-card {
  transform: translateY(0);
}

#lg-site .lg-wa-card__close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 20px;
  color: rgba(45, 61, 42, 0.38);
  line-height: 1;
  transition: color 0.2s;
  padding: 4px;
}

#lg-site .lg-wa-card__close:hover {
  color: var(--near-black);
}

#lg-site .lg-wa-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 4px;
}

#lg-site .lg-wa-icon svg {
  width: 28px;
  height: 28px;
}

#lg-site .lg-wa-card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 30px;
  text-transform: uppercase;
  color: var(--near-black);
  letter-spacing: 0.02em;
  text-align: center;
}

#lg-site .lg-wa-card > p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(45, 61, 42, 0.58);
  text-align: center;
  line-height: 1.6;
}

#lg-site .lg-wa-input-wrap {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(45, 61, 42, 0.2);
  width: 100%;
  overflow: hidden;
  margin-top: 4px;
}

#lg-site .lg-wa-prefix {
  padding: 13px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--near-black);
  background-color: rgba(45, 61, 42, 0.04);
  border-right: 1px solid rgba(45, 61, 42, 0.12);
  white-space: nowrap;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

#lg-site #lg-wa-phone {
  flex: 1;
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  border: none;
  outline: none;
  color: var(--near-black);
  min-width: 0;
}

#lg-site #lg-wa-phone::placeholder {
  color: rgba(45, 61, 42, 0.3);
}

#lg-site .lg-wa-error {
  font-size: 12px;
  color: var(--coral);
  display: none;
  align-self: flex-start;
  margin-top: -4px;
}

#lg-site .lg-wa-confirm {
  width: 100%;
  padding: 14px;
  background-color: var(--near-black);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 4px;
  transition: background-color 0.2s;
}

#lg-site .lg-wa-confirm:hover {
  background-color: var(--forest);
}

#lg-site .lg-wa-link {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background-color: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  margin-top: 4px;
  transition: background-color 0.2s;
}

#lg-site .lg-wa-link:hover {
  background-color: #1fb858;
}

/* ============================================================
   RESPONSIVE — 960px
   ============================================================ */

@media (max-width: 960px) {

  #lg-site .lg-nav__links,
  #lg-site .lg-nav__cta {
    display: none;
  }

  #lg-site .lg-hamburger {
    display: flex;
    margin-left: auto;
  }

  #lg-site .lg-nav__inner {
    padding: 0 32px;
  }

  /* Hero — full-width, ajusta padding no mobile */
  #lg-site .lg-hero__content {
    padding: 100px 40px 72px;
    max-width: 100%;
  }

  /* Sobre — 1 coluna */
  #lg-site .lg-sobre {
    grid-template-columns: 1fr;
    min-height: auto;
    max-height: none;
  }

  #lg-site .lg-sobre__left {
    padding: 72px 44px;
  }

  #lg-site .lg-sobre__carousel {
    height: 360px;
    max-height: none;
    border-radius: 0;
  }

  /* Procedimentos — 1 coluna */
  #lg-site .lg-proc__grid,
  #lg-site section#procedimentos > .lg-proc__grid,
  #lg-site .lg-procedimentos .lg-proc__grid {
    grid-template-columns: 1fr !important;
  }

  #lg-site .lg-procedimentos {
    padding: 72px 44px;
  }

  /* Antes e Depois */
  #lg-site .lg-antes-depois {
    padding: 72px 44px;
  }

  /* Como Funciona — 2 colunas */
  #lg-site .lg-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #lg-site .lg-processo {
    padding: 72px 44px;
  }

  /* CTA */
  #lg-site .lg-cta-final {
    padding: 80px 44px;
  }

  /* Footer */
  #lg-site .lg-footer {
    padding: 48px 44px 36px;
  }

  #lg-site .lg-footer__top {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  /* Localização */
  #lg-site .lg-localizacao {
    grid-template-columns: 1fr !important;
  }

  #lg-site .lg-loc__map iframe {
    position: relative !important;
    height: 300px !important;
    min-height: 300px !important;
  }

  #lg-site .lg-loc__map {
    order: -1;
    min-height: 280px;
  }

  #lg-site .lg-loc__map iframe {
    min-height: 280px;
  }

  #lg-site .lg-loc__left {
    padding: 48px 24px;
  }

  #lg-site .lg-loc__btns {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Avaliações */
  #lg-site .lg-avaliacoes {
    padding: 72px 44px;
  }

  #lg-site .lg-av-track .lg-rv-card {
    width: calc(50% - 12px);
  }

}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */

@media (max-width: 768px) {

  /* ── Hero mobile — setas ocultas, dots abaixo ── */
  #lg-site .lg-carousel-prev,
  #lg-site .lg-carousel-next {
    display: none;
  }

  #lg-site .lg-carousel-dots {
    bottom: 16px;
  }

  /* Slide 1 mobile — texto centralizado */
  #lg-site .lg-hero-slide:not(.lg-hero-slide--2) {
    background-image: url('../images/banner_1_mobile.png');
    background-position: center center;
  }

  #lg-site .lg-hero-slide:not(.lg-hero-slide--2) .lg-hero__content {
    padding: 80px 20px 60px;
    text-align: center;
    align-items: center;
  }

  /* Slide 2 mobile — texto à esquerda, parte inferior */
  #lg-site .lg-hero-slide--2 {
    background-image: url('../images/banner-2-mobile.png');
    background-position: center top;
  }

  #lg-site .lg-hero-slide--2 .lg-hero__overlay--2 {
    background: linear-gradient(
      to top,
      rgba(45, 61, 42, 0.92) 0%,
      rgba(45, 61, 42, 0.7) 30%,
      rgba(45, 61, 42, 0.0) 55%
    );
  }

  #lg-site .lg-hero-slide--2 .lg-hero__content {
    padding-top: 55vh;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 48px;
    text-align: center;
    align-items: center;
  }

  /* Títulos hero — clamp mobile */
  #lg-site .lg-hero__h1-l1,
  #lg-site .lg-s2-l1,
  #lg-site .lg-hero__h1-l2,
  #lg-site .lg-s2-l2 {
    font-size: clamp(36px, 10vw, 56px);
  }

  #lg-site .lg-hero__tagline,
  #lg-site .lg-s2-tagline {
    font-size: 15px;
  }

  /* Stats */
  #lg-site .lg-hero__stats {
    flex-direction: row;
    gap: 24px;
    justify-content: center;
  }

  #lg-site .lg-stat strong {
    font-size: 28px;
  }

  /* Sobre mobile — foto em cima, texto abaixo */
  #lg-site .lg-sobre__right {
    order: -1;
    height: 280px;
    min-height: 280px;
    max-height: 280px;
  }

  #lg-site .lg-sobre__right img {
    height: 280px !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  #lg-site .lg-sobre__left {
    padding: 48px 20px;
  }

  /* Procedimentos mobile */
  #lg-site .lg-procedimentos {
    padding: 60px 20px;
  }

  /* Antes e Depois mobile — 1 coluna */
  #lg-site .lg-antes-depois {
    padding: 60px 20px;
  }

  #lg-site .lg-ad__grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 32px 0;
  }

  #lg-site .lg-ad-card__img-wrap img {
    height: 220px !important;
  }

  /* Avaliações mobile — 1 card por vez */
  #lg-site .lg-avaliacoes {
    padding: 60px 20px;
  }

  #lg-site .lg-av-track {
    gap: 0;
  }

  #lg-site .lg-av-track .lg-rv-card {
    width: 100%;
  }

  #lg-site .lg-av-prev,
  #lg-site .lg-av-next {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  #lg-site .lg-av-prev { left: -16px; }
  #lg-site .lg-av-next { right: -16px; }

  /* Como Funciona mobile — 2 colunas */
  #lg-site .lg-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #lg-site .lg-processo {
    padding: 60px 20px;
  }

  /* CTA mobile */
  #lg-site .lg-cta-final {
    padding: 60px 20px;
  }

  #lg-site .lg-cta-final__h2 {
    font-size: clamp(36px, 10vw, 56px);
  }

  /* Footer mobile — 1 coluna centralizado */
  #lg-site .lg-footer {
    padding: 48px 20px 32px;
  }

  #lg-site .lg-footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  #lg-site .lg-footer__col {
    align-items: center;
    text-align: center;
  }

  #lg-site .lg-footer__info {
    align-items: center;
    text-align: center;
  }

  #lg-site .lg-footer__contact-sep {
    align-items: center;
  }

  #lg-site .lg-footer__bottom {
    justify-content: center;
    text-align: center;
  }

  /* Popup WhatsApp mobile */
  #lg-site .lg-wa-card {
    max-width: 90vw;
    padding: 28px 20px;
  }

}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */

@media (max-width: 480px) {

  /* Como Funciona — 1 coluna abaixo de 480px */
  #lg-site .lg-steps-grid {
    grid-template-columns: 1fr;
  }

}

/* ============================================================
   RESPONSIVE — 540px
   ============================================================ */

@media (max-width: 540px) {

  #lg-site .lg-proc-card {
    padding: 36px 28px;
  }

  #lg-site .lg-mobile-menu__link {
    font-size: 36px;
  }

  #lg-site .lg-footer {
    padding: 40px 20px 28px;
  }

}
