:root {
  color-scheme: light;
  --bg: #f8f3ec;
  --white: #ffffff;
  --text: #2d2926;
  --muted: #776f66;
  --gold: #b88a3d;
  --gold-dark: #9d732f;
  --soft: #efe6da;
  --border: #e6dbcc;
  --shadow: 0 20px 50px rgba(64, 45, 25, 0.12);
  --radius: 22px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
}

img, video {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.header {
  background: rgba(248, 243, 236, 0.92);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 99;
  border-bottom: 1px solid var(--border);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  gap: 12px;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text);
}

.logo img {
  margin-top: 20px;
  width: 150px;
}

.logo small {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
}

.menu {
  display: flex;
  gap: 34px;
}

.menu a {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
}

.menu a:hover {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  padding: 15px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 12px 25px rgba(184, 138, 61, 0.25);
  transition: 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(184, 138, 61, 0.4);
}

.btn-small {
  padding: 12px 18px;
}

.btn-light {
  background: white;
  color: var(--gold-dark);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1000;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text);
  transition: 0.3s ease-in-out;
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav-btn {
  display: none;
}


.hero {
  padding: 0;
  background: radial-gradient(circle at left, #fff 0%, var(--bg) 58%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: calc(100vh - 78px);
  align-items: center;
  gap: 50px;
}

.eyebrow,
.section-title span,
.about-text span,
.location-info span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 700;
}

.hero h1,
.section-title h2,
.cta-strip h2,
.about-text h2,
.location-info h2,
.final-cta h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.1;
}

.hero h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  margin: 18px 0 22px;
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero p {
  max-width: 500px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-proof {
  display: flex;
  gap: 34px;
  margin-top: 36px;
}

.mobile-proof {
  display: none;
}

.hero-proof div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-proof strong {
  color: var(--gold-dark);
}

.hero-proof span {
  color: var(--muted);
  font-size: 13px;
}

.before-after {
  position: relative;
  width: 100%;
  max-width: 620px;
  height: 560px;
  margin-left: auto;
  overflow: hidden;
  border-radius: 0 0 0 80px;
  box-shadow: var(--shadow);
}

.ba-after {
  clip-path: inset(0 0 0 50%);
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
}

.ba-line {
  left: 50%;
}

.ba-button {
  left: 50%;
}

.ba-img {
  position: absolute;
  inset: 0;
}

.ba-img img {
  height: 100%;
  object-fit: cover;
}

.ba-after {
  clip-path: inset(0 0 0 50%);
}

.ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: white;
  z-index: 3;
}

.ba-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: white;
  color: var(--gold);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 4;
  box-shadow: var(--shadow);
}

.ba-label {
  position: absolute;
  bottom: 36px;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  z-index: 5;
}

.ba-label.before {
  left: 40px;
}

.ba-label.after {
  right: 40px;
}

section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  font-size: clamp(32px, 4vw, 46px);
  margin-top: 10px;
}






.before-after-banner {
  background: #fff;
}

.carousel-wrapper {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.ba-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.ba-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  transition: 0.3s;
}

.dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

.mobile-dots {
  display: none;
}

.ba-banner-item {
  flex: 0 0 100%;
  scroll-snap-align: center;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ba-banner-item img {
  max-width: 100%;
  max-height: 360px;
  width: auto;
  height: auto;
  display: block;
  border-radius: 24px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--gold);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.carousel-btn.prev {
  left: -22px;
}

.carousel-btn.next {
  right: -22px;
}

@media (max-width: 768px) {
  .carousel-wrapper {
    max-width: 100%;
  }

  .ba-banner-item img {
    max-height: 280px;
  }

  .carousel-btn {
    display: none;
  }
}

@media (max-width: 420px) {
  .ba-banner-item img {
    max-height: 230px;
  }
}







.complete-care {
  background: #fff;
}

.complete-care-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.resultados-grid {
  gap: 60px;
}

.complete-care-text span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 700;
}

.complete-care-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  margin: 14px 0 22px;
}

.complete-care-text p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.resultados-btn-mobile {
  display: none;
}

.complete-care-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.complete-care-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  margin-bottom: 20px;
}

.complete-care-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.complete-care-card li {
  color: var(--muted);
  font-weight: 500;
}

.complete-care-card li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  margin-right: 10px;
}

@media (max-width: 900px) {
  .complete-care-grid {
    grid-template-columns: 1fr;
  }

  .complete-care-text {
    text-align: center;
  }

  .complete-care-card {
    padding: 28px 22px;
  }
}

.benefits {
  background: #fff;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.benefit-card {
  background: linear-gradient(180deg, #ffffff, #faf7f2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 22px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: 0.35s ease;
}

/* linha decorativa no topo */
.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  opacity: 0;
  transition: 0.3s;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(64, 45, 25, 0.12);
}

.benefit-card:hover::before {
  opacity: 1;
}

/* ícone dentro de "bolinha premium" */
.benefit-card i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(184, 138, 61, 0.08);
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 18px;
}

/* título */
.benefit-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.3;
}

/* descrição */
.benefit-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* destaque principal (dor orofacial) */
.benefit-card.highlight {
  border: 1.5px solid var(--gold);
  background: linear-gradient(180deg, #fffdf8, #f7efe4);
}

/* detalhe sutil no destaque */
.benefit-card.highlight::before {
  opacity: 1;
}

.cta-strip {
  padding: 45px 0;
  background: linear-gradient(90deg, #efe3d5, #fbf7f0);
}

.cta-grid,
.final-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-strip h2,
.final-cta h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.cta-strip p,
.final-cta p {
  color: var(--muted);
  margin-top: 8px;
}

.process {
  background: white;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  gap: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
}

.step {
  text-align: center;
  position: relative;
  z-index: 2;
  transition: transform 0.35s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step span {
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  width: 34px;
  height: 34px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  font-weight: 700;
}

.step i {
  color: var(--gold);
  font-size: 32px;
  margin-bottom: 14px;
}

.step h3 {
  font-family: "Playfair Display", serif;
  font-size: 21px;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.about {
  padding: 90px 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.about-img {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-text {
  padding: 0;
}

.about-text span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 700;
}

.about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.05;
  margin: 12px 0 22px;
}

.about-text p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 560px;
}

.about-main {
  font-size: 18px;
  color: var(--text) !important;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.about-highlights div {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
}

.about-highlights strong {
  display: block;
  color: var(--gold-dark);
  font-size: 24px;
  margin-bottom: 6px;
}

.about-highlights small {
  color: var(--muted);
  line-height: 1.4;
}

.doctor-name {
  display: block;
  margin-top: 8px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-img,
.about-text {
  width: 100%;
}

.about-img img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-img {
    order: -1;
  }

  .about-img img {
    height: 420px;
  }

  .about-text {
    text-align: center;
  }

  .about-text p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 520px) {
  .about {
    padding: 64px 0;
  }

  .about-img img {
    height: 340px;
  }

  .about-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .about-highlights div {
    padding: 14px 10px;
  }
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 10px 40px rgba(64, 45, 25, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(184, 138, 61, 0.1);
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 20px;
  left: 30px;
  font-family: "Playfair Display", serif;
  font-size: 80px;
  color: rgba(184, 138, 61, 0.1);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(64, 45, 25, 0.15);
  border-color: rgba(184, 138, 61, 0.3);
}

.testimonial-card p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 15px;
  font-style: italic;
  position: relative;
  z-index: 1;
  flex-grow: 1;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}

.testimonial-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  color: var(--text);
}

.testimonial-card span {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 14px;
}

/* Video Testimonials */
.video-testimonials-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 30px;
  padding: 10px 10px 40px;
  margin: 0 -10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.video-testimonials-grid::-webkit-scrollbar {
  display: none;
}

.video-card {
  flex: 0 0 calc(33.333% - 20px);
  scroll-snap-align: start;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(64, 45, 25, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(184, 138, 61, 0.1);
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(64, 45, 25, 0.15);
  border-color: rgba(184, 138, 61, 0.3);
}

.video-wrapper {
  position: relative;
  aspect-ratio: 9 / 16;
  background: #000;
  cursor: pointer;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  display: grid;
  place-items: center;
  transition: 0.4s;
  z-index: 2;
}

.video-overlay i {
  color: white;
  font-size: 54px;
  opacity: 0.9;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  transition: 0.3s;
}

.video-wrapper:hover .video-overlay i {
  transform: scale(1.1);
}

.video-wrapper.playing .video-overlay {
  opacity: 0;
  pointer-events: none;
}

.video-info {
  padding: 24px;
  text-align: center;
  background: white;
}

.video-info strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 6px;
}

.video-info small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.video-dots {
  display: flex !important;
  margin-top: 20px;
}

.video-carousel-wrapper {
  max-width: 100%;
}





.faq {
  background: #fff;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #faf7f2;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text);
  font-family: inherit;
}

.faq-question i {
  color: var(--gold);
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
  padding: 0 20px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  padding-bottom: 18px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}







.location {
  background: white;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 30px;
  align-items: stretch;
}

.location-info {
  padding: 50px;
  background: var(--bg);
  border-radius: var(--radius);
}

.location-info h2 {
  font-size: 42px;
  margin: 12px 0 18px;
}

.location-info p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 26px;
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  border-radius: var(--radius);
}

.final-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  padding: 42px 0;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.8);
}

.footer {
  background: white;
  padding: 30px 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer p {
  color: var(--muted);
  font-size: 13px;
}

.social {
  display: flex;
  gap: 16px;
  color: var(--gold);
  font-size: 20px;
}

.whatsapp-fixed {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 30px;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* =========================
   RESPONSIVO MOBILE-FIRST
========================= */

@media (max-width: 1100px) {
  .desktop-proof {
    display: none !important;
  }

  .mobile-proof {
    display: flex !important;
  }

  .resultados-btn-desktop {
    display: none !important;
  }

  .resultados-btn-mobile {
    display: inline-flex !important;
  }

  .resultados-text {
    order: -1;
  }

  .resultados-grid {
    gap: 20px !important;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 56px 0;
    gap: 36px;
  }

  .hero-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-proof {
    justify-content: center;
  }

  .before-after {
    height: 520px;
    border-radius: 28px;
  }

  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid,
  .location-grid,
  .complete-care-grid {
    grid-template-columns: 1fr;
  }

  .complete-care-video {
    order: -1;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }

  .about-text {
    padding: 56px 32px;
  }

  .about-img img {
    height: 460px;
  }
}

@media (max-width: 900px) {
  .nav {
    height: 72px;
  }

  .menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
  }

  .menu.active-mobile {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    justify-content: center;
    gap: 40px;
    transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    z-index: 999;
    margin-top: 0;
    display: flex !important;
  }

  .menu:not(.active-mobile) {
    display: none;
  }

  .menu a {
    font-size: 20px;
    color: var(--text);
    font-weight: 600;
  }

  .mobile-nav-btn {
    display: none;
  }

  .menu.active-mobile + .mobile-nav-btn {
    display: inline-flex !important;
    position: fixed;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: auto !important;
    padding: 16px 32px;
  }

  .menu-toggle {
    display: flex;
  }

  .header .nav-btn-desktop {
    display: none !important;
  }

  .footer-nav {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
  }

  .footer-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    transition: 0.3s;
  }

  .footer-nav a:hover {
    color: var(--gold);
  }

  body.no-scroll {
    overflow: hidden;
  }



  section {
    padding: 45px 0;
  }

  .benefit-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .timeline::before {
    display: none;
  }

  .step {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px 20px;
    box-shadow: 0 12px 30px rgba(64, 45, 25, 0.07);
  }

  .cta-grid,
  .final-grid,
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .location-info {
    text-align: center;
  }

  .map iframe {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .logo {
    gap: 9px;
    letter-spacing: 2px;
    font-size: 13px;
  }

  .logo i {
    font-size: 25px;
  }

  .logo small {
    font-size: 8px;
  }

  .hero {
    padding-top: 0;
  }

  .hero-grid {
    min-height: auto;
    padding: 42px 0 48px;
    gap: 32px;
  }

  .eyebrow,
  .section-title span,
  .about-text span,
  .location-info span {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.08;
    margin: 14px 0 18px;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 26px;
  }

  .btn {
    width: 100%;
    padding: 15px 18px;
    font-size: 12px;
  }

  .hero-proof {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    margin-top: 26px;
  }

  .hero-proof div {
    width: 50%;
    padding: 14px 10px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.65);
    border-radius: 14px;
    text-align: center;
  }

  .before-after {
    height: 390px;
    border-radius: 22px;
  }

  .ba-label {
    bottom: 18px;
    font-size: 11px;
  }

  .ba-label.before {
    left: 18px;
  }

  .ba-label.after {
    right: 18px;
  }

  .ba-button {
    width: 46px;
    height: 46px;
  }

  section {
    padding: 35px 0;
  }

  .section-title {
    margin-bottom: 20px;
  }

  .section-title h2,
  .cta-strip h2,
  .about-text h2,
  .location-info h2,
  .final-cta h2 {
    font-size: 31px;
    line-height: 1.16;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .benefit-grid,
  .timeline,
  .testimonial-grid,
  .video-testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 20px;
    margin: 0 -24px;
    padding: 0 24px 20px 24px;
    scrollbar-width: none;
    /* Firefox */
  }


  .benefit-grid::-webkit-scrollbar,
  .timeline::-webkit-scrollbar,
  .testimonial-grid::-webkit-scrollbar,
  .video-testimonials-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
  }


  .benefit-card,
  .step,
  .video-card {
    flex: 0 0 72%;
    scroll-snap-align: center;
    padding: 22px 18px;
  }

  .video-card {
    flex: 0 0 85%;
    padding: 0;
  }


  .testimonial-item {
    flex: 0 0 88%;
    scroll-snap-align: center;
    padding: 0;
  }


  .testimonial-item {
    text-decoration: none;
    color: inherit;
  }

  .mobile-dots {
    display: flex;
    margin-top: -6px;
  }


  .benefit-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
  }

  .cta-strip {
    padding: 44px 0;
  }

  .cta-grid,
  .final-grid {
    gap: 22px;
  }



  .step span {
    margin-bottom: 14px;
  }

  .about {
    padding: 0;
  }

  .about-grid {
    width: 100%;
  }

  .about-text {
    padding: 48px 20px;
    text-align: center;
  }

  .about-text p {
    font-size: 15px;
  }

  .about-img img {
    height: 360px;
  }

  .testimonial-card {
    padding: 30px 24px;
    border-radius: 20px;
  }

  .testimonial-card p {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .testimonial-card::before {
    font-size: 60px;
    top: 10px;
    left: 20px;
  }


  .location-info {
    padding: 34px 20px;
  }

  .map iframe {
    min-height: 300px;
  }

  .final-cta {
    padding: 44px 0;
  }

  .footer {
    padding: 28px 0 90px;
  }

  .footer-content {
    gap: 18px;
  }

  .whatsapp-fixed {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
    font-size: 28px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .hero h1 {
    font-size: 30px;
  }

  .section-title h2,
  .cta-strip h2,
  .about-text h2,
  .location-info h2,
  .final-cta h2 {
    font-size: 28px;
  }

  .before-after {
    height: 340px;
  }

  .about-img img {
    height: 310px;
  }

  .location-info p {
    font-size: 14px;
  }
}

/* ===== REFINAMENTO DESKTOP ===== */

@media (min-width: 1110px) {
  .container {
    width: min(1240px, calc(100% - 120px));
  }

  section {
    padding: 80px 0;
  }

  .hero {
    padding: 28px 0 70px;
  }

  .hero-grid {
    min-height: auto;
    gap: 80px;
  }

  .before-after {
    max-width: 680px;
    height: 590px;
  }

  .before-after-banner,
  .complete-care,
  .benefits,
  .process,
  .about,
  .testimonials,
  .faq,
  .location {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .complete-care-grid,
  .about-grid,
  .location-grid {
    gap: 80px;
  }

  .benefit-grid {
    gap: 28px;
  }

  .benefit-card {
    padding: 34px 26px;
  }

  .timeline {
    gap: 32px;
  }

  .testimonial-grid {
    gap: 32px;
  }

  .cta-strip {
    padding: 62px 0;
  }

  .final-cta {
    padding: 58px 0;
  }
}