:root {
  color-scheme: light;
  --bg: #fdf9fb;
  --white: #ffffff;
  --text: #2a1b22;
  --muted: #6b5c63;
  --accent: #9e446d; /* Rose meio roxo mais claro */
  --accent-light: #c25b8a;
  --accent-dark: #7a3152;
  --gold: #d4af37; /* Metallic Gold */
  --gold-dark: #b59227;
  --soft: #fcf6f9;
  --border: #f2e6eb;
  --shadow: 0 15px 35px rgba(158, 68, 109, 0.08);
  --radius: 18px;
}

* {
  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(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  position: fixed; /* Fixed instead of sticky for better control */
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.nav {
  height: 90px;
  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 {
  display: block;
  max-width: 100%;
}

.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(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--accent);
  color: white;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 10px 25px rgba(158, 68, 109, 0.2);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(158, 68, 109, 0.35);
  background: var(--accent-dark);
  color: white;
}

.btn-small {
  padding: 12px 18px;
}

.btn-light {
  background: var(--bg);
  color: var(--accent-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(--accent);
  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(--accent);
  font-style: italic;
  font-weight: 500;
}

.hero p {
  max-width: 500px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-proof {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.mobile-proof {
  display: none;
}

.hero-proof div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: var(--soft);
  border: 1px solid rgba(158, 68, 109, 0.3);
  border-radius: 100px;
  transition: all 0.3s ease;
}

.hero-proof div:hover {
  background: var(--bg);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(158, 68, 109, 0.1);
}

.hero-proof strong {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-size: 10px;
  flex-shrink: 0;
}

.hero-proof span {
  color: var(--text);
  font-size: 13.5px;
  font-weight: 600;
}

.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 85%);
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
}

.ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 85%;
  width: 3px;
  background: var(--bg);
  z-index: 3;
}

.ba-button {
  position: absolute;
  left: 85%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  color: var(--accent);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 4;
  box-shadow: var(--shadow);
}

.ba-img {
  position: absolute;
  inset: 0;
}

.ba-img img {
  height: 100%;
  object-fit: cover;
}


.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;
}

.section-title p {
  max-width: 700px;
  margin: 15px auto 0;
  color: var(--muted);
  line-height: 1.7;
}






.before-after-banner {
  background: var(--bg);
}

.carousel-wrapper {
  position: relative;
  max-width: 900px;
  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(--accent);
  transform: scale(1.2);
}

.mobile-dots {
  display: none;
}

.ba-banner-item {
  flex: 0 0 100%;
  scroll-snap-align: center;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ba-banner-item img {
  max-width: 100%;
  max-height: 550px;
  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: #ffffff;
  color: var(--accent);
  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: 450px;
  }

  .carousel-btn {
    display: none;
  }
}

@media (max-width: 420px) {
  .ba-banner-item img {
    max-height: 380px;
  }
}







.complete-care {
  background: var(--bg);
}

.complete-care-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.resultados-grid {
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.complete-care-text span {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 700;
}

.complete-care-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.5vw, 42px);
  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 {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 25px;
  font-weight: 600;
}

.complete-care-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.complete-care-card li {
  color: var(--muted);
  font-weight: 500;
}

@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: var(--bg);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.benefit-card {
  background: linear-gradient(180deg, #ffffff, var(--soft));
  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(--accent), var(--accent-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: 50%;
  background: var(--soft);
  color: var(--accent);
  font-size: 22px;
  margin-bottom: 20px;
  box-shadow: inset 0 0 0 1px var(--border);
}

/* 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(--accent);
  background: linear-gradient(180deg, #fff, var(--soft));
}

/* detalhe sutil no destaque */
.benefit-card.highlight::before {
  opacity: 1;
}

.cta-strip {
  padding: 80px 0;
  background: var(--accent);
  color: white;
  position: relative;
}

.final-cta {
  padding: 100px 0;
  background: var(--text);
  color: white;
}

.cta-strip h2, .final-cta h2 {
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
  color: white;
}

.cta-strip p, .final-cta p {
  color: rgba(255, 255, 255, 0.9) !important;
  max-width: 700px;
  margin: 0;
  line-height: 1.6;
}

.cta-strip .btn {
  background: var(--bg);
  color: var(--accent);
}

.cta-strip .btn:hover {
  background: var(--soft);
  color: var(--accent-dark);
}

.cta-grid,
.final-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.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: var(--bg);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--border);
  z-index: 1;
}

.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: 40px;
  height: 40px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(158, 68, 109, 0.2);
  position: relative;
  z-index: 2;
}

.step i {
  color: var(--accent);
  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: var(--bg);
}

.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;
  object-position: center top;
}

.about-text {
  padding: 0;
}

.about-text span {
  color: var(--accent);
  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(--accent-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: 520px;
  }

  .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: #ffffff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 10px 40px rgba(158, 68, 109, 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(158, 68, 109, 0.1);
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 20px;
  left: 30px;
  font-family: "Playfair Display", serif;
  font-size: 80px;
  color: rgba(158, 68, 109, 0.1);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(158, 68, 109, 0.15);
  border-color: rgba(158, 68, 109, 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(--accent);
  letter-spacing: 2px;
  font-size: 14px;
}

/* Video Testimonials */
.video-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.video-card {
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(158, 68, 109, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(158, 68, 109, 0.1);
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(158, 68, 109, 0.15);
  border-color: rgba(158, 68, 109, 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: var(--bg);
}

.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;
}





.faq {
  background: var(--bg);
}

.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: var(--soft);
}

.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(--accent);
  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: var(--bg);
}

.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(--accent), var(--accent-dark));
  color: white;
  padding: 42px 0;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.8);
}

.footer {
  background: var(--bg);
  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(--accent);
  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: 600px;
  }
}

@media (max-width: 900px) {
  .nav {
    height: 72px;
  }

  main {
    margin-top: 72px !important;
  }

  .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(--accent);
  }

  body.no-scroll {
    overflow: hidden;
  }



  section {
    padding: 60px 0;
  }

  .benefit-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .timeline::before {
    display: none;
  }

  .step {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px 20px;
    box-shadow: 0 12px 30px rgba(158, 68, 109, 0.07);
  }

  .cta-grid,
  .final-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .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 img {
    height: 54px !important;
  }

  .logo i {
    font-size: 25px;
  }

  .logo small {
    font-size: 8px;
  }

  .hero {
    padding-top: 0;
  }

  .hero-grid {
    min-height: auto;
    padding: 10px 0 20px;
    gap: 15px;
    text-align: center;
  }

  .desktop-proof {
    display: none !important;
  }

  .mobile-proof {
    display: flex !important;
  }

  .eyebrow,
  .section-title span,
  .about-text span,
  .location-info span {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.1;
    margin: 6px 0 8px;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
  }

  .btn {
    width: 100%;
    padding: 15px 18px;
    font-size: 12px;
  }

  .hero-proof {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
  }

  .hero-proof div {
    width: 50%;
    padding: 16px 12px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    text-align: center;
  }

  .before-after {
    height: 400px;
    border-radius: 20px;
  }

  .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: 65px 0;
  }

  .section-title {
    margin-bottom: 32px;
  }

  .section-title h2,
  .cta-strip h2,
  .about-text h2,
  .location-info h2,
  .final-cta h2,
  .complete-care-text h2 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.4px;
  }

  .eyebrow,
  .section-title span,
  .about-text span,
  .location-info span {
    font-size: 10px;
    letter-spacing: 2px;
  }

  p {
    font-size: 15px;
    line-height: 1.7;
  }

  .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 82%;
    scroll-snap-align: center;
    padding: 26px 22px;
  }

  .video-card {
    flex: 0 0 78%;
    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: 10px;
  }


  .benefit-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
  }

  .cta-strip {
    padding: 60px 0;
  }

  .cta-grid,
  .final-grid {
    gap: 22px;
  }



  .step span {
    margin-bottom: 14px;
  }

  .about {
    padding: 0;
  }

  .about-grid {
    width: 100%;
  }

  .about-text {
    padding: 56px 20px;
    text-align: center;
  }

  .about-text p {
    font-size: 14.5px;
    line-height: 1.7;
  }

  .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: 56px 20px;
  }

  .map iframe {
    min-height: 300px;
  }

  .final-cta {
    padding: 60px 0;
  }

  .footer {
    padding: 60px 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% - 32px, 1180px);
  }

  .hero h1 {
    font-size: 28px;
    letter-spacing: -0.4px;
    line-height: 1.1;
  }

  .hero p {
    font-size: 14.5px;
    line-height: 1.6;
  }

  .hero-proof {
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: center;
  }

  .hero-proof div {
    padding: 6px 12px;
    gap: 6px;
  }

  .hero-proof strong {
    width: 18px;
    height: 18px;
    font-size: 9px;
  }

  .hero-proof span {
    font-size: 10.5px;
  }

  .section-title h2,
  .cta-strip h2,
  .about-text h2,
  .location-info h2,
  .final-cta h2,
  .complete-care-text h2 {
    font-size: 24px;
  }

  p {
    font-size: 14px;
    line-height: 1.6;
  }

  .before-after {
    height: 330px;
  }

  .about-img img {
    height: 480px;
  }

  .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;
  }

  .contact-form-section .container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
  }

  .contact-form-section .section-title {
    text-align: left;
    margin-bottom: 0;
  }

  .contact-form-section .section-title p {
    margin-left: 0;
  }

  .contact-form {
    max-width: 100%;
    margin: 0;
    padding: 40px 50px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-group label {
    text-align: left;
  }
}

/* Contact Form Section */
.contact-form-section {
  padding: 100px 0;
  background: var(--bg);
}

.title-icon {
  font-size: 48px;
  color: var(--accent);
  margin: 0 auto 24px;
  animation: floatIcon 3s ease-in-out infinite;
  display: block;
  text-align: center;
  filter: drop-shadow(0 10px 15px rgba(158, 68, 109, 0.15));
}

.contact-form {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 60px;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(158, 68, 109, 0.12);
  border: 1px solid rgba(158, 68, 109, 0.1);
  position: relative;
  z-index: 10;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper i {
  position: absolute;
  left: 20px;
  color: var(--accent);
  font-size: 18px;
  pointer-events: none;
  transition: all 0.3s ease;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 18px 20px 18px 55px;
  border-radius: 15px;
  border: 1px solid var(--border);
  background: var(--soft);
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.form-group textarea {
  padding-top: 20px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(158, 68, 109, 0.1);
  transform: translateY(-2px);
}

.form-group input:focus + i,
.form-group select:focus + i,
.form-group textarea:focus + i {
  color: var(--accent-dark);
}

.form-footer {
  margin-top: 40px;
  text-align: center;
}

.form-footer .btn {
  min-width: 280px;
  padding: 20px 40px;
  font-size: 15px;
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 60px 0;
  }
  
  .contact-form {
    padding: 40px 25px;
    border-radius: 25px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .form-footer .btn {
    width: 100%;
  }
}

/* Location Section */
.location {
  padding: 100px 0;
  background: var(--bg);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.location-info span {
  display: block;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 15px;
}

.location-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin-bottom: 25px;
  color: var(--text);
}

.location-info p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 35px;
}

.address-single {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--soft);
  padding: 20px 25px;
  border-radius: 15px;
  border: 1px solid var(--border);
}

.address-single i {
  color: var(--accent);
  font-size: 20px;
}

.address-single p {
  margin: 0;
  font-weight: 600;
  color: var(--text);
  font-size: 16px;
}

@media (max-width: 768px) {
  .address-single {
    padding: 15px;
  }
  .address-single p {
    font-size: 14px;
  }
}

.map {
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
  border-radius: 30px;
  overflow: hidden;
  transition: 0.4s;
  height: 450px;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.1);
}

.map:hover {
  transform: translateY(-10px);
}

@media (max-width: 992px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .location-info h2 { font-size: 34px; }
  .map { height: 350px; }
}

/* Medical Animation 360 */
.medical-anim-core {
  position: relative;
  width: 200px;
  height: 200px;
  display: grid;
  place-items: center;
}

.anim-icon {
  width: 80px;
  height: 80px;
  background: #ffffff;
  color: var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 32px;
  z-index: 5;
  box-shadow: 0 10px 30px rgba(158, 68, 109, 0.2);
  animation: floatIcon 4s ease-in-out infinite;
}

.anim-icon i {
  transform: rotate(-45deg);
}

.anim-ring, .anim-ring-two {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(158, 68, 109, 0.3);
}

.anim-ring {
  width: 140px;
  height: 140px;
  animation: rotateRing 10s linear infinite;
}

.anim-ring::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--accent);
}

.anim-ring-two {
  width: 180px;
  height: 180px;
  border-style: dashed;
  animation: rotateRingRev 15s linear infinite;
  opacity: 0.5;
}

@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotateRingRev {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
  .medical-anim-core {
    width: 160px;
    height: 160px;
  }
  .anim-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  .anim-ring { width: 110px; height: 110px; }
  .anim-ring-two { width: 140px; height: 140px; }
}

/* About Header Card */
.about-header-card {
  background: var(--soft);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--border);
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.about-header-card span {
  display: block;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: 10px;
}

.about-header-card h2 {
  font-size: 36px;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
  color: var(--text);
}

.about-header-card .about-main {
  font-weight: 600;
  color: var(--accent);
  font-size: 17px;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .about-header-card {
    padding: 25px 20px;
  }
  .about-header-card h2 {
    font-size: 28px;
    line-height: 1.1;
  }
  .about-header-card .about-main {
    font-size: 15px;
  }
}
/* Footer Styles */
.footer {
  background: var(--bg);
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  margin-bottom: 25px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-3px);
}

.footer-nav-col h4,
.footer-contact h4 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  margin-bottom: 25px;
  color: var(--text);
}

.footer-nav-col nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-col a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-nav-col a:hover {
  color: var(--accent);
}

.footer-contact p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
  display: flex;
  gap: 12px;
}

.footer-contact i {
  color: var(--accent);
  font-size: 18px;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 30px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .footer-brand p,
  .footer-contact p {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* Complete Care & Strategy Section */
.complete-care {
  padding: 60px 0;
  background: var(--bg);
}

.complete-care .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.complete-care-card {
  width: 100%;
  max-width: 850px;
  background: #ffffff;
  padding: 40px 50px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid var(--border);
}

.complete-care-card h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 30px;
  color: var(--text);
}

.strategy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  text-align: left;
}

.strategy-list li {
  font-size: 15px;
  color: var(--text);
  display: flex;
  align-items: center;
  font-weight: 500;
}

.strategy-list li i {
  color: var(--accent);
  margin-right: 12px;
  font-size: 14px;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .complete-care-card {
    padding: 35px;
  }
}

@media (max-width: 768px) {
  .complete-care {
    padding: 65px 0;
  }
  
  .complete-care-card {
    padding: 30px 20px;
  }
  
  .strategy-list {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 10px;
  }
  
  .strategy-list li {
    font-size: 13.5px; /* Redução para evitar quebra de linha */
  }
}

@media (max-width: 420px) {
  .strategy-list li {
    font-size: 12.5px; /* Redução adicional para telas muito pequenas */
  }
  
  .strategy-list li i {
    margin-right: 8px;
  }
}

/* Loading Overlay Popup */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(42, 27, 34, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.loading-overlay.active {
  opacity: 1;
  visibility: visible;
}

.loading-content {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.loading-overlay.active .loading-content {
  transform: translateY(0);
}

.loading-content h3 {
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 12px;
  margin-top: 25px;
}

.loading-content p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.loading-content .btn {
  margin-top: 25px;
  width: 100%;
  justify-content: center;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 1s linear infinite;
  transition: all 0.3s ease;
}

.spinner.success {
  border: 4px solid #28a745;
  border-top: 4px solid #28a745;
  animation: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(40, 167, 69, 0.1);
}

.spinner.success::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #28a745;
  font-size: 28px;
}

.spinner.error {
  border: 4px solid #dc3545;
  border-top: 4px solid #dc3545;
  animation: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(220, 53, 69, 0.1);
}

.spinner.error::after {
  content: '\f057';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #dc3545;
  font-size: 28px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
