/* ==========================================================================

   Raquel Vieira - Psicanálise & Acolhimento

   Design System & Main Stylesheet

   Palette:

   - #5d4932 (Primary Dark Coffee)

   - #8c7a68 (Medium Warm Taupe)

   - #a39282 (Muted Warm Taupe)

   - #bcaa97 (Soft Tan)

   - #d4c4b3 (Light Sand / Beige)

   ========================================================================== */

:root {
  /* Color Palette */
  --c-dark: #5d4932;
  --c-medium: #8c7a68;
  --c-taupe: #a39282;
  --c-tan: #bcaa97;
  --c-sand: #d4c4b3;
  /* Derived & Functional Colors */
  --c-bg: #fdfbf7;
  --c-bg-alt: #f7f3ed;
  --c-card: #ffffff;
  --c-text-primary: #423527;
  --c-text-secondary: #6e6154;
  --c-text-light: #8e8073;
  --c-border: rgba(188, 170, 151, 0.35);
  --c-shadow: rgba(93, 73, 50, 0.08);
  --c-gold: #c9a468;
  /* Typography */
  --ff-title: 'Lora', 'Libre Caslon Text', 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  /* Spacing & Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base Styles */

*,

*::before,

*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
  font-size: 16px;
}

section {
  scroll-margin-top: 85px;
}

body {
  font-family: var(--ff-body);
  background-color: var(--c-bg);
  color: var(--c-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Editorial section order */
.page-sections {
  display: flex;
  flex-direction: column;
}

.page-sections .hero-full {
  order: 1;
}

.page-sections .reflections {
  order: 2;
}

.page-sections .about {
  order: 3;
}

.page-sections .clinic-carousel-section {
  order: 4;
}

.page-sections .google-reviews-section {
  order: 5;
}

.page-sections .faq {
  order: 6;
}

/* Container */

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--c-dark);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(93, 73, 50, 0.25);
}

.btn-primary:hover {
  background-color: #483827;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(93, 73, 50, 0.35);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  right: calc(24px + env(safe-area-inset-right));
  bottom: calc(24px + env(safe-area-inset-bottom));
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  font-size: 2rem;
  box-shadow: 0 10px 28px rgba(20, 92, 47, 0.3);
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -3px;
  z-index: -1;
  pointer-events: none;
  border: 2px solid rgba(37, 211, 102, 0.38);
  border-radius: 50%;
  animation: whatsapp-soft-pulse 2.8s ease-out infinite;
}

@keyframes whatsapp-soft-pulse {
  0%,
  100% {
    opacity: 0.15;
    transform: scale(0.98);
  }

  50% {
    opacity: 0.52;
    transform: scale(1.14);
  }
}

.whatsapp-float:hover {
  background: #1fbd59;
  color: #ffffff;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 15px 34px rgba(20, 92, 47, 0.38);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(93, 73, 50, 0.55);
  outline-offset: 4px;
}

@media (max-width: 700px) {
  .whatsapp-float {
    right: calc(18px + env(safe-area-inset-right));
    bottom: calc(18px + env(safe-area-inset-bottom));
    width: 58px;
    height: 58px;
    font-size: 1.8rem;
  }
}

/* Header & Navigation */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  background: rgba(253, 251, 247, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(93, 73, 50, 0.08);
  padding: 0.3rem 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  position: relative;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.logo-img {
  height: 50px;
  max-height: 52px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-wrapper:hover .logo-img {
  transform: scale(1.02);
}

.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 993px) {
  .nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}

.mobile-cta-only {
  display: none;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--c-text-primary);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--c-medium);
  transition: var(--transition);
}

.nav-link:hover::after,

.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--c-dark);
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--c-dark);
}

/* ==========================================================================

   Remodeled Full-Width Hero Section (Serene Wisdom Boutique - 100vh Fit)

   ========================================================================== */

.hero-full {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  background: linear-gradient(135deg, #fdfbf7 0%, #faf5ee 50%, #f4eae0 100%);
  padding-top: 85px;
  /* Offset for fixed header */
  padding-bottom: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

/* Botanical Watermark Backgrounds */

.hero-leaf-bg {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.leaf-bottom-left {
  bottom: -10px;
  left: -10px;
}

.leaf-bottom-right {
  bottom: -20px;
  right: -20px;
}

/* Main Grid Layout (Full Edge-to-Edge 2-Column Layout) */

.hero-main-wrapper {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  z-index: 2;
}

/* Left Content Column */

.hero-left-col {
  position: relative;
  background: #faf6f0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1.2rem 3rem 1.2rem 5vw;
  z-index: 2;
  overflow: hidden;
}

.hero-foliage-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: auto;
  opacity: 0.22;
  pointer-events: none;
  z-index: 1;
}

.hero-left-inner {
  max-width: 660px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Tag Pill */

.hero-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 1.05rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(196, 168, 130, 0.45);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(6px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--c-dark);
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 10px rgba(93, 73, 50, 0.04);
}

.hero-tag-pill .tag-svg-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* Main Title (Lighter Weight & Refined Scale - Lora Font) */

.hero-title-main {
  font-family: var(--ff-title);
  font-size: clamp(2rem, 2.7vw + 0.6rem, 3.2rem);
  line-height: 1.18;
  color: var(--c-dark);
  font-weight: 500;
  /* Warm & humanistic Lora weight */
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
  position: relative;
}

.hero-sparkle-title {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  margin-left: 0.4rem;
  opacity: 0.85;
}

.highlight-gold {
  color: #a8793b;
  font-style: italic;
  font-weight: 400;
}

/* Subtitle Paragraph */

.hero-subtitle-text {
  font-size: clamp(0.95rem, 0.8vw + 0.45rem, 1.12rem);
  color: var(--c-text-secondary);
  line-height: 1.58;
  margin-bottom: 1.35rem;
  max-width: 580px;
}

.hero-subtitle-text strong {
  color: var(--c-dark);
  font-weight: 600;
}

/* CTA Group */

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.95rem;
  margin-bottom: 1.1rem;
}

.btn-hero-primary {
  background-color: var(--c-dark);
  color: #ffffff;
  padding: 0.82rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  box-shadow: 0 6px 20px rgba(93, 73, 50, 0.22);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: var(--transition);
}

.btn-hero-primary:hover {
  background-color: #423425;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(93, 73, 50, 0.3);
  color: #ffffff;
}

.btn-hero-primary .whatsapp-icon {
  font-size: 1.08rem;
  color: #ffffff;
}

.btn-hero-outline {
  background: transparent;
  color: var(--c-dark);
  border: 1.5px solid rgba(140, 122, 104, 0.65);
  padding: 0.82rem 1.8rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-hero-outline:hover {
  background-color: var(--c-dark);
  color: #ffffff;
  border-color: var(--c-dark);
  transform: translateY(-2px);
}

.btn-hero-outline .arrow-icon {
  font-size: 0.82rem;
  transition: transform 0.3s ease;
}

.btn-hero-outline:hover .arrow-icon {
  transform: translateX(4px);
}

/* Trust Indicator */

.hero-trust-indicator {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--c-text-secondary);
  font-weight: 500;
}

/* Right Photo Column (Absolute - Full Height Behind Stats Card) */

.hero-right-col {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 50%;
  overflow: hidden;
  z-index: 1;
}

.hero-photo-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Photo Fills Entire Right Side Top-to-Bottom */

.hero-photo-img.bg-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% center;
  display: block;
  z-index: 1;
}

/* Organic Curved Partition Overlay (Positioned right over photo edge) */

.hero-curve-separator {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 320px;
  height: 100%;
  z-index: 4;
  pointer-events: none;
}

.curve-svg {
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes floatBadgeSlow {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-8px);
  }

}

/* Integrated Bottom Statistics Floating Bar (Overlaying Image at Bottom) */

.hero-stats-container {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 1200px;
  z-index: 15;
}

.hero-stats-bar {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% -25%, rgba(255, 255, 255, 0.98), transparent 36%),
    radial-gradient(circle at 82% 0%, rgba(213, 176, 116, 0.2), transparent 35%),
    linear-gradient(125deg, rgba(255, 255, 255, 0.67), rgba(255, 250, 242, 0.38));
  backdrop-filter: blur(28px) saturate(165%);
  -webkit-backdrop-filter: blur(28px) saturate(165%);
  border-radius: 24px;
  box-shadow:
    0 18px 42px rgba(74, 50, 27, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -1px 0 rgba(181, 142, 88, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.84);
  padding: 0.75rem 1.4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.hero-stats-bar::before {
  content: '';
  position: absolute;
  top: -72%;
  left: -8%;
  width: 58%;
  height: 155%;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.04));
  transform: rotate(-9deg);
}

.hero-stats-bar::after {
  content: '';
  position: absolute;
  inset: 1px;
  z-index: -1;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 22px;
}

.hero-stat-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.2rem 0.5rem;
  position: relative;
}

.hero-stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -0.5rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: rgba(220, 210, 195, 0.5);
}

.stat-icon-circle {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(244, 230, 210, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 5px 14px rgba(116, 77, 38, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #a8793b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.stat-details {
  display: flex;
  flex-direction: column;
}

.stat-main-val {
  font-family: var(--ff-title);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-dark);
  line-height: 1.15;
  margin-bottom: 0.1rem;
}

.stat-sub-text {
  font-size: 0.76rem;
  color: var(--c-text-secondary);
  line-height: 1.3;
}

/* Responsive Media Queries */

@media (max-width: 1100px) {
  .hero-full {
    height: auto;
    max-height: none;
  }

  .hero-main-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .hero-curve-separator {
    display: none;
  }

  .hero-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .hero-stat-card:nth-child(2)::after {
    display: none;
  }

}

@media (max-width: 850px) {
  .hero-full {
    padding-top: 100px;
  }

  .hero-main-wrapper {
    grid-template-columns: 1fr;
  }

  .hero-left-col {
    padding: 1.5rem 1.2rem 2rem;
  }

  .hero-right-col {
    min-height: 380px;
  }

  .hero-photo-container,

  .hero-photo-img {
    min-height: 380px;
  }

  .hero-stats-bar {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .hero-stat-card::after {
    display: none;
  }

}

/* About Section */

.about {
  padding: 90px 0;
  background-color: var(--c-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 36px var(--c-shadow);
  border: 3px solid #ffffff;
}

.about-img-box img {
  width: 600px;
  height: 520px;
  object-fit: cover;
}

.section-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--c-medium);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  display: block;
}

.section-title {
  font-family: var(--ff-title);
  font-size: 2.6rem;
  color: var(--c-dark);
  line-height: 1.2;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.about-text {
  font-size: 1rem;
  color: var(--c-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.section-header-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

/* Reflections / Videos Section */

.reflections {
  padding: 90px 0;
  background-color: var(--c-bg-alt);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.video-card {
  background: var(--c-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: 0 8px 24px var(--c-shadow);
  transition: var(--transition);
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(93, 73, 50, 0.14);
}

.video-thumb-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.video-thumb-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.video-card:hover .video-thumb-container img {
  transform: scale(1.05);
}

.play-overlay-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(93, 73, 50, 0.85);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}

.video-card:hover .play-overlay-btn {
  background: var(--c-dark);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-weight: 500;
}

/* FAQ Accordion Section */

.faq {
  padding: 90px 0;
  background-color: var(--c-bg-alt);
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--c-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 1.3rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--ff-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-dark);
  text-align: left;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--c-medium);
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--c-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.6rem;
  color: var(--c-text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 1.6rem 1.4rem;
}

/* Footer Section */

.footer {
  background-color: #3b2e20;
  color: #dfd7cc;
  padding-top: 80px;
  padding-bottom: 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(212, 196, 179, 0.15);
}

.footer-brand .logo-img {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
  height: 60px;
  max-height: 65px;
  width: auto;
  margin-bottom: 1.2rem;
  display: block;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #b5a99b;
  max-width: 300px;
  line-height: 1.6;
}

.footer-column-title {
  font-family: var(--ff-title);
  font-size: 1.25rem;
  color: #CD9C50;
  margin-bottom: 1.2rem;
}

.btn-footer {
  background-color: var(--c-dark);
  color: #CD9C50;
  box-shadow: 0 4px 14px rgba(93, 73, 50, 0.25);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #b5a99b;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--c-sand);
}

.contact-info {
  list-style: none;
  font-size: 0.9rem;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  color: #b5a99b;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--c-sand);
  color: var(--c-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #8c7e70;
}

/* Modals */

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(40, 30, 20, 0.65);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  width: 90%;
  max-width: 520px;
  padding: 2.5rem 2rem;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.modal-backdrop.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 1.4rem;
  color: var(--c-text-light);
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--c-dark);
}

.modal-title {
  font-family: var(--ff-title);
  font-size: 2rem;
  color: var(--c-dark);
  margin-bottom: 0.5rem;
}

.modal-desc {
  font-size: 0.9rem;
  color: var(--c-text-secondary);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: 0.4rem;
}

.form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--c-text-primary);
  outline: none;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--c-dark);
  box-shadow: 0 0 0 3px rgba(93, 73, 50, 0.12);
}

textarea.form-input {
  resize: vertical;
  min-height: 90px;
}

/* Video Modal */

.video-modal-card {
  max-width: 800px;
  padding: 1.5rem;
  background: #000;
}

.video-player-frame {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-sm);
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-direction: column;
  gap: 1rem;
}

/* Responsive Styles */

@media (max-width: 1199px) {
  .container {
    width: 92%;
  }

}

@media (max-width: 992px) {
  .hero {
    min-height: auto;
    padding-top: 130px;
    padding-bottom: 70px;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .about-img-box {
    max-width: 500px;
    margin: 0 auto;
  }
.video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

}

@media (max-width: 768px) {
  .header-container {
    height: 72px;
  }

  .logo-img {
    height: 65px;
  }

  .header-cta-btn {
    display: none;
  }

  .mobile-cta-only {
    display: block;
    margin-top: 0.5rem;
  }

  .mobile-toggle {
    display: block;
    padding: 0.5rem;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 2.5rem 1.5rem;
    gap: 1.6rem;
    box-shadow: 0 15px 35px rgba(93, 73, 50, 0.15);
    transform: translateY(-150%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid var(--c-border);
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-link {
    font-size: 1.1rem;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 50px;
  }
.video-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2.1rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

}

@media (max-width: 480px) {
  .container {
    width: 94%;
    padding: 0 0.5rem;
  }

  .modal-card {
    padding: 1.8rem 1.2rem;
  }

}

/* ==========================================================================

   Formação & Specialization Enhancements

   ========================================================================== */

.Highlight-lead {
  font-size: 1.08rem;
  color: var(--c-text-primary);
  line-height: 1.7;
}

@keyframes floatAnim {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: 15px;
  background: var(--c-dark);
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(93, 73, 50, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 5;
}

.about-experience-badge .exp-number {
  font-family: var(--ff-title);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--c-sand);
}

.about-experience-badge .exp-text {
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 0.3rem;
  opacity: 0.9;
}

.formacao-box {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-medium);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-top: 1.8rem;
  transition: var(--transition);
}

.formacao-box:hover {
  box-shadow: 0 8px 25px rgba(93, 73, 50, 0.08);
  border-left-color: var(--c-dark);
}

.formacao-title {
  font-family: var(--ff-title);
  font-size: 1.4rem;
  color: var(--c-dark);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.formacao-title i {
  color: var(--c-medium);
}

.formacao-desc {
  font-size: 0.98rem;
  color: var(--c-text-secondary);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.formacao-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #ffffff;
  border: 1px solid var(--c-border);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-dark);
  transition: var(--transition);
}

.tag-pill i {
  color: var(--c-medium);
  font-size: 0.85rem;
}

.tag-pill:hover {
  background: var(--c-dark);
  color: #ffffff;
  border-color: var(--c-dark);
}

.tag-pill:hover i {
  color: var(--c-sand);
}

.section-subtitle {
  font-size: 1.12rem;
  color: var(--c-text-secondary);
  margin-top: 0.5rem;
  font-weight: 400;
}

/* Responsive adjustments */



/* ==========================================================================

   Clinic Treatments Dynamic Carousel Styles

   ========================================================================== */

.clinic-carousel-section {
  padding: 5.5rem 0;
  background-color: var(--c-bg-alt);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.carousel-wrapper {
  position: relative;
  margin-top: 2.5rem;
  padding: 0 3.5rem;
}

.carousel-track-container {
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 1rem 0.5rem;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 280px;
  box-sizing: border-box;
}

.treatment-card {
  background: transparent;
  border: none;
  border-radius: 30px;
  padding: 2.2rem 1.75rem;
  box-shadow: 0 10px 30px rgba(93, 73, 50, 0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.treatment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(93, 73, 50, 0.16);
}

.treatment-title {
  font-family: var(--ff-title);
  font-size: 1.55rem;
  color: var(--c-dark);
  font-weight: 600;
  margin-bottom: 0.35rem;
  line-height: 1.25;
  position: relative;
  z-index: 2;
}

.treatment-title-line {
  width: 36px;
  height: 2px;
  background: #c4a882;
  margin: 0.4rem 0 1rem 0;
  border-radius: 2px;
  position: relative;
  z-index: 2;
}

.treatment-desc {
  font-size: 0.95rem;
  color: var(--c-text-secondary);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.treatment-card-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--c-medium);
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

.tag-svg-icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 0.3rem;
}

.treatment-card:hover .treatment-card-footer {
  color: var(--c-dark);
}

.treatment-card-footer i {
  transition: var(--transition);
}

.treatment-card:hover .treatment-card-footer i {
  transform: translateX(4px);
}

/* Carousel Controls */

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-card);
  border: 1.5px solid var(--c-border);
  color: var(--c-dark);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px var(--c-shadow);
  transition: var(--transition);
  z-index: 10;
  cursor: pointer;
}

.carousel-control:hover {
  background: var(--c-dark);
  color: #ffffff;
  border-color: var(--c-dark);
  transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev-btn {
  left: 0;
}

.carousel-control.next-btn {
  right: 0;
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-border);
  transition: var(--transition);
  cursor: pointer;
}

.carousel-dot.active {
  width: 28px;
  border-radius: 10px;
  background: var(--c-dark);
}

/* ==========================================================================

   Section Rhythm & Color Hierarchy

   ========================================================================== */

/* Reflections Section */

.reflections {
  padding: 5.5rem 0;
  background-color: var(--c-bg);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.video-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 6px 20px var(--c-shadow);
  transition: var(--transition);
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(93, 73, 50, 0.15);
}

.video-thumb-container {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #2a221b;
}

.video-thumb-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: var(--transition);
}

.video-card:hover .video-thumb-container img {
  transform: scale(1.06);
  opacity: 0.95;
}

.play-overlay-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(253, 251, 247, 0.92);
  color: var(--c-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.video-card:hover .play-overlay-btn {
  background: var(--c-dark);
  color: #ffffff;
  transform: translate(-50%, -50%) scale(1.15);
}

.video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
}

/* Featured horizontal video */
.reflections {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 8% 18%, rgba(196, 168, 130, 0.2), transparent 25%),
    radial-gradient(circle at 94% 82%, rgba(168, 121, 59, 0.14), transparent 27%),
    linear-gradient(135deg, #fdfbf7 0%, #f7f0e7 52%, #fcf8f2 100%);
}

.reflections::before {
  content: '';
  position: absolute;
  z-index: -1;
  pointer-events: none;
  top: -20px;
  left: -125px;
  width: 410px;
  height: 560px;
  background: url('../assets/svg/reflexoes/swoosh-grande.svg') center / contain no-repeat;
  opacity: 0.34;
}

.reflections::after {
  content: '';
  position: absolute;
  right: -160px;
  bottom: -250px;
  z-index: 0;
  width: 520px;
  height: 520px;
  background: url('../assets/svg/reflexoes/arco-folhagem.svg') center / contain no-repeat;
  pointer-events: none;
}

.reflections > .container {
  position: relative;
  z-index: 1;
}

.reflections-decor {
  position: absolute;
  z-index: 0;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

.reflections-decor-shadow {
  left: -135px;
  bottom: 30px;
  width: 390px;
  opacity: 0.2;
  transform: rotate(18deg);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 36%, transparent 94%);
  mask-image: radial-gradient(ellipse at center, #000 36%, transparent 94%);
}

.reflections-sparkle {
  width: 30px;
  opacity: 0.62;
  filter: drop-shadow(0 4px 10px rgba(168, 121, 59, 0.22));
}

.reflections-sparkle-top {
  top: 15%;
  right: 9%;
}

.reflections-sparkle-bottom {
  bottom: 12%;
  left: 9%;
  width: 20px;
  transform: rotate(28deg);
}

.reflections .section-header-center {
  max-width: 840px;
  margin-bottom: 2.5rem;
}

.reflections .section-tag img {
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.reflections .section-title {
  margin: 0.7rem 0 0;
  font-size: clamp(2.2rem, 4vw, 3.15rem);
  line-height: 1.16;
}

.reflections-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 170px;
  margin: 1.25rem auto 0.8rem;
}

.reflections-divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c58a31);
}

.reflections-divider span:last-child {
  background: linear-gradient(90deg, #c58a31, transparent);
}

.reflections-divider img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.reflections-intro {
  max-width: 700px;
  margin: 0 auto;
  color: var(--c-text-secondary);
  font-size: 1.02rem;
  line-height: 1.75;
}

.featured-video-grid {
  display: block;
  max-width: 980px;
  margin: 0 auto 1.8rem;
}

.video-featured-card {
  display: block;
  min-height: 0;
  color: inherit;
  border: 1px solid rgba(196, 168, 130, 0.48);
  border-radius: 28px;
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 24px 60px -22px rgba(75, 48, 26, 0.38);
}

.video-featured-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 32px 72px -24px rgba(75, 48, 26, 0.48);
}

.video-featured-card:focus-visible {
  outline: 3px solid rgba(168, 121, 59, 0.6);
  outline-offset: 5px;
}

.video-featured-visual {
  height: auto;
  min-height: 0;
  aspect-ratio: 2.5 / 1;
  border-radius: 26px;
  background: #32261c;
}

.video-featured-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(38, 27, 18, 0.08) 30%, rgba(38, 27, 18, 0.42) 100%);
  pointer-events: none;
}

.video-featured-visual img {
  opacity: 0.96;
  object-position: center 32%;
}

.video-featured-card:hover .video-featured-visual img {
  opacity: 1;
  transform: scale(1.035);
}

.video-feature-label {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(62, 43, 29, 0.7);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  backdrop-filter: blur(9px);
}

.video-feature-label i {
  color: #e5ba70;
}

.video-featured-card .play-overlay-btn {
  z-index: 2;
  width: 74px;
  height: 74px;
  padding-left: 4px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 253, 249, 0.94);
  color: #5d4932;
  font-size: 1.4rem;
  box-shadow: 0 14px 34px rgba(34, 24, 16, 0.32);
}

.video-featured-card .video-duration {
  z-index: 2;
  right: 20px;
  bottom: 20px;
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
  font-size: 0.78rem;
}

.reflections-appointment {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.45rem;
  max-width: 980px;
  margin: 0 auto;
  padding: 1.15rem 1.35rem;
  border: 1px solid rgba(196, 168, 130, 0.42);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.82);
  color: var(--c-text-secondary);
  font-size: 0.92rem;
  box-shadow: 0 16px 38px -26px rgba(75, 48, 26, 0.4);
  backdrop-filter: blur(8px);
}

.reflections-appointment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(168, 121, 59, 0.55);
  border-radius: 50%;
  background: #fffaf3;
}

.reflections-appointment-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.reflections-appointment-copy {
  display: grid;
  gap: 0.15rem;
  padding-left: 1.4rem;
  border-left: 1px solid rgba(168, 121, 59, 0.35);
}

.reflections-appointment-copy strong {
  color: #493225;
  font-family: var(--ff-title);
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.35;
}

.reflections-appointment-copy span {
  color: var(--c-text-secondary);
  font-size: 0.84rem;
}

.reflections-appointment-btn {
  min-width: 305px;
  border: 1px solid #b77c2c;
  background: linear-gradient(135deg, #b47b2e, #c8954e);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(145, 94, 31, 0.2);
}

.reflections-appointment-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(145, 94, 31, 0.3);
}

.reflections-appointment-btn i {
  transition: transform 0.25s ease;
}

.reflections-appointment-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .reflections-decor-shadow {
    left: -210px;
    opacity: 0.15;
  }

  .reflections-sparkle-top {
    right: 4%;
  }

  .video-featured-visual {
    aspect-ratio: 2 / 1;
    border-radius: 26px;
  }

  .video-featured-visual::after {
    background: linear-gradient(180deg, rgba(38, 27, 18, 0.04) 42%, rgba(38, 27, 18, 0.42) 100%);
  }

  .reflections-appointment {
    grid-template-columns: auto 1fr;
  }

  .reflections-appointment-btn {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .reflections {
    padding: 4.2rem 0;
  }

  .reflections .section-header-center {
    margin-bottom: 2rem;
  }

  .reflections-decor-shadow,
  .reflections::after {
    display: none;
  }

  .reflections-sparkle {
    opacity: 0.42;
  }

  .video-featured-card {
    min-height: 0;
    border-radius: 24px;
  }

  .video-featured-visual {
    aspect-ratio: 1.65 / 1;
    border-radius: 22px;
  }

  .video-feature-label {
    top: 16px;
    left: 16px;
  }

  .video-featured-card .play-overlay-btn {
    width: 68px;
    height: 68px;
    font-size: 1.3rem;
  }

  .reflections-appointment {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem;
    text-align: center;
  }

  .reflections-appointment-icon {
    margin: 0 auto;
  }

  .reflections-appointment-copy {
    padding: 0;
    border-left: 0;
  }

  .reflections-appointment-btn {
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float::after {
    animation: none;
    opacity: 0.28;
  }
}

/* Google reviews — warm glassmorphism */
.google-reviews-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 5.5rem 0;
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.92), transparent 25%),
    radial-gradient(circle at 88% 82%, rgba(196, 168, 130, 0.22), transparent 30%),
    linear-gradient(135deg, #f8f2ea 0%, #f1e7da 48%, #fbf7f1 100%);
}

.google-reviews-section::before,
.google-reviews-section::after {
  content: '';
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(8px);
}

.google-reviews-section::before {
  top: -180px;
  left: -100px;
  width: 430px;
  height: 430px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 0 0 1px rgba(168, 121, 59, 0.12);
}

.google-reviews-section::after {
  right: -150px;
  bottom: -210px;
  width: 510px;
  height: 510px;
  background: rgba(203, 169, 122, 0.13);
  box-shadow: inset 0 0 0 1px rgba(168, 121, 59, 0.14);
}

.google-reviews-botanical {
  position: absolute;
  right: -105px;
  bottom: -20px;
  z-index: 0;
  width: 360px;
  max-width: none;
  opacity: 0.2;
  transform: rotate(-10deg);
  pointer-events: none;
}

.google-reviews-section > .container {
  position: relative;
  z-index: 1;
}

.google-reviews-heading {
  max-width: 790px;
  margin-bottom: 2.5rem;
}

.google-reviews-tag img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.google-reviews-heading .section-title {
  margin: 0.65rem 0 0.8rem;
  color: #402c20;
  font-size: clamp(2.15rem, 3.8vw, 3rem);
  line-height: 1.18;
}

.google-reviews-heading > p {
  max-width: 650px;
  margin: 0 auto;
  color: #6d5c4d;
  font-size: 1rem;
  line-height: 1.7;
}

.google-reviews-glass {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(255, 250, 243, 0.28));
  box-shadow:
    0 28px 70px -36px rgba(75, 48, 26, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px) saturate(125%);
  -webkit-backdrop-filter: blur(24px) saturate(125%);
}

.google-reviews-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0.3rem 0.35rem 1.15rem;
}

.google-summary-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.google-logo-orb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 8px 20px rgba(75, 48, 26, 0.1);
}

.google-logo-orb img {
  width: 29px;
  height: 29px;
}

.google-summary-brand > div {
  display: grid;
  gap: 0.1rem;
}

.google-summary-brand strong {
  color: #463125;
  font-family: var(--ff-title);
  font-size: 1.22rem;
  font-weight: 600;
}

.google-summary-brand span,
.google-summary-rating > span:not(.google-stars) {
  color: #7c6a5a;
  font-size: 0.76rem;
}

.google-summary-rating {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
}

.google-summary-rating > strong {
  color: #493225;
  font-size: 1rem;
}

.google-stars,
.google-review-stars {
  display: flex;
  align-items: center;
  gap: 0.18rem;
  color: #c58a31;
  font-size: 0.78rem;
}

.google-reviews-controls {
  display: flex;
  gap: 0.55rem;
}

.google-reviews-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  color: #5d4932;
  box-shadow: 0 7px 18px rgba(75, 48, 26, 0.1);
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.google-reviews-controls button:hover {
  background: #5d4932;
  color: #ffffff;
  transform: translateY(-2px);
}

.google-reviews-controls button:focus-visible,
.google-reviews-dots button:focus-visible {
  outline: 2px solid rgba(93, 73, 50, 0.62);
  outline-offset: 3px;
}

.google-reviews-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 22px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.google-reviews-viewport::-webkit-scrollbar {
  display: none;
}

.google-reviews-track {
  display: flex;
  gap: 1rem;
}

.google-review-card {
  position: relative;
  flex: 0 0 calc((100% - 2rem) / 3);
  min-height: 250px;
  padding: 1.45rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 249, 241, 0.42));
  box-shadow:
    0 16px 34px -24px rgba(75, 48, 26, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  scroll-snap-align: start;
}

.google-review-card::after {
  content: '“';
  position: absolute;
  right: 16px;
  bottom: -33px;
  color: rgba(168, 121, 59, 0.08);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
  pointer-events: none;
}

.google-review-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 22px 40px -24px rgba(75, 48, 26, 0.42);
}

.google-review-person {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.7rem;
}

.google-review-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5d4932, #9c764d);
  color: #ffffff;
  font-family: var(--ff-title);
  font-size: 1rem;
  box-shadow: 0 6px 15px rgba(75, 48, 26, 0.2);
}

.google-review-person > div {
  display: grid;
  gap: 0.05rem;
}

.google-review-person strong {
  color: #493225;
  font-size: 0.88rem;
}

.google-review-person span:not(.google-review-avatar) {
  color: #8a796a;
  font-size: 0.68rem;
}

.google-review-person > img {
  width: 22px;
  height: 22px;
}

.google-review-stars {
  position: relative;
  z-index: 1;
  margin: 1.05rem 0 0.8rem;
}

.google-review-card > p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #5f5044;
  font-size: 0.88rem;
  line-height: 1.72;
}

.google-reviews-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 10px;
  margin-top: 1.1rem;
}

.google-reviews-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(93, 73, 50, 0.24);
  transition: width 0.25s ease, background-color 0.25s ease;
}

.google-reviews-dots button.active {
  width: 26px;
  background: #a8793b;
}

.google-reviews-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  max-width: 760px;
  margin: 1.15rem auto 0;
  color: #88776a;
  font-size: 0.72rem;
  text-align: center;
}

@media (max-width: 900px) {
  .google-review-card {
    flex-basis: calc((100% - 1rem) / 2);
  }

  .google-reviews-botanical {
    right: -190px;
    opacity: 0.14;
  }
}

@media (max-width: 640px) {
  .google-reviews-section {
    padding: 4.2rem 0;
  }

  .google-reviews-heading {
    margin-bottom: 2rem;
  }

  .google-reviews-glass {
    padding: 0.9rem;
    border-radius: 24px;
  }

  .google-reviews-summary {
    grid-template-columns: 1fr auto;
    gap: 0.9rem;
    padding: 0.2rem 0.15rem 1rem;
  }

  .google-summary-rating {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
  }

  .google-reviews-controls {
    grid-column: 2;
    grid-row: 1;
  }

  .google-review-card {
    flex-basis: 100%;
    min-height: 235px;
  }

  .google-reviews-botanical {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .google-reviews-viewport {
    scroll-behavior: auto;
  }

  .google-review-card,
  .google-reviews-controls button {
    transition: none;
  }
}

/* FAQ Section */

.faq {
  padding: 5.5rem 0;
  background-color: var(--c-bg);
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 14px var(--c-shadow);
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--c-dark);
  cursor: pointer;
}

.faq-icon {
  font-size: 1rem;
  color: var(--c-medium);
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--c-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.8rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.8rem 1.5rem 1.8rem;
}

.faq-answer p {
  color: var(--c-text-secondary);
  font-size: 0.98rem;
  line-height: 1.75;
}

/* Responsive adjustments */

@media (max-width: 992px) {
  .carousel-slide {
    flex: 0 0 calc(50% - 0.75rem);
  }

}



@media (max-width: 600px) {
  .carousel-wrapper {
    padding: 0 1rem;
  }

  .carousel-slide {
    flex: 0 0 100%;
  }

  .carousel-control {
    display: none;
  }

}

/* ==========================================================================

   REDESIGNED SECTIONS — Premium Boutique Aesthetic

   ========================================================================== */

/* Botanical Leaf Watermark (Shared) */

.section-leaf-watermark {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

.leaf-wm-left {
  bottom: 2rem;
  left: -1rem;
}

.leaf-wm-right {
  top: 3rem;
  right: -1rem;
}

/* Title Italic Gold Highlight */

.title-italic-gold {
  font-style: italic;
  color: #a8793b;
  font-weight: 500;
}

.section-subtitle-center {
  font-size: 1.05rem;
  color: var(--c-text-secondary);
  margin-top: 0.3rem;
}

.section-subtitle-center strong {
  color: var(--c-dark);
}

/* Section Tag with Icon */

.section-tag i {
  margin-right: 0.4rem;
  font-size: 0.85rem;
}

/* ---- About Section Redesign ---- */

.about {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 80% 80%, #f6f0e5 0%, var(--c-bg) 60%);
}

.about-img-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-img-box {
  position: relative;
}

/* Rotating Seal */

.about-rotating-seal {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 140px;
  height: 140px;
  z-index: 10;
  animation: sealRotate 20s linear infinite;
}

@keyframes sealRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}

.seal-svg {
  width: 100%;
  height: 100%;
}

/* Experience Badge Redesign */

.about-experience-badge {
  position: absolute;
  bottom: -15px;
  left: 15px;
  background: var(--c-dark);
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(93, 73, 50, 0.25);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 5;
}

.exp-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--c-sand);
}

.about-experience-badge .exp-number {
  font-family: var(--ff-title);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--c-sand);
  display: block;
}

.about-experience-badge .exp-text {
  font-size: 0.68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0.15rem;
  opacity: 0.85;
  display: block;
}

/* Values Row Below Photo */

.about-values-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  text-align: center;
}

.about-value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.about-value-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5ede3;
  color: #a8793b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.about-value-item span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--c-text-secondary);
  line-height: 1.2;
}

/* highlight-gold in about section title */

.about .highlight-gold {
  font-style: normal;
  font-weight: 600;
}

/* ---- Treatment Cards Refinement ---- */

.treatment-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ---- FAQ Refinement ---- */

.faq-item:hover {
  border-color: rgba(196, 168, 130, 0.5);
}

.faq-item.active {
  border-color: #c4a882;
  box-shadow: 0 6px 20px rgba(93, 73, 50, 0.08);
}

.faq-icon {
  color: #a8793b;
}

/* ---- Footer Premium ---- */

.footer {
  background: linear-gradient(180deg, #3b2e20 0%, #2a1f14 100%);
}

.footer-links a:hover {
  color: #c4a882;
  padding-left: 4px;
}

.social-icon:hover {
  background: #c4a882;
}

/* ---- Responsive for New Elements ---- */

@media (max-width: 992px) {

  .about-values-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.3rem;
  }

  .about-rotating-seal {
    width: 110px;
    height: 110px;
    top: -20px;
    left: -20px;
  }

}

@media (max-width: 768px) {

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-rotating-seal {
    width: 100px;
    height: 100px;
    top: -15px;
    left: -15px;
  }

  .about-values-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

}

@media (max-width: 480px) {

  .about-values-row {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* ===========================================================================

   Atendimentos — faithful composition from the supplied reference

   ========================================================================== */

.clinic-carousel-section {
  padding: 4.65rem 0 2.65rem;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.96) 0, rgba(255, 255, 255, 0.38) 36%, transparent 62%),
    linear-gradient(135deg, #fbf8f3 0%, #f8f3ec 54%, #fcfaf6 100%);
  border: 0;
  isolation: isolate;
}

.clinic-carousel-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 8% 55%, rgba(189, 156, 115, 0.09), transparent 24%),
    radial-gradient(ellipse at 94% 78%, rgba(189, 156, 115, 0.1), transparent 24%);
}

.clinic-carousel-section>.container {
  width: 90%;
  max-width: 1200px;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}

.clinic-carousel-section .section-header-center {
  max-width: 680px;
  margin: 0 auto 1.9rem;
}

.clinic-carousel-section .section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 0;
  color: #8a5e22;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 2px;
}

.clinic-carousel-section .tag-svg-icon {
  width: 22px;
  height: 22px;
  margin: 0;
}

.clinic-carousel-section .section-title {
  margin: 0.7rem 0 0;
  color: #3e291b;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: normal;
}

.clinic-carousel-section .section-title::after {
  content: '';
  display: block;
  width: 62px;
  height: 2px;
  margin: 1.2rem auto 1.05rem;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #c58a31 28%, #c58a31 72%, transparent);
}

.clinic-carousel-section .highlight-gold {
  color: #a8793b;
  font-style: italic;
  font-weight: 400;
}

.clinic-carousel-section .section-subtitle-center {
  margin: 0;
  color: #56493f;
  font-size: 1.05rem;
  line-height: 1.5;
}

.clinic-carousel-section .section-subtitle-center strong {
  color: #aa711f;
  font-weight: 700;
}

.clinic-carousel-section .section-leaf-watermark {
  z-index: 1;
  pointer-events: none;
}

.clinic-carousel-section .leaf-wm-left {
  top: 1.35rem;
  bottom: auto;
  left: -3.3rem;
  width: 300px;
  opacity: 0.42;
}

.clinic-carousel-section .leaf-wm-right {
  top: calc(-2.5rem - 20px);
  right: -3.3rem;
  width: 320px;
  opacity: 0.42;
  filter: blur(3px);
  transform: rotate(180deg);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, rgba(0, 0, 0, 0.82) 58%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, #000 35%, rgba(0, 0, 0, 0.82) 58%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.clinic-carousel-section .carousel-wrapper {
  margin: 0;
  padding: 0 3.5rem;
}

.clinic-carousel-section .carousel-track-container {
  padding: 1rem 0.5rem;
  border-radius: var(--radius-lg);
}

.clinic-carousel-section .carousel-track {
  gap: 1.5rem;
}

.clinic-carousel-section .carousel-slide {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 280px;
}

.clinic-carousel-section .treatment-card {
  width: 100%;
  min-height: 0;
  aspect-ratio: auto;
  padding: 0.72rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.96), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(248, 239, 226, 0.42));
  box-shadow: none;
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
}

.clinic-carousel-section .treatment-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 1);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 1), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(248, 239, 226, 0.5));
  box-shadow: none;
}

.clinic-carousel-section .treatment-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.48);
  isolation: isolate;
}

.clinic-carousel-section .treatment-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.48) 0%, transparent 28%, transparent 72%, rgba(255, 255, 255, 0.2) 100%);
}

.clinic-carousel-section .treatment-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.clinic-carousel-section .treatment-card:hover .treatment-visual img {
  transform: scale(1.025);
}

.clinic-carousel-section .treatment-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1.25rem 1rem 0.78rem;
}

.clinic-carousel-section .treatment-title {
  margin: 0;
  color: #412b1d;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: normal;
}

.clinic-carousel-section .treatment-title-line {
  width: 36px;
  height: 2px;
  margin: 0.4rem 0 1rem;
  background: #b7781d;
}

.clinic-carousel-section .treatment-desc {
  max-width: none;
  margin: 0 0 1.5rem;
  color: #4f463e;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

.clinic-carousel-section .treatment-card-footer {
  gap: 0.5rem;
  color: #aa6d18;
  font-size: 0.88rem;
  font-weight: 700;
}

.clinic-carousel-section .treatment-arrow {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.3s ease;
}

.clinic-carousel-section .treatment-card:hover .treatment-arrow {
  transform: translateX(4px);
}

.clinic-carousel-section .carousel-control {
  width: 72px;
  height: 72px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.clinic-carousel-section .carousel-control img {
  width: 72px;
  height: 72px;
  max-width: none;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.clinic-carousel-section .carousel-control:hover {
  border: 0;
  background: transparent;
  transform: translateY(-50%);
}

.clinic-carousel-section .carousel-control:hover img {
  transform: scale(1.06);
  filter: drop-shadow(0 8px 10px rgba(83, 55, 30, 0.12));
}

.clinic-carousel-section .carousel-control.prev-btn {
  left: -38px;
}

.clinic-carousel-section .carousel-control.next-btn {
  right: -38px;
}

.clinic-carousel-section .carousel-dots {
  gap: 0.55rem;
  margin-top: 2.15rem;
}

.clinic-carousel-section .carousel-dot {
  width: 11px;
  height: 11px;
  border: 0;
  background: #e6d8c5;
}

.clinic-carousel-section .carousel-dot.active {
  width: 31px;
  background: linear-gradient(90deg, #c88c31, #e0b35c);
}

@media (max-width: 992px) {
  .clinic-carousel-section>.container {
    width: 90%;
  }

  .clinic-carousel-section .carousel-wrapper {
    padding: 0 3.5rem;
  }

  .clinic-carousel-section .carousel-slide {
    flex-basis: calc(50% - 0.625rem);
  }

  .clinic-carousel-section .treatment-title {
    font-size: 1.55rem;
  }

}

@media (max-width: 700px) {
  .clinic-carousel-section {
    padding: 3.8rem 0 2.4rem;
  }

  .clinic-carousel-section>.container {
    width: 90%;
  }

  .clinic-carousel-section .section-header-center {
    margin-bottom: 1.6rem;
  }

  .clinic-carousel-section .section-tag {
    font-size: 0.78rem;
    letter-spacing: 2px;
  }

  .clinic-carousel-section .tag-svg-icon {
    width: 18px;
    height: 18px;
  }

  .clinic-carousel-section .section-title {
    font-size: 2.1rem;
  }

  .clinic-carousel-section .section-subtitle-center {
    font-size: 1.05rem;
  }

  .clinic-carousel-section .leaf-wm-left {
    width: 190px;
    left: -5.2rem;
    opacity: 0.25;
  }

  .clinic-carousel-section .leaf-wm-right {
    width: 190px;
    right: -5.5rem;
    opacity: 0.24;
  }

  .clinic-carousel-section .carousel-wrapper {
    padding: 0;
  }

  .clinic-carousel-section .carousel-slide {
    flex-basis: 100%;
  }

  .clinic-carousel-section .treatment-card {
    max-width: none;
    min-height: 0;
    margin: 0 auto;
    aspect-ratio: auto;
  }

  .clinic-carousel-section .carousel-control {
    display: none;
  }

}

/* ===========================================================================

   Sobre — composition based on the supplied reference

   ========================================================================== */

.about {
  padding: 3.5rem 0 4rem;
  background: #faf5ef url('../assets/svg/sobre/fundo-secao.svg') center / cover no-repeat;
  isolation: isolate;
}

.about::before {
  content: none;
}

.about .about-foliage {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  user-select: none;
}

.about .about-foliage-right {
  top: -9rem;
  right: -6.5rem;
  width: clamp(150px, 17vw, 250px);
  opacity: 0.46;
  transform: rotate(4deg);
  transform-origin: top right;
}

.about .about-foliage-right-fill {
  top: 1rem;
  right: -5rem;
  width: clamp(165px, 15vw, 220px);
  opacity: 0.34;
  transform: rotate(-7deg) scale(0.88);
  transform-origin: top right;
}

.about .about-foliage-left {
  top: 9rem;
  left: -3.5rem;
  width: clamp(125px, 12vw, 185px);
  opacity: 0.62;
}

.about .about-foliage-bottom {
  bottom: -4rem;
  left: -4rem;
  width: clamp(210px, 24vw, 340px);
  opacity: 0.58;
}

.about .about-end-palm-shadow {
  right: -1rem;
  bottom: -0.5rem;
  width: clamp(250px, 26vw, 380px);
  opacity: 0.42;
  transform: rotate(-3deg);
  transform-origin: bottom center;
  filter: blur(0.2px);
}

.about .about-grid {
  width: min(calc(100% - 4rem), 1220px);
  max-width: 1220px;
  padding: 0;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 4vw, 3.75rem);
  align-items: start;
}

.about .about-img-col {
  position: relative;
  min-width: 0;
  padding-bottom: 118px;
}

.about .about-img-box {
  height: 640px;
  overflow: visible;
  border: 0;
  border-radius: 88px 58px 62px 62px;
  background: #e8dcc9;
  box-shadow: 0 24px 54px rgba(81, 53, 29, 0.14);
  isolation: isolate;
}

.about .about-img-box::before {
  content: none;
}

.about .about-img-box::after {
  content: none;
}

.about .about-img-box>.about-photo {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.9) contrast(0.98) sepia(0.04);
}

.about .about-photo-frame {
  position: absolute;
  inset: 0;
  z-index: 7;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: fill;
  overflow: hidden;
  pointer-events: none;
}

.about .about-sparkle {
  position: absolute;
  z-index: 9;
  width: 29px;
  height: 29px;
  pointer-events: none;
}

.about .about-sparkle-top {
  top: 1.1rem;
  right: 0.2rem;
}

.about .about-sparkle-bottom {
  right: 0.75rem;
  bottom: 1.25rem;
  width: 21px;
  height: 21px;
}

.about .about-rotating-seal {
  top: 2rem;
  left: 2rem;
  width: 118px;
  height: 118px;
  animation: none;
  filter: drop-shadow(0 12px 18px rgba(55, 31, 13, 0.24));
}

.about .about-rotating-seal .seal-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.about .about-profile-panel {
  position: absolute;
  right: 1.35rem;
  bottom: -118px;
  left: 1.35rem;
  z-index: 12;
  overflow: hidden;
  border: 1px solid rgba(225, 176, 93, 0.42);
  border-radius: 25px;
  color: #fffaf2;
  background: #4a3016 url('../assets/svg/sobre/card-estatistica-shell.svg') center / 100% 100% no-repeat;
  box-shadow: 0 22px 42px rgba(65, 37, 16, 0.24);
}

.about .about-experience-badge {
  position: static;
  padding: 1.25rem 1.25rem 1.05rem;
  flex-direction: row;
  align-items: center;
  gap: 0.9rem;
  border-bottom: 1px solid rgba(238, 193, 118, 0.22);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.about .exp-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border: 1px solid rgba(245, 218, 173, 0.72);
  background: #f8ecd7;
  color: #ad7326;
  font-size: 2rem;
}

.about .exp-icon img {
  width: 46px;
  height: 46px;
}

.about .about-experience-badge .exp-number {
  color: #fffaf2;
  font-family: var(--ff-body);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.about .about-experience-badge .exp-text {
  max-width: 245px;
  margin-top: 0.25rem;
  color: #fffaf2;
  font-size: 0.69rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  opacity: 1;
}

.about .about-values-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0.95rem 0.65rem 1rem;
  text-align: center;
}

.about .about-value-item {
  position: relative;
  gap: 0.38rem;
  padding: 0 0.3rem;
}

.about .about-value-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 8%;
  right: 0;
  width: 1px;
  height: 84%;
  background: rgba(245, 218, 173, 0.3);
}

.about .about-value-icon {
  width: 35px;
  height: 35px;
  border-radius: 0;
  background: transparent;
  color: #e8b85f;
  font-size: 1.35rem;
}

.about .about-value-icon img {
  width: 32px;
  height: 32px;
}

.about .about-value-item span {
  color: #fffaf2;
  font-size: 0.56rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.about .about-content {
  min-width: 0;
  max-width: 100%;
  padding-top: 0.5rem;
}

.about .section-tag {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
  color: #67401f;
  letter-spacing: 0.24em;
}

.about .section-tag img {
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.about .section-title {
  margin-bottom: 1rem;
  color: #3e2819;
  font-size: clamp(2.25rem, 3.1vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.about .section-title::after {
  content: '';
  display: block;
  width: 72px;
  height: 2px;
  margin-top: 0.9rem;
  background: url('../assets/svg/sobre/divisor-dourado-curto.svg') left center / 100% 100% no-repeat;
  overflow: hidden;
}

.about .Highlight-lead {
  margin-bottom: 1.1rem;
  color: #332c27;
  font-size: 0.93rem;
  line-height: 1.65;
}

.about .Highlight-lead strong {
  color: #2d231d;
}

.about .formacao-box {
  max-width: 100%;
  margin-top: 0.65rem;
  padding: 1.2rem 1.3rem 1.3rem;
  border: 1px solid rgba(222, 184, 128, 0.42);
  border-left-width: 1px;
  border-radius: 22px;
  background: rgba(255, 251, 246, 0.82) url('../assets/svg/sobre/card-formacao-shell.svg') center / 100% 100% no-repeat;
  box-shadow: 0 14px 32px rgba(87, 53, 25, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.about .formacao-box:hover {
  border-left-color: rgba(222, 184, 128, 0.42);
}

.about .formacao-title {
  gap: 0.7rem;
  margin-bottom: 0.55rem;
  color: #482d1b;
  font-size: 1.42rem;
}

.about .formacao-title-icon {
  display: flex;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f7ead6;
  color: #b97620;
  font-size: 1.1rem;
}

.about .formacao-title-icon img {
  width: 25px;
  height: 25px;
}

.about .formacao-desc {
  margin-bottom: 0.85rem;
  color: #51443a;
  font-size: 0.86rem;
}

.about .formacao-tags {
  max-width: 100%;
  gap: 0.5rem;
}

.about .tag-pill {
  max-width: 100%;
  padding: 0.4rem 0.72rem;
  border-color: rgba(210, 181, 148, 0.55);
  background: #fff url('../assets/svg/sobre/pill-clara.svg') center / 100% 100% no-repeat;
  color: #55371f;
  font-size: 0.71rem;
  overflow-wrap: anywhere;
}

.about .tag-pill img {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
}

.about .tag-pill:nth-child(3) {
  border-color: #62401f;
  background: #4a3016 url('../assets/svg/sobre/pill-escura.svg') center / 100% 100% no-repeat;
  color: #fffaf3;
}

.about .tag-pill:nth-child(3) img {
  filter: brightness(0) saturate(100%) invert(78%) sepia(49%) saturate(532%) hue-rotate(357deg) brightness(95%);
}

@media (max-width: 1100px) {
  .about .about-grid {
    width: calc(100% - 3rem);
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2.25rem;
  }

  .about .about-img-box {
    height: 575px;
  }

  .about .about-profile-panel {
    right: 1rem;
    left: 1rem;
  }

  .about .about-experience-badge {
    padding: 1.05rem 1rem 0.9rem;
  }

  .about .exp-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
  }

  .about .about-experience-badge .exp-number {
    font-size: 1.75rem;
  }

  .about .about-value-item span {
    font-size: 0.57rem;
  }

  .about .section-title {
    font-size: clamp(2.05rem, 3.8vw, 2.65rem);
  }

}

@media (max-width: 820px) {
  .about {
    padding-top: 3.25rem;
  }

  .about .about-grid {
    width: min(calc(100% - 3rem), 580px);
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about .about-img-box {
    height: 590px;
  }

  .about .about-content {
    padding-top: 0;
  }

}

@media (max-width: 560px) {
  .about {
    padding: 2.75rem 0 3.25rem;
  }

  .about .about-foliage {
    opacity: 0.14;
  }

  .about .about-grid {
    width: calc(100% - 1.5rem);
    gap: 2rem;
  }

  .about .about-img-col {
    padding-bottom: 0;
  }

  .about .about-img-box {
    max-width: 100%;
    height: auto;
    border-radius: 54px 34px 36px 36px;
  }

  .about .about-img-box>.about-photo {
    height: 455px;
  }

  .about .about-photo-frame {
    height: 455px;
  }

  .about .about-sparkle-top {
    top: 0.75rem;
    right: 0.15rem;
  }

  .about .about-sparkle-bottom {
    top: 438px;
    right: 0.5rem;
    bottom: auto;
  }

  .about .about-rotating-seal {
    top: 1rem;
    left: 1rem;
    width: 86px;
    height: 86px;
  }

  .about .about-profile-panel {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    max-width: calc(100% - 0.8rem);
    margin: -52px 0.4rem 0;
    border-radius: 20px;
  }

  .about .about-experience-badge {
    gap: 0.65rem;
    padding: 0.9rem 0.8rem;
  }

  .about .exp-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }

  .about .exp-icon img {
    width: 37px;
    height: 37px;
  }

  .about .about-experience-badge .exp-number {
    font-size: 1.55rem;
  }

  .about .about-experience-badge .exp-text {
    font-size: 0.6rem;
    line-height: 1.35;
  }

  .about .about-values-row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 0.7rem;
    padding: 0.75rem 0.5rem 0.85rem;
  }

  .about .about-value-icon,

  .about .about-value-icon img {
    width: 29px;
    height: 29px;
  }

  .about .about-value-item span {
    font-size: 0.52rem;
  }

  .about .about-value-item:nth-child(2)::after {
    display: none;
  }

  .about .section-title {
    font-size: clamp(1.8rem, 8.4vw, 2.05rem);
    line-height: 1.08;
  }

  .about .section-tag {
    gap: 0.4rem;
    font-size: 0.68rem;
    letter-spacing: 0.17em;
  }

  .about .Highlight-lead {
    font-size: 0.88rem;
    line-height: 1.58;
  }

  .about .formacao-title {
    align-items: center;
    gap: 0.55rem;
    font-size: 1.18rem;
  }

  .about .formacao-title-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .about .formacao-title-icon img {
    width: 22px;
    height: 22px;
  }

  .about .formacao-box {
    padding: 1rem;
    border-radius: 20px;
  }

  .about .formacao-desc {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .about .tag-pill {
    padding: 0.36rem 0.62rem;
    font-size: 0.66rem;
    line-height: 1.25;
    white-space: normal;
  }

}

@media (max-width: 380px) {
  .about .about-img-box>.about-photo {
    height: 420px;
  }

  .about .about-photo-frame {
    height: 420px;
  }

  .about .about-sparkle-bottom {
    top: 404px;
  }

  .about .about-profile-panel {
    max-width: calc(100% - 0.5rem);
    margin-right: 0.25rem;
    margin-left: 0.25rem;
  }

}

/* ==========================================================================
   Comprehensive 100% Responsive Design System (UI/UX Pro Max Rules)
   ========================================================================== */

/* Global Prevent Overflow & Touch Fixes */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  position: relative;
}
img,
svg {
  max-width: 100%;
  height: auto;
}

/* Modals Z-Index & Form Input Auto-Zoom Fix */
.modal-backdrop {
  z-index: 25000 !important;
}

.modal-card {
  max-width: 92% !important;
  max-height: 88vh !important;
  overflow-y: auto !important;
  border-radius: 24px !important;
  padding: 2.2rem 1.5rem !important;
}

.modal-close {
  width: 44px !important;
  height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background: rgba(93, 73, 50, 0.08) !important;
}

.form-input {
  font-size: 1rem !important;
  /* Prevents iOS Safari 16px auto-zoom */
}

/* Touch Targets Standard (Min 44px) */
.btn,
.nav-link,
.faq-question,
.carousel-control,
.social-icon,
.modal-close {
  min-height: 44px;
}

/* --- Breakpoint: Laptops & Tablets Landscape (max-width: 1199px) --- */
@media (max-width: 1199px) {
  .container {
    width: 92% !important;
  }

  .hero-left-col {
    padding: 1.5rem 2rem 1.5rem 3vw !important;
  }

  .hero-title-main {
    font-size: clamp(2rem, 3.2vw, 2.8rem) !important;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }
}

/* --- Breakpoint: Tablets Portrait & Laptops Small (max-width: 992px) --- */
@media (max-width: 992px) {
  .header-container {
    height: 75px !important;
  }

  .logo-img {
    height: 42px !important;
  }

  .header-cta-btn {
    display: none !important;
  }

  .mobile-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    font-size: 1.4rem !important;
    color: var(--c-dark) !important;
    border-radius: 50% !important;
    cursor: pointer !important;
  }

  .nav-center {
    position: static !important;
    transform: none !important;
  }

  .nav-menu {
    position: fixed !important;
    top: 75px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: calc(100vh - 75px) !important;
    background: rgba(253, 251, 247, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 2.5rem 1.5rem !important;
    gap: 1.5rem !important;
    transform: translateY(-120%) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 20px 40px rgba(93, 73, 50, 0.15) !important;
    border-bottom: 1px solid var(--c-border) !important;
    overflow-y: auto !important;
    z-index: 9999 !important;
  }

  .nav-menu.active {
    transform: translateY(0) !important;
  }

  .nav-link {
    font-size: 1.15rem !important;
    padding: 0.75rem 1rem !important;
    width: 100% !important;
    text-align: center !important;
    font-weight: 600 !important;
  }

  .mobile-cta-only {
    display: block !important;
    width: 100% !important;
    margin-top: 0.5rem !important;
  }

  .mobile-cta-only .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  /* Hero Section Responsiveness */
  .hero-full {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    padding-top: 95px !important;
    padding-bottom: 2.5rem !important;
  }

  .hero-main-wrapper {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    width: 100% !important;
  }

  .hero-left-col {
    width: 100% !important;
    padding: 1.5rem 1.2rem 2rem !important;
    justify-content: center !important;
    text-align: center !important;
    background: transparent !important;
  }

  .hero-left-inner {
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .hero-tag-pill {
    font-size: 0.72rem !important;
    letter-spacing: 0.8px !important;
    padding: 0.45rem 0.9rem !important;
    max-width: 100% !important;
    text-align: center !important;
    white-space: normal !important;
    line-height: 1.4 !important;
  }

  .hero-title-main {
    font-size: clamp(1.8rem, 5.5vw, 2.5rem) !important;
    text-align: center !important;
  }

  .hero-subtitle-text {
    max-width: 100% !important;
    text-align: center !important;
    font-size: 1rem !important;
  }

  .hero-cta-group {
    justify-content: center !important;
    width: 100% !important;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    width: 100% !important;
    max-width: 360px !important;
    justify-content: center !important;
  }

  .hero-trust-indicator {
    justify-content: center !important;
  }

  .hero-right-col {
    position: relative !important;
    width: 100% !important;
    height: 380px !important;
    min-height: 380px !important;
    top: auto !important;
    bottom: auto !important;
    right: auto !important;
    margin-top: 1.5rem !important;
    border-radius: 24px !important;
    overflow: hidden !important;
  }

  .hero-curve-separator {
    display: none !important;
  }

  .hero-photo-img.bg-photo {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    object-position: center 25% !important;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2.5rem !important;
  }
}

/* --- Breakpoint: Mobile Phones (max-width: 768px) --- */
@media (max-width: 768px) {
  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.2rem) !important;
  }

  .section-tag {
    font-size: 0.72rem !important;
    letter-spacing: 1.5px !important;
  }

  .hero-left-col {
    padding: 1.2rem 0.5rem 1.5rem !important;
  }

  .hero-right-col {
    height: 320px !important;
    min-height: 320px !important;
  }

  .video-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .about-img-box {
    max-width: 100% !important;
    height: auto !important;
  }

  .carousel-wrapper {
    padding: 0 !important;
  }

  .carousel-control {
    display: none !important;
  }

  .carousel-slide {
    flex-basis: 100% !important;
  }
}

/* --- Breakpoint: Small Mobile Phones (max-width: 576px) --- */
@media (max-width: 576px) {
  .container {
    width: 94% !important;
    padding: 0 0.5rem !important;
  }

  .header-container {
    height: 68px !important;
  }

  .logo-img {
    height: 38px !important;
  }

  .hero-full {
    padding-top: 82px !important;
  }

  .hero-tag-pill {
    font-size: 0.65rem !important;
    padding: 0.35rem 0.75rem !important;
    letter-spacing: 0.5px !important;
  }

  .hero-tag-pill .tag-svg-icon {
    width: 15px !important;
    height: 15px !important;
  }

  .hero-title-main {
    font-size: clamp(1.6rem, 7vw, 2.1rem) !important;
    line-height: 1.22 !important;
  }

  .hero-subtitle-text {
    font-size: 0.92rem !important;
    line-height: 1.5 !important;
  }

  .hero-right-col {
    height: 280px !important;
    min-height: 280px !important;
  }

  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 0.8rem !important;
    text-align: center !important;
  }
}

/* --- Breakpoint: Ultra-Small Screens (max-width: 380px) --- */
@media (max-width: 380px) {
  .hero-title-main {
    font-size: 1.5rem !important;
  }

  .btn {
    padding: 0.75rem 1.2rem !important;
    font-size: 0.88rem !important;
  }

  .hero-right-col {
    height: 240px !important;
    min-height: 240px !important;
  }
}

/* Ensure Navbar is 100% Centered on Desktop Screens (> 992px) */
@media (min-width: 993px) {
  .header-container {
    position: relative !important;
  }

  .nav-center {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .nav-menu {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2rem !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }
}


/* ==========================================================================
   Botanical Floating SVG System
   ========================================================================== */

.botanical-element {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  user-select: none;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes floatGentle {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}

@keyframes floatSlight {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(6px) rotate(-1.5deg);
  }
}

/* Hero Section Botanicals */
.hero-botanical-top-left {
  top: 78px;
  left: -72px;
  width: 185px;
  opacity: 0.84;
  animation: floatGentle 7s ease-in-out infinite;
  filter: brightness(1.08) saturate(1.12) drop-shadow(0 5px 14px rgba(137, 84, 26, 0.24));
}

.hero-botanical-shadow-left {
  top: 15%;
  left: -20px;
  width: 260px;
  opacity: 0.22;
  mix-blend-mode: multiply;
}

.hero-botanical-bottom-left {
  bottom: 25px;
  left: 3%;
  width: 110px;
  opacity: 0.5;
  animation: floatSlight 6.5s ease-in-out infinite;
}

.hero-botanical-photo-top-right {
  top: 15px;
  right: 15px;
  width: 110px;
  opacity: 0.75;
  z-index: 5;
  animation: floatGentle 6s ease-in-out infinite 1s;
}

/* FAQ Botanicals */
.faq-botanical-top {
  top: 30px;
  right: 5%;
  width: 110px;
  opacity: 0.45;
  animation: floatSlight 7.5s ease-in-out infinite;
}

.faq-botanical-tree {
  bottom: -30px;
  left: 3%;
  width: 260px;
  opacity: 0.08;
  pointer-events: none;
}

/* Responsive Hide for Mobile to Keep Ultra Clean Layout */
@media (max-width: 992px) {
  .hero-botanical-top-left {
    width: 118px;
    top: 88px;
    left: -62px;
    opacity: 0.68;
  }

  .hero-botanical-shadow-left {
    width: 160px;
  }
.hero-botanical-bottom-left,
.hero-botanical-photo-top-right,
.faq-botanical-top {
    display: none;
  }
}
