/* ===== FONTES LOCAIS ===== */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 600;
  font-display: optional;
  src: url('assets/fonts/cormorant-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 400;
  font-display: optional;
  src: url('assets/fonts/cormorant-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300 600;
  font-display: optional;
  src: url('assets/fonts/montserrat-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* fix iOS Safari samba */
}
body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #2d2d2d;
  background: #fff;
  overflow-x: hidden;
  max-width: 100vw;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ===== VARIABLES ===== */
:root {
  --taupe: #bdb2aa;
  --taupe-dark: #8a7f78;
  --taupe-light: #ede8e4;
  --cream: #f9f7f5;
  --dark: #2d2d2d;
  --white: #ffffff;
  --green-wa: #25d366;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--taupe-dark);
  margin-bottom: 16px;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--taupe-dark);
}
.divider {
  width: 50px;
  height: 2px;
  background: var(--taupe);
  margin: 0 0 32px 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--taupe);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--taupe-dark);
}
.btn-outline {
  background: transparent;
  color: var(--taupe-dark);
  border: 1.5px solid var(--taupe);
}
.btn-outline:hover {
  background: var(--taupe);
  color: var(--white);
}

/* fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== HEADER / NAV ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(189, 178, 170, 0.2);
  transition: box-shadow 0.3s;
}
header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--dark);
}
.logo span {
  color: var(--taupe-dark);
  font-style: italic;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--taupe-dark);
}
.nav-cta {
  background: var(--taupe);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 2px;
}
.nav-cta:hover {
  background: var(--taupe-dark) !important;
  color: var(--white) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
#home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--cream);
  overflow: hidden;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 120px 0 80px;
}
.hero-text {
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--taupe-dark);
  margin-bottom: 20px;
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--taupe-dark);
}
.hero-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #5a5a5a;
  max-width: 720px;
  margin-bottom: 40px;
  text-align: justify;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-actions .btn {
  flex: 1;
  justify-content: center;
  min-width: 180px;
  white-space: nowrap;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--taupe-light);
}
.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--taupe-dark);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #888;
  margin-top: 4px;
  text-transform: uppercase;
}
.hero-image {
  position: relative;
}
.hero-image-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.hero-image-frame::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--taupe);
  border-radius: 4px;
  z-index: 0;
}
.hero-image-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  position: relative;
  z-index: 1;
  border-radius: 4px;
  max-width: 720px;
}
.hero-badge {
  position: absolute;
  bottom: 32px;
  left: -32px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.hero-badge p {
  font-size: 12px;
  color: #888;
  font-weight: 500;
  margin-bottom: 4px;
}
.hero-badge strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: var(--taupe-dark);
}
/* decorative circle */
#home::after {
  content: "";
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(189, 178, 170, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ===== SOBRE ===== */
#sobre {
  padding: 100px 0;
  background: var(--white);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-image-wrap {
  position: relative;
}
.sobre-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
}
.sobre-img-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  border: 6px solid var(--white);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.sobre-text p {
  font-size: 15px;
  line-height: 1.9;
  color: #5a5a5a;
  margin-bottom: 20px;
}
.credential-list {
  list-style: none;
  margin-top: 32px;
}
.credential-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--taupe-light);
  font-size: 14px;
  color: #444;
}
.credential-list li:last-child {
  border-bottom: none;
}
.credential-list li::before {
  content: "";
  display: block;
  min-width: 6px;
  height: 6px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--taupe);
}

/* ===== SERVIÇOS ===== */
#servicos {
  padding: 100px 0;
  background: var(--cream);
}
.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.services-header .divider {
  margin: 0 auto 32px;
}
.services-carousel-wrap {
  position: relative;
  overflow: hidden;
}
.services-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.service-card {
  flex-shrink: 0;
  background: var(--white);
  padding: 36px 30px;
  border-radius: 4px;
  border: 1px solid rgba(189, 178, 170, 0.25);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--taupe);
  transition: width 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}
.service-card:hover::after {
  width: 100%;
}
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--taupe-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--taupe-dark);
}
.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 13px;
  line-height: 1.8;
  color: #777;
}
.service-placeholder {
  background: var(--taupe);
  color: var(--white);
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  display: inline-block;
  margin-top: 16px;
}

/* ===== DIFERENCIAIS ===== */
#diferenciais {
  padding: 100px 0;
  background: var(--dark);
  color: var(--white);
}
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.diff-text .section-title {
  color: var(--white);
}
.diff-text .divider {
  background: var(--taupe);
}
.diff-text p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
}
.diff-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.diff-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
}
.diff-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--taupe);
  line-height: 1;
  min-width: 48px;
}
.diff-item h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.diff-item p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ===== CASOS CLÍNICOS ===== */
#casos {
  padding: 100px 0;
  background: var(--cream);
}
.casos-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.casos-header .divider {
  margin: 0 auto 32px;
}
.casos-carousel-wrap {
  position: relative;
  overflow: hidden;
}
.casos-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.caso-card {
  flex-shrink: 0;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(189, 178, 170, 0.2);
}
.caso-fotos {
  display: flex;
  flex-direction: column;
}
.caso-fotos--single .caso-foto img {
  height: 520px;
  object-fit: contain;
  background: #f5f2ef;
}
.caso-foto {
  position: relative;
}
.caso-foto img {
  width: 100%;
  height: 260px;
  display: block;
  object-fit: cover;
}
.caso-foto-label {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0, 0, 0, 0.45);
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
}
.caso-info {
  padding: 20px 20px 24px;
}
.caso-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--taupe-dark);
  margin-bottom: 6px;
}
.caso-titulo {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.3;
}

/* ===== DEPOIMENTOS ===== */
#depoimentos {
  padding: 100px 0;
  background: var(--white);
}
.depo-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
}
.depo-header .divider {
  margin: 0 auto 32px;
}

/* Carrossel */
.carousel-wrap {
  position: relative;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.depo-card {
  background: var(--cream);
  padding: 36px 30px;
  border-radius: 4px;
  border: 1px solid rgba(189, 178, 170, 0.2);
  flex-shrink: 0;
  /* largura definida via JS com base no container visível */
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--taupe);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.carousel-btn:hover {
  background: var(--taupe);
}
.carousel-btn:hover svg {
  fill: white;
}
.carousel-btn svg {
  width: 18px;
  height: 18px;
  fill: var(--taupe-dark);
  transition: fill 0.2s;
}
.carousel-dots {
  display: flex;
  gap: 8px;
}
.carousel-dot {
  border-radius: 50%;
  background: var(--taupe-light);
  border: none;
  cursor: pointer;
  transition:
    width 0.25s,
    height 0.25s,
    background 0.25s,
    opacity 0.25s;
  padding: 0;
  flex-shrink: 0;
}
.carousel-dot.active {
  background: var(--taupe);
}

/* Google badge */
.google-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  font-size: 13px;
  color: #777;
}
.google-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1.5px solid rgba(189, 178, 170, 0.5);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  transition: all 0.2s;
}
.google-cta a:hover {
  border-color: var(--taupe);
  color: var(--taupe-dark);
}
.google-cta a svg {
  width: 16px;
  height: 16px;
}

.stars {
  color: var(--taupe);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.depo-card blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.7;
  color: #444;
  margin-bottom: 24px;
  quotes: "\201C" "\201D";
}
.depo-card blockquote::before {
  content: open-quote;
  color: var(--taupe);
  font-size: 40px;
  line-height: 0;
  vertical-align: -18px;
  margin-right: 4px;
}
.depo-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--taupe-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: var(--taupe-dark);
  font-weight: 600;
  flex-shrink: 0;
}
.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}
.author-role {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}

/* ===== FAQ ===== */
#faq {
  padding: 100px 0;
  background: var(--cream);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: flex-start;
}
.faq-sticky {
  position: sticky;
  top: 100px;
}
.faq-sticky p {
  font-size: 15px;
  line-height: 1.8;
  color: #5a5a5a;
  margin-bottom: 32px;
}
.accordion-item {
  border-bottom: 1px solid rgba(189, 178, 170, 0.4);
}
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  gap: 16px;
  transition: color 0.2s;
}
.accordion-trigger:hover {
  color: var(--taupe-dark);
}
.accordion-icon {
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--taupe-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.accordion-icon svg {
  width: 12px;
  height: 12px;
  fill: var(--taupe-dark);
  transition: transform 0.3s;
}
.accordion-item.open .accordion-icon {
  background: var(--taupe);
}
.accordion-item.open .accordion-icon svg {
  fill: white;
  transform: rotate(45deg);
}
.accordion-body {
  overflow: hidden;
  max-height: 0;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
}
.accordion-body-inner {
  padding: 0 0 24px;
  font-size: 14px;
  line-height: 1.9;
  color: #5a5a5a;
}
.accordion-item.open .accordion-body {
  max-height: 400px;
}

/* ===== LOCALIZAÇÃO ===== */
#localizacao {
  padding: 100px 0;
  background: var(--white);
}
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.loc-info p {
  font-size: 15px;
  line-height: 1.8;
  color: #5a5a5a;
  margin-bottom: 32px;
}
.loc-details {
  list-style: none;
}
.loc-details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--taupe-light);
  font-size: 14px;
  color: #444;
}
.loc-details li:last-child {
  border-bottom: none;
}
.loc-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--taupe-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loc-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--taupe-dark);
}
.map-placeholder {
  aspect-ratio: 4/3;
  background: var(--taupe-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--taupe-dark);
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--taupe);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-banner h2 em {
  font-style: italic;
  font-weight: 400;
}
.cta-banner p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
}
.cta-banner .btn-primary {
  background: var(--white);
  color: var(--taupe-dark);
}
.cta-banner .btn-primary:hover {
  background: var(--cream);
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  padding: 60px 0 32px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
  display: block;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
}
.footer-col h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--taupe);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}
.social-links {
  display: flex;
  gap: 16px;
}
.credit-bar {
  background: rgba(0, 0, 0, 0.25);
  text-align: center;
  padding: 10px 24px;
  font-size: 11px;
  color: black;
  letter-spacing: 1px;
}
.credit-bar a {
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
}
.credit-bar a:hover {
  color: var(--dark);
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  transition: all 0.2s;
}
.social-link:hover {
  border-color: var(--taupe);
  color: var(--taupe);
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-label {
  background: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all 0.3s;
}
.wa-float:hover .wa-label {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.wa-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-wa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s;
}
.wa-btn:hover {
  transform: scale(1.08);
}
.wa-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .sobre-grid,
  .diff-grid,
  .faq-grid,
  .loc-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .services-carousel-wrap {
    overflow: hidden;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .hero-text {
    display: contents;
  }
  .hero-eyebrow {
    order: 1;
  }
  .hero-title {
    order: 2;
    margin-bottom: 24px;
    text-align: center;
  }
  .hero-actions {
    order: 3;
    margin-bottom: 24px;
  }
  .hero-image {
    order: 4;
    margin-bottom: 24px;
  }
  .hero-desc {
    order: 5;
  }
  .hero-stats {
    order: 6;
  }
  .hero-image-frame::before {
    display: none;
  }
  .hero-badge {
    left: 12px; /* era -32px, vazava para fora da tela */
  }
  .sobre-img-accent {
    display: none;
  }
  .casos-carousel-wrap {
    overflow: hidden;
  }
  #home::after {
    display: none; /* círculo decorativo que causava overflow */
  }
  .carousel-wrap {
    overflow: hidden;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--taupe-light);
  }
  .nav-links.open {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .faq-sticky {
    position: static;
  }
}
@media (max-width: 540px) {
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
}
