/* ============================================
   BEATRIZ PELEGRINI — NUTRICIONISTA
   style.css
   ============================================ */

/* ---------- SELF-HOSTED FONTS ---------- */
@font-face {
  font-family: 'Inter';
  src: url('./assets/fonts/inter-v20-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('./assets/fonts/inter-v20-latin-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('./assets/fonts/inter-v20-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('./assets/fonts/inter-v20-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('./assets/fonts/inter-v20-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('./assets/fonts/inter-v20-latin-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('./assets/fonts/plus-jakarta-sans-v12-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('./assets/fonts/plus-jakarta-sans-v12-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('./assets/fonts/plus-jakarta-sans-v12-latin-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- CSS VARIABLES ---------- */
:root {
  --purple-dark:   #421d4f;
  --purple-2:      #522161;
  --purple-mid:    #9966b2;
  --purple-light:  #f4eff8;
  --purple-nav:    rgba(33, 12, 43, 0.5);
  --gray-text:     #6b646e;
  --gray-dark:     #353236;
  --gray-mid:      #6d6d6d;
  --gray-sub:      #6c656e;
  --gray-icon: #62516e;
  --white:         #ffffff;
  --black:         #1a1a1a;

  --purple-accent: #8a7e91;
  --purple-glow:   #C986E3;
  --pink-accent:   #d66396;
  --gray-border:   #b4b4b4;
  --gray-divider:  #d9d9d9;
  --gray-muted:    #808080;
  --text-dark:     #333333;
  --surface-card:  #fbfafc;
  --whatsapp:      #25d366;

  --container-max: 1680px;
  --container-pad: 120px;

  --radius-sm:  12px;
  --radius-md:  20px;
  --radius-lg:  30px;
  --radius-xl:  33px;
  --radius-btn: 32px;

  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  --transition: 0.3s ease;
}

/* ---------- RESET ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; font-size: 14px; }
body {
  font-family: var(--font-body);
  color: var(--gray-dark);
  background: var(--white);
  overflow-x: hidden;
  margin: 0 auto;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; }

/* ---------- CONTAINER ---------- */
.container {
  /*max-width: calc(var(--container-max) + var(--container-pad) * 2); */
      max-width: 1920px !important;
  margin: 0 auto;
     padding: 30px;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--purple-dark);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  padding: 16px 24px;
  border-radius: var(--radius-btn);
  transition: background var(--transition), transform var(--transition);
  width: 100%;
  justify-content: center;
  text-wrap-mode: nowrap;
}
.btn-primary img { width: 30px; height: 30px; flex-shrink: 0; }
.btn-primary:hover { background: var(--purple-2); transform: translateY(-2px); }
.btn-purple2 { background: var(--purple-2); }
.btn-purple2:hover { background: var(--purple-dark); }

/* ============================================
   SCROLL SMOOTHER
   ============================================ */
#smooth-wrapper {
  overflow: hidden;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
#smooth-content {
  overflow: visible;
  width: 100%;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: relative;
  z-index: 300;
}
.navbar-inner {
  position: relative;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  margin: 0 auto;
  padding-top: 60px;
  height: auto;
  min-height: 120px;
      padding-left: 120px;
    padding-right: 120px;
}

.logo { display: flex; flex-direction: column; gap: 16px; }
.logo-icon { width: 90px; height: 90px; }
.logo-social { height: 24.5px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--purple-nav);
  backdrop-filter: blur(10.2px);
  -webkit-backdrop-filter: blur(10.2px);
  padding: 17px 40px;
  border-radius: 32px;
}
.nav-links a {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  transition: opacity var(--transition);
}
.nav-links a:hover { opacity: 0.75; }

.btn-agendar-nav {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--purple-nav);
  backdrop-filter: blur(10.2px);
  -webkit-backdrop-filter: blur(10.2px);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 24px;
  border-radius: 32px;
  transition: background var(--transition);
  white-space: nowrap;
}
.btn-agendar-nav img { width: 25px; height: 25px; }
.btn-agendar-nav:hover { background: rgba(33, 12, 43, 0.75); }

/* Hamburger button — hidden on desktop */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 54px;
  height: 54px;
  background: var(--purple-accent);
  border-radius: 20px;
  padding: 12px;
  cursor: pointer;
  transition: background var(--transition);
}
.hamburger-btn:hover { background: var(--purple-mid); }
.bar {
  display: block;
  width: 25px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.35s ease, opacity 0.35s ease, width 0.35s ease;
}

/* Hamburger open state */
.hamburger-btn.is-open .bar:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.hamburger-btn.is-open .bar:nth-child(2) {
  opacity: 0;
  width: 0;
}
.hamburger-btn.is-open .bar:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  height: 100dvh;
  background: rgba(33, 12, 43, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 24px;
}
.mobile-nav-link {
  display: block;
  width: 100%;
  text-align: center;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition), transform var(--transition);
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease, color 0.2s ease;
}
.mobile-menu.is-open .mobile-nav-link {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu.is-open .mobile-nav-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.is-open .mobile-nav-link:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu.is-open .mobile-nav-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.is-open .mobile-nav-link:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu.is-open .mobile-nav-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav-link:hover { color: var(--purple-mid); }

.btn-agendar-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
  width: 100%;
  background:var(--white);
  color: var(--purple-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  padding: 16px 24px;
  border-radius: var(--radius-btn);
  transition: background var(--transition), transform var(--transition);
  opacity: 0;
  transform: translateY(-8px);
}
.mobile-menu.is-open .btn-agendar-mobile {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.3s ease 0.30s, opacity 0.3s ease 0.30s, background 0.2s ease;
}
.btn-agendar-mobile img { width: 32px; height: 32px; }
.btn-agendar-mobile:hover { background: var(--purple-2); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  padding-bottom: 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero .navbar { position: relative; z-index: 10; }

.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  /*align-items: center; */
  justify-content: space-between;
  flex: 1;
      max-width: 1920px;
  /* max-width: calc(var(--container-max) + var(--container-pad) * 2); */
  margin: 0 auto;
  padding: 0 var(--container-pad) 0px;
  width: 100%;
  gap: 40px;
  padding-top: 32px;
}

.hero-text {
  flex: 0 0 min(669px, 42%);
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vh, 60px);
      justify-content: center;
}
.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(36px, 3.4vw, 48px);
  color: var(--purple-dark);
  line-height: 1.2;
  letter-spacing: 2px;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.7vw, 24px);
  color: var(--gray-text);
  line-height: 1.2;
  letter-spacing: 0.64px;
}
.hero-sub .highlight {
  font-weight: 600;
  color: var(--purple-2);
}
.btn-hero { font-size: clamp(16px, 1.3vw, 22px); }

.hero-locations {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.location-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--purple-nav);
  backdrop-filter: blur(10.2px);
  -webkit-backdrop-filter: blur(10.2px);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  flex: 1;
  min-width: 200px;
  justify-content: center;
}
.location-badge img { width: 25px; height: 25px; flex-shrink: 0; }
.location-badge span {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  text-align: center;
}

.hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  max-width: 817px;
  overflow: hidden;
}
.hero-nutri-img {
  width: 100%;
  max-width: 817px;
  object-fit: contain;
  object-position: bottom;
  max-height: calc(80vh - 154px);
}

/* ---------- MARQUEE ---------- */
.marquee-bar {
  position: relative;
  z-index: 5;
  background: var(--purple-2);
  height: 81px;
  overflow: hidden;
  flex-shrink: 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-content {
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 0 32px;
  white-space: nowrap;
  height: 81px;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.marquee-item img { width: 25px; height: 25px; object-fit: contain; }

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SERVIÇOS
   ============================================ */
.servicos {
  background: var(--white);
  padding: 60px;
}
.servicos .container { max-width: 100%; }

.section-lead {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 32px;
  color: var(--gray-mid);
  text-align: center;
  line-height: 1.2;
  letter-spacing: 1px;
  padding: 64px 0;
}
.section-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  text-align: center;
  padding: 64px 0;
}
.section-title.purple { color: var(--purple-2); }

/* Serviços cards */
.servicos-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.servico-card {
  border: 2px solid var(--purple-accent);
  background: var(--purple-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.servico-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(66, 29, 79, 0.1);
}
.servico-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.servico-icon {
  background: var(--gray-icon);
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  flex-shrink: 0;
}
.servico-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.servico-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--gray-dark);
  line-height: 1.3;
}
.servico-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--gray-sub);
  line-height: 1.65;
}

/* ============================================
   MÉTODO
   ============================================ */
.metodo {
  padding: 60px;
  overflow: hidden;
}
.metodo .section-lead,
.metodo .section-title { padding-block: 64px; }
.metodo .section-title {     padding: 64px 0; }

.metodo-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: var(--purple-light);
  border-radius: 30px;
  padding: 32px;
}

.metodo-bottom {
  display: flex;
  gap: 33px;
  align-items: center;
}

.metodo-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 0px;
}
.metodo-heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 24px;
  color: var(--gray-dark);
  line-height: 1.2;
}
.metodo-desc {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  color: var(--gray-text);
  line-height: 1.5;
  letter-spacing: 0.48px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.feacture-content{
display: flex;
align-items: center;
gap: 12px;
align-self: stretch;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  flex-flow: column;
}
.feature-icon {
background: var(--gray-icon);
  border-radius: 15px;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon img { width:40px; height: 40px; object-fit: contain; }
.feature-text { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.feacture-content h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  color: var(--gray-dark);
  line-height: 1.2;
  text-align: start;
}
.feature-text p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-text);
  line-height: 1.5;
  letter-spacing: 0.48px;
}
.purple-text { color: var(--purple-dark); font-weight: 700; }
.purple2-text { color: var(--purple-2); }

/* Sidebar image */
.metodo-sidebar {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: fit-content;
}
.metodo-sidebar-img {
  object-fit: fill;
  border-radius: 30px;
  width: 100%;
}
.metodo-sidebar-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  border-radius: 30px;
}
.metodo-sidebar-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
}
.metodo-curved-text {
  width: 343px;
  height: 224px;
}
.metodo-curved-text svg { width: 100%; height: 100%; }

.metodo-stat-badge {
  backdrop-filter: blur(10.2px);
  -webkit-backdrop-filter: blur(10.2px);
  background: rgba(0,0,0,0.4);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  width: 100%;
  letter-spacing: 1.2px;
}

/* ============================================
   RELATOS
   ============================================ */
.relatos {
  background: var(--white);
  padding: 60px;
  overflow: hidden;
  position: relative;
}
.relatos-hearts {
position: absolute;
    /* right: 130px; */
    top: 400px;
    width: 100px;
    height: 100px;
    pointer-events: none;
    z-index: 3;
}
.relatos .section-lead { padding: 36px 0; }
.relatos .section-title { padding: 64px 0; }

.testimonials-wrapper {
  position: relative;
  background: var(--purple-light);
  border-radius: 30px;
  padding: 64px 12px;
  overflow: hidden;
}
.testimonials-heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  color: var(--gray-dark);
  text-align: center;
  line-height: 1.2;
  letter-spacing: 1.2px;
  max-width: 976px;
  margin: 0 auto 48px;
  padding: 0 40px;
}

/* Testimonial rows */
.testimonials-row {
  overflow: hidden;
  width: 100%;
  margin-bottom: 24px;
}
.testimonials-track {
  display: flex;
  gap: 60px;
  width: max-content;
}
.track-left  { animation: scrollLeft  60s linear infinite; }
.track-right { animation: scrollRight 55s linear infinite; }
.track-slow  { animation: scrollLeft  70s linear infinite; }

.antes-depois-card {
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  border: 2px solid var(--gray-text);
}
.antes-depois-card-header {
  background: var(--gray-text);
  padding: 12px 20px;
  text-align: center;
}
.antes-depois-card-header span {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.5px;
}

.testimonial-img {
  border-radius: 30px;
  border: 2px solid var(--gray-border);
  object-fit: cover;
  flex-shrink: 0;
}
.antes-depois-card .testimonial-img {
  border-radius: 0;
  border: none;
  display: block;
}
.testimonial-img.tall  {   width: 600px; height: 550px; }
.testimonial-img.short {   width: 260px;height: 560px;}

@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scrollRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Fade edges */
.testimonials-fade-left,
.testimonials-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  pointer-events: none;
  z-index: 2;
}
.testimonials-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--purple-light) 22%, rgba(244,239,248,0));
}
.testimonials-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--purple-light) 22%, rgba(244,239,248,0));
}

/* ============================================
   SOBRE
   ============================================ */
.sobre {
  background: var(--white);
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.sobre-starry {
    position: absolute;
    width: 100px;
    height: 100px;
    pointer-events: none;
    z-index: 3;
}
.sobre .container { z-index: 2; }
.sobre  { position: relative; }

.sobre-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: var(--purple-light);
  border-radius: 30px;
  padding: 32px;
}

.sobre-bottom {
  display: flex;
  gap: 33px;
  align-items: center;
}

.sobre-sidebar {
  flex: 1;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: fit-content;
}
.sobre-sidebar-img {
  object-fit: fill;
  border-radius: 30px;
}
.sobre-sidebar-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  border-radius: 30px;
}
.sobre-instagram-badge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,252,254,0.9);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 42px;
  border-radius: 33px;
  white-space: nowrap;
  justify-content: center;
}
.sobre-instagram-badge span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 24px;
  color: var(--purple-dark);
}

.sobre-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 32px;
  gap: 48px;
}
.sobre-heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 32px;
  color: var(--gray-dark);
  line-height: 1.2;
}
.sobre-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.sobre-text p {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  color: var(--gray-text);
  line-height: 1.5;
  letter-spacing: 0.64px;
}
.sobre-highlight {
  font-size: 24px !important;
  color: var(--gray-dark) !important;
}
.sobre-highlight .purple-text,
.sobre-highlight { color: var(--purple-dark) !important; }

.sobre-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sobre-stat-card {
      background: var(--white);
    border: 2px solid var(--gray-border);
    border-radius: 16px;
    overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 20px;
  padding: 24px 16px;
  text-align: center;
}

.sobre-stat-number {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 36px;
  color: var(--gray-icon);
  line-height: 1;
}

.sobre-stat-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.3;
}

.credentials-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.credential-icon {
background: var(--gray-icon);
  border-radius: 15px;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.credential-icon img { width: 30px; height: 30px; object-fit: contain; }
.credential-item span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  color: var(--gray-dark);
}

/* ============================================
   PREÇOS
   ============================================ */
.precos {
  padding: 60px;
  overflow: hidden;
}

.precos .section-title { font-size: 32px; }

.precos-grid {
  display: flex;
  gap: 24px;
  align-items: stretch;
  justify-content: center;
  padding: 32px 0;
  position: relative;
  flex-wrap: wrap;
}
.preco-card {
  background: var(--surface-card);
  border: 2px solid var(--gray-border);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1 1 280px;
  max-width: 450px;
  min-width: 0;
  position: relative;
}
.preco-card--featured {
  border-color: var(--purple-mid);
  border-width: 3px;
  max-width: 450px;
  align-self: stretch;
}

.preco-card--featured::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300%;
  height: 130px;
  border-radius: 1320px;
  background: var(--purple-glow);
  filter: blur(150px);
  z-index: -1;
  pointer-events: none;
}

.badge-mais-vendido {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple-mid);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: var(--radius-btn);
  white-space: nowrap;
}

.preco-header { display: flex; flex-direction: column; gap: 12px; }
.preco-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 26px;
  color: var(--black);
}
.preco-name--big { font-size: 40px; }
.preco-duration {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 20px;
  color: var(--pink-accent);
}

.preco-value { display: flex; flex-direction: column; gap: 8px; }
.preco-main {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 36px;
  color: var(--black);
}
.preco-main small {
  font-size: 20px;
  font-weight: 400;
  color: var(--gray-muted);
}
.preco-alt {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--gray-muted);
}

.preco-divider { border: none; border-top: 1px solid var(--gray-divider); }

.preco-features { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.preco-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}
.preco-features li img { width: 24px; height: 24px; flex-shrink: 0; }
.preco-features li span {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark);
}

.btn-preco {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  transition: background var(--transition), transform var(--transition);
  text-align: center;
}
.btn-preco:hover { transform: translateY(-2px); }
.btn-preco-light { background: var(--purple-mid); color: var(--white); }
.btn-preco-light:hover { background: var(--purple-2); }
.btn-preco-dark { background: var(--purple-2); color: var(--white); font-size: 24px; }
.btn-preco-dark:hover { background: var(--purple-dark); }

.precos-recibo {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 32px;
  color: var(--purple-dark);
  margin-top: 16px;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--purple-light);
  border-radius: 80px 80px 0 0;
  padding: 64px;
  overflow: hidden;
}
.faq-inner {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  min-height: 454px;
}
.faq-left {
  flex: 0 0 654px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.faq-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 32px;
  color: var(--purple-2);
  line-height: 1.2;
  letter-spacing: 2px;
}
.faq-sub {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 24px;
  color: var(--gray-sub);
  line-height: 1.2;
  letter-spacing: 1.68px;
}

.faq-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item { background: var(--white); border: 2px solid var(--gray-border); border-radius: 16px; overflow: hidden; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 32px;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(244,239,248,0.5); }
.faq-question span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 20px;
  color: var(--purple-dark);
  flex: 1;
}
.faq-icon {
  display: none;
}
/* Circle chevron icon */
.faq-question::after {
  content: '';
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--purple-dark) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center / 22px no-repeat;
  transition: transform var(--transition), background-color var(--transition);
}
.faq-question[aria-expanded="true"]::after {
  transform: rotate(180deg);
  background-color: var(--purple-2);
}
.faq-question[aria-expanded="true"] span { color: var(--purple-2); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}
.faq-answer.is-open {
  max-height: 800px;
  padding: 0 32px 24px;
}
.faq-answer p {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--gray-text);
  line-height: 1.6;
}

.cta-section {
  background: var(--purple-light);
  padding: 64px;
  overflow: visible;
}
.cta-container {
  background: var(--purple-2);
  border-radius: 33px;
  display: flex;
  overflow: visible; /* allow image to overflow upward */
  position: relative;
}
.cta-text-area {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 32px;
  overflow: hidden;
  border-radius: 33px 0 0 33px;
}
.cta-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
  max-width: 740px;
}
.cta-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 32px;
  color: var(--white);
  line-height: 1.2;
}
.cta-title strong { font-weight: 700; }
.cta-sub {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
  line-height: 1.4;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--white);
  color: var(--purple-2);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 24px;
  padding: 16px 24px;
  border-radius: var(--radius-btn);
  height: 78px;
  transition: background var(--transition), transform var(--transition);
}
.btn-cta img { width: 40px; height: 40px; }
.btn-cta:hover { background: var(--purple-light); transform: translateY(-2px); }

.cta-image-area {
  flex: 0 0 50%;
  position: relative;
  overflow: visible; /* image overflows upward */
  border-radius: 0 33px 33px 0;
}
.cta-vector {
  display: block;
    position: absolute;
    pointer-events: none;
    z-index: 1;
    left: 210px;
    top: -40px;
    width: 0;
}
.cta-vector img { width: 100%; height: 100%; object-fit: contain; }
.cta-nutri-img {
    position: absolute;
    bottom: 0;
    z-index: 2;
    object-fit: contain;
    object-position: bottom;
    max-width: 500px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--purple-light);
  padding: 48px ;
}
.footer-inner { padding: 24px; }
.footer-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 32px;
  color: var(--purple-dark);
  margin-bottom: 32px;
}
.footer-info {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}
.footer-locations {
  display: flex;
  gap: 32px;
  flex: 1;
}
.footer-location {
  display: flex;
  gap: 12px;
}
.footer-location > img { width: 70px; height: 70px; flex-shrink: 0; }
.footer-location p {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  color: var(--gray-sub);
  line-height: 1.5;
  margin-bottom: 4px;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 0 0 713px;
}
.footer-social-item {
  display: flex;
  align-items: center;
  gap: 32px;
}
.footer-social-icon {
  background: var(--purple-dark);
  border-radius: 15px;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-social-icon img { width: 25px; height: 25px; }
.footer-social-item span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 24px;
  color: var(--purple-dark);
  line-height: 1.4;
}

.footer-legal {
  border-top: 1px solid var(--purple-2);
    padding: 0px 48px 0px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-legal span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  color: var(--purple-2);
  padding: 12px;
}


/* ============================================
   TABLET — max-width: 1279px
   ============================================ */
@media (max-width: 1279px) {
  :root {
    --container-pad: 32px;
  }
    .container {
     padding: 12px;
}

  /* Navbar */
  .navbar-inner { height: auto; padding: 20px 32px; }
  .nav-links { display: none; }
  .btn-agendar-nav { display: none; }
  .hamburger-btn { display: flex; }
  .logo-icon { width: 90px; height: 90px; }

  /* Hero */
  .hero { min-height: auto; max-width: none; }
  .hero-bg { content: url('./assets/BG-Hero-Mobile.png');}
  .marquee-bar { max-width: none; width: 100%; }
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    padding-bottom: 0;
            gap: 25px;
  }
  .hero-text {
    flex: none;
    width: 100%;
    gap: 42px;
    
  }
  .hero-title { font-size: 36px; letter-spacing: 1.44px; }
  .hero-sub { font-size: 24px;width: 580px;text-align: left;}
  .btn-hero { font-size: 20px; max-width: 500px; }
  .hero-locations { display: none; }
  .location-badge { min-width: 0; font-size: 12px; }
  .location-badge span { font-size: 12px; }
  .location-badge img { width: 25px; height: 25px; }

  .hero-image-wrapper {
    align-self: center;
    max-width: 417px;
    width: 100%;
  }

  .hero-nutri-img{
       max-height: 417px;
  }
  .marquee-bar { height: 49px; }
  .marquee-content { height: 49px; gap: 64px; }
  .marquee-item img { width: 25px; height: 25px; }

  /* Serviços */
  .servicos { padding: 56px 32px; }
  .section-lead { font-size: 32px; padding: 24px 0; margin-bottom: 24px; }
  .section-title { font-size: 32px; }
  .servicos-cards { grid-template-columns: repeat(3, 1fr); gap: 20px; display: flex;
        flex-flow: column; }
  .servico-title { font-size: 18px; }
  .servico-text { font-size: 14px; }

  /* Método */
  .metodo { padding: 56px 32px; }
  .metodo-container {
    height: auto;
    gap: 32px;
    padding: 42px;
  }
  .metodo-bottom { flex-direction: column; gap: 24px; }

    .metodo-sidebar-img {
max-width: 350px;
        max-height: 350px;
}
  .metodo-content { padding: 16px 0; }
  .metodo-heading { font-size: 24px; }
  .metodo-desc { font-size: 24px; }
  .features-list { gap: 64px; }
  .metodo-sidebar { height: auto; width:auto; align-self: auto; }
  .metodo-stat-badge { font-size: 16px; }

  /* Relatos */
  .relatos { padding: 56px 32px; }
  .testimonial-img.tall { width: 400px;height: 400px;}
  .testimonial-img.short { width: 300px; height: 400px; }
  .testimonials-fade-left { width: 100px; }
  .testimonials-fade-right { width: 100px; }

  /* Sobre */
  .sobre { padding: 32px 32px; }
  .sobre-starry { top: 0; left: 48px; }
  .sobre-container {
    height: auto;
    gap: 32px;
  }

  .sobre-sidebar-img {
        max-width: 350px;
        max-height: 350px;
}
  .sobre-bottom { flex-direction: column; gap: 24px; }
  .sobre-sidebar { flex: none; height: auto; width: 100%; display: flex;
        justify-content: center;}
  .sobre-instagram-badge span { font-size: 20px; }
  .sobre-content { flex: none; width: 100%; padding: 32px; gap: 64px; }
  .sobre-heading { font-size: 40px; text-align: center;  }
  .sobre-text p { font-size: 24px; text-align: center; }
  .sobre-highlight { font-size: 36px !important; }

  /* Preços */
  .precos { padding: 32px; }
  .precos-grid {
    flex-direction: column;
    align-items: center;
    gap: 36px;
    padding: 32px 0;
  }
  .preco-card { width: 100%; max-width: 480px; flex: none; }
  .preco-card--featured { width: 100%; max-width: 480px; flex: none; align-self: center; }
  .precos-recibo { font-size: 32px; }

  /* FAQ */
  .faq { padding: 64px 32px; border-radius: 80px 80px 0 0; }
  .faq-inner { flex-direction: column; gap: 64px; min-height: auto; }
  .faq-left { flex: none; width: 100%; align-items: center;}
  .faq-title { font-size: 32px; text-align: center;}
  .faq-sub { font-size: 32px; }
  .faq-question span { font-size: 24px; }

  /* CTA */
  .cta-section { padding: 24px 32px; }
  .cta-container {
    flex-direction: column;
    height: auto;
    min-height: auto;
    flex-flow: column-reverse;
  }
  .cta-text-area { padding: 32px; flex: none; border-radius: 33px 33px 0 0; }
  .cta-content { gap: 64px; padding: 32px; max-width: 100%; }
  .cta-title { font-size: 40px; text-align: center; }
  .cta-sub { font-size: 32px; text-align: center; }
  .cta-image-area { flex: none; height: 500px; border-radius: 0 0 33px 33px; overflow: hidden; 
  display: flex; justify-content: center;
  }
  .cta-nutri-img { height: 100%; width: auto; }
.cta-vector{
    top: 0;
    width: 350px;
}
  /* Footer */
  .footer { padding: 24px 32px 0; }
  .footer-info { flex-direction: column; gap: 32px; }
  .footer-social { flex: none; width: 100%; }
.footer-locations

 {

    flex-flow: column;
 }

  .footer-location{align-items: flex-start;}
  .footer-location p { font-size: 12px; }
  .footer-social-item span { font-size: 24px; }
  .footer-legal { padding: 12px 32px; }
}


/* ============================================
   MOBILE — max-width: 767px
   ============================================ */
@media (max-width: 767px) {
  :root {
    --container-pad: 24px;
  }


  /* Navbar */
  .navbar-inner { padding: 24px; }
  .logo-icon { width: 45px; height: 45px; }
  .logo-social { width: 120px; }

  /* Hero */

  .hero-content { padding: 0 24px 0px;
        gap: 12px; }
  .hero-text { gap: 32px;align-items: flex-start;text-align: left; padding-top:40px;}
  .hero-title { font-size: 32px; letter-spacing: 1.28px; }
  .hero-sub { font-size: 20px; width: 100%; max-width: 275px; }
  .btn-hero { font-size: 16px; gap: 12px; padding: 12px; }
  .btn-hero img { width: 25px; height: 25px; }
  .hero-locations { flex-direction: column; gap: 12px; }
  .location-badge { min-width: 0; width: 100%; }
  .hero-image-wrapper { max-width: 312px; align-self: center; width: 100%; }
  .hero-nutri-img { max-height: 330px; width: 100%; }

  .marquee-content { gap: 32px; }

.section-lead{ padding-block: 24px !important }

  /* Serviços */
  .servicos { padding: 12px; }
  .section-lead { font-size: 20px; }
  .section-title { font-size: 20px; letter-spacing: 1.2px; padding: 24px 0 !important; }
  .servicos-cards { grid-template-columns: 1fr; gap: 0; display: flex;
        flex-flow: column; }
  .servico-card {
    padding: 28px 24px;
    gap: 16px;
    position: sticky;
    top: 16px;
    margin-bottom: 16px;
  }
  .servico-card:nth-child(1) { z-index: 1; top: 16px; }
  .servico-card:nth-child(2) { z-index: 2; top: 32px; }
  .servico-card:nth-child(3) { z-index: 3; top: 48px; }
  .servico-title { font-size: 18px; }
  .servico-text { font-size: 14px; }

  /* Método */
  .metodo { padding: 0 13px; }
  .metodo-container { padding: 24px; gap: 24px; height: auto; text-align: center; }
  .metodo-bottom { flex-direction: column; gap: 24px; }
  .metodo-content { padding: 0; }
  .metodo-heading { font-size: 20px; margin-top: 24px;}
  .metodo-desc { font-size: 20px; }
  .feature-text{     text-align: left;
  }
  .feacture-content h3 { font-size: 20px; }
  .feature-text p { font-size: 16px; }
  .btn-primary { font-size: 14px; gap: 12px; padding: 12px; }
  .btn-primary img { width: 25px; height: 25px; }
  .metodo-sidebar { height: auto; }
  .metodo-stat-badge { font-size: 12px; }

  /* Relatos */
  .relatos { padding: 0px 12px; }
  .relatos-hearts {    top: 310px;
    width: 80px;
    height: 80px;}
  .testimonials-heading { font-size: 20px; letter-spacing: 0.72px; }
  .testimonial-img.tall  { width: 400px;height: 400px; }
  .testimonial-img.short {  width: 240px;height: 500px;  }
  .testimonials-track { gap: 24px; }
  .testimonials-fade-left { width: 40px; }
  .testimonials-fade-right { width: 40px; }

  /* Sobre */
  .sobre { padding: 0 24px; }
  .sobre-starry { width: 80px;
        height: 80px;
        top: 130px;
        left: 28px; }
  .sobre-container { padding: 12px; gap: 24px; height: auto; }
  .sobre-bottom { flex-direction: column; gap: 24px; }
  .sobre-sidebar { height: auto; }
  .sobre-instagram-badge { padding: 12px 24px; font-size: 16px; }
  .sobre-instagram-badge span { font-size: 16px; }
  .sobre-instagram-badge img { width: 25px; height: 25px; }
  .sobre-stats { display: flex; flex-direction: column; gap: 12px; }
  .sobre-content { padding: 12px 12px 32px; gap: 36px; }
  .sobre-heading { font-size: 20px; margin-top: 24px; }
  .sobre-text p { font-size: 16px; }
  .sobre-highlight { font-size: 20px !important; }
  .credential-item span { font-size: 16px; }

  /* Preços */
  .precos { padding: 32px 12px; }
  .precos .section-lead { font-size: 20px; }
  .precos .section-title { font-size: 20px; padding: 12px; }
  .precos-grid { gap:40px; padding: 12px 0; }
  .preco-card { width: 100%; }
  .preco-card--featured { width: 100%; margin-top: 20px; }
  .preco-main { font-size: 32px; }
  .preco-name--big { font-size: 32px; }
  .precos-recibo { font-size: 24px; }
  .btn-preco-dark{ font-size: 16px;}

  /* FAQ */
  .faq { padding: 12px 12px; }
  .faq-inner { gap: 32px; }
  .faq-title { font-size: 24px; letter-spacing: 1.2px; text-align: center;}
  .faq-sub { font-size: 20px; letter-spacing: 1px; text-align: center; width: 90%;}
  .faq-question span { font-size: 16px; }
  .faq-answer p { font-size: 16px; }
  .faq-left{
    align-items: center;
    margin-top: 24px;
  }

  /* CTA */
  .cta-section { padding: 12px; }
  .cta-container { min-height: auto; flex-flow: column-reverse;}
  .cta-content { gap: 24px; padding: 24px; }
  .cta-title { font-size: 24px; text-align: center; }
  .cta-sub { font-size: 20px; text-align: center; }
  .btn-cta { font-size: 16px; height: 49px; gap: 12px; }
  .btn-cta img { width: 25px; height: 25px; }
  .cta-image-area { align-items: center;
    display: flex;
    justify-content: flex-start;}
  .cta-nutri-img { height: 100%; width: auto; }

  /* Footer */
  .footer { padding: 24px 12px 0; }
  .footer-title { font-size: 24px; text-align: left; }
  .footer-location { gap: 24px; align-items: flex-start;}
  .footer-location > img { width: 50px; height: 50px; }
  .footer-location p { font-size: 12px; }

.footer-locations {
  flex-direction: column;
}
  .footer-social-icon { width: 50px; height: 50px; }
  .footer-social-icon img { width: 30px; height: 30px; }
  .footer-social-item span { font-size: 20px; }
  .footer-social-item { gap: 12px; }
  .footer-legal { flex-direction: column; height: auto; padding: 16px 24px; gap: 4px; }
  .footer-legal span { font-size: 10px; }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .marquee-track,
  .testimonials-track { animation: none; }
  * { transition-duration: 0.01ms !important; }
}

.whatsapp-float {
  display: none;
}

/* @media (max-width: 1279px) { */
  .whatsapp-float {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--whatsapp);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .whatsapp-float:hover,
  .whatsapp-float:focus {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }
/* } */