/* ============================================================
   DRA. PRISCILLA MINIOLI — MAIN STYLESHEET
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --rose:       #C9A4A0;
  --rose-dark:  #A87D79;
  --rose-light: #EDD8D5;
  --cream:      #FAF6F2;
  --warm-white: #FDFAF7;
  --charcoal:   #2C2422;
  --mid:        #6B5350;
  --light-text: #9C837F;
  --gold:       #C8A96A;
  --gold-light: #E8D5A8;
  --dark-bg:    #1C1715;
  --font-serif: 'Poppins', Georgia, serif;
  --font-sans:  'Poppins', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 2px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ===== UTILITY ===== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 16px;
}

/* ===== PATTERNS ===== */
/* Floral dot pattern — used in cream sections */
.pattern-dots {
  position: relative;
}
.pattern-dots::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(168,125,121,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
.pattern-dots > * { position: relative; z-index: 1; }

/* Diagonal line pattern — used in dark sections */
.pattern-lines {
  position: relative;
}
.pattern-lines::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 12px,
    rgba(201,164,160,0.04) 12px,
    rgba(201,164,160,0.04) 13px
  );
  pointer-events: none;
  z-index: 0;
}
.pattern-lines > * { position: relative; z-index: 1; }

/* Soft botanical SVG watermark — hero accent */
.pattern-botanical {
  position: relative;
  overflow: hidden;
}
.pattern-botanical::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 420px;
  height: 420px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='90' fill='none' stroke='rgba(201,164,160,0.08)' stroke-width='1'/%3E%3Ccircle cx='100' cy='100' r='70' fill='none' stroke='rgba(201,164,160,0.06)' stroke-width='1'/%3E%3Ccircle cx='100' cy='100' r='50' fill='none' stroke='rgba(201,164,160,0.05)' stroke-width='1'/%3E%3Cpath d='M100 10 Q130 55 100 100 Q70 55 100 10Z' fill='rgba(201,164,160,0.05)'/%3E%3Cpath d='M190 100 Q145 130 100 100 Q145 70 190 100Z' fill='rgba(201,164,160,0.05)'/%3E%3Cpath d='M100 190 Q70 145 100 100 Q130 145 100 190Z' fill='rgba(201,164,160,0.05)'/%3E%3Cpath d='M10 100 Q55 70 100 100 Q55 130 10 100Z' fill='rgba(201,164,160,0.05)'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* Lace / mesh pattern for white sections */
.pattern-mesh {
  position: relative;
}
.pattern-mesh::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168,125,121,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,125,121,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}
.pattern-mesh > * { position: relative; z-index: 1; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(250, 246, 242, 0.97);
  backdrop-filter: blur(8px);
  padding: 12px 0;
  box-shadow: 0 1px 20px rgba(44,36,34,0.08);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.5px;
  transition: color var(--transition);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  max-height: 64px;
  text-decoration: none;
}
.navbar-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.navbar-logo-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--cream);
  transition: color var(--transition);
}
.navbar.scrolled .navbar-logo-name { color: var(--charcoal); }
.navbar-logo-sub {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--rose-light);
  margin-top: 3px;
  transition: color var(--transition);
}
.navbar.scrolled .navbar-logo-sub { color: var(--light-text); }

/* Logo imagem — WP injeta width/height inline, por isso usamos max-height e height:auto */
.navbar-logo img,
.navbar-logo .custom-logo,
.navbar-logo .custom-logo-link img {
  display: block !important;
  height: auto !important;
  width: auto !important;
  max-height: 52px !important;
  max-width: 220px !important;
  object-fit: contain !important;
}

/* Remove qualquer wrapper que o WP adiciona ao redor da imagem */
.navbar-logo .custom-logo-link {
  display: flex;
  align-items: center;
  line-height: 0;
}
/* Legacy span fallback — hidden now */

/* ===== NAV MENU ===== */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.navbar-menu li {
  white-space: nowrap;
}
.navbar-menu li a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rose-dark);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 3px;
}
.navbar-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose-light);
  transition: width var(--transition);
}
.navbar-menu li a:hover { color: var(--charcoal); }
.navbar-menu li a:hover::after { width: 100%; }
.navbar.scrolled .navbar-menu li a { color: var(--mid); }
.navbar.scrolled .navbar-menu li a::after { background: var(--rose-dark); }
.navbar.scrolled .navbar-menu li a:hover { color: var(--charcoal); }

/* Hamburger */
.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.navbar-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: all var(--transition);
}
.navbar.scrolled .navbar-hamburger span { background: var(--charcoal); }
.navbar-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navbar-hamburger.open span:nth-child(2) { opacity: 0; }
.navbar-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid var(--rose-dark);
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all var(--transition);
  flex-shrink: 0;
}
.navbar.scrolled .navbar-cta { border-color: var(--rose-dark); color: var(--rose-dark); }
.navbar-cta:hover { background: var(--rose-dark); border-color: var(--rose-dark); color: #fff !important; }

/* Mobile menu */
.navbar-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  box-sizing: border-box;
  background: var(--warm-white);
  padding: 80px 24px 40px;
  z-index: 99;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 40px rgba(44,36,34,0.12);
}
.navbar-mobile.open { transform: translateY(0); }
.navbar-mobile ul { list-style: none; }
.navbar-mobile ul li { border-bottom: 1px solid var(--rose-light); }
.navbar-mobile ul li a {
  display: block;
  padding: 18px 0;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
}
.navbar-mobile .mobile-cta {
  margin-top: 28px;
  display: block;
  text-align: center;
  padding: 16px;
  background: var(--rose-dark);
  color: #fff;
  border-radius: 50px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
  background: #f3f1ec;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg-image, url(''));
  background-size: cover;
  background-position: left center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  display: none;
}
/* Subtle decorative rings on hero */
.hero-rings {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 360px;
  height: 360px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.25;
}
.hero-rings circle { fill: none; stroke: rgba(237,216,213,0.4); }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  width: 100%;
}
.hero-content {
  text-align: center;
}
.hero-photo-col {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
}
.hero-photo-frame {
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid rgba(201,164,160,0.45);
  border-radius: var(--radius);
  pointer-events: none;
  z-index: 0;
}
.hero-doctor-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: var(--radius);
  border: 1px solid rgba(201,164,160,0.5);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s 0.6s forwards;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  text-align: center;
}
.hero-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--rose-dark);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--rose); }
.hero-subtitle {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--mid);
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.9s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light-text);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--rose), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--rose-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid var(--rose-dark);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary:hover {
  background: var(--rose);
  border-color: var(--rose);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(168,125,121,0.4);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1.5px solid var(--rose-dark);
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--rose-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168,125,121,0.3);
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #25D366;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid #25D366;
  transition: all var(--transition);
}
.btn-whatsapp:hover {
  background: #1db954;
  border-color: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.35);
}
/* Variante rosa para seção de contato */
.btn-whatsapp-rose {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--rose-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid var(--rose-dark);
  transition: all var(--transition);
}
.btn-whatsapp-rose:hover {
  background: var(--rose);
  border-color: var(--rose);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(168,125,121,0.35);
}
.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: transparent;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1.5px solid var(--charcoal);
  transition: all var(--transition);
}
.btn-instagram:hover { background: var(--charcoal); color: #fff; transform: translateY(-2px); }

/* ===== INTRO STRIP ===== */
.intro-strip {
  background: var(--dark-bg);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
}
.intro-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 80px,
    rgba(201,164,160,0.04) 80px,
    rgba(201,164,160,0.04) 81px
  );
  pointer-events: none;
}
.intro-strip-inner {
  display: flex;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  letter-spacing: 0.5px;
}
.strip-item svg { opacity: 0.6; flex-shrink: 0; }
.strip-item-link {
  text-decoration: none;
  transition: color 0.2s;
}
.strip-item-link:hover {
  color: rgba(255,255,255,0.95);
}
.strip-item-link:hover svg { opacity: 1; }

/* ===== SERVICES ===== */
.services {
  padding: 120px 0;
  background: var(--cream);
}
.services-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 72px;
}
.services-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.services-title em { font-style: italic; color: var(--rose-dark); }
.services-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--mid);
  font-weight: 300;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.service-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(201,164,160,0.18);
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: 0 16px 48px rgba(44,36,34,0.10);
  transform: translateY(-4px);
}
.service-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 36px;
  min-height: auto;
}
.service-card:nth-child(even) .service-card-inner { direction: ltr; }
.service-card:nth-child(even) .service-card-inner > * { direction: ltr; }
.service-icon {
  width: 64px;
  height: 64px;
  background: var(--rose-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.service-icon svg { color: var(--rose-dark); }
.service-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  width: 100%;
}
/* Subtle corner ornament on service body */
.service-body::after {
  content: '';
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-right: 1px solid rgba(201,164,160,0.25);
  border-bottom: 1px solid rgba(201,164,160,0.25);
  pointer-events: none;
}
.service-number {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 300;
  color: var(--rose-light);
  line-height: 1;
  margin-bottom: 16px;
}
.service-name {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 16px;
}
.service-text {
  font-size: 14px;
  line-height: 1.85;
  color: var(--mid);
  font-weight: 300;
}
.service-divider { width: 40px; height: 1px; background: var(--rose); margin: 20px auto; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 120px 0;
  background: #fff;
}
.testimonials-header { text-align: center; margin-bottom: 64px; }
.testimonials-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 300;
  color: var(--charcoal);
}
.testimonials-title em { font-style: italic; color: var(--rose-dark); }
.testimonials-subtitle { font-size: 15px; color: var(--light-text); margin-top: 12px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.review-card {
  background: var(--cream);
  padding: 36px 32px;
  border-radius: var(--radius);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(44,36,34,0.08); }
.review-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.star { color: var(--gold); font-size: 16px; }
.review-text {
  font-size: 14px;
  line-height: 1.85;
  color: var(--mid);
  font-weight: 300;
  margin-bottom: 24px;
  font-style: italic;
}
.review-text::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--rose-light);
  line-height: 0;
  vertical-align: -18px;
  margin-right: 4px;
}
.review-author { font-size: 13px; font-weight: 500; color: var(--charcoal); letter-spacing: 0.5px; }
.review-badge { position: absolute; top: 20px; right: 20px; width: 28px; height: 28px; }
.reviews-cta { text-align: center; }

/* ===== REJUVENESCIMENTO CARD — PREMIUM ===== */
.rejuv-card {
  max-width: 100%;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #a87c79 0%, #b88e8b 40%, #c9a4a1 75%, #d4b5b3 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(168,124,121,0.28);
  transition: transform var(--transition), box-shadow var(--transition);
}
.rejuv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 80%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 20%, rgba(255,255,255,0.10) 0%, transparent 45%);
  pointer-events: none;
}
.rejuv-card::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  pointer-events: none;
}
.rejuv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(168,124,121,0.35);
}
.rejuv-card-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
  z-index: 1;
}
.rejuv-left {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 280px;
  flex-shrink: 0;
  position: relative;
}
.rejuv-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,0,0,0.12);
  color: #1a1a1a;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(0,0,0,0.2);
  margin-bottom: 20px;
  width: fit-content;
}
.rejuv-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.rejuv-platform {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(0,0,0,0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}
.rejuv-number {
  font-family: var(--font-serif);
  font-size: 90px;
  font-weight: 300;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  position: absolute;
  bottom: 16px;
  left: 36px;
  pointer-events: none;
  user-select: none;
}
.rejuv-divider-v {
  width: 1px;
  background: rgba(0,0,0,0.15);
  align-self: stretch;
  flex-shrink: 0;
}
.rejuv-right {
  padding: 48px 48px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rejuv-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  margin-bottom: 20px;
}
.rejuv-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rejuv-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  color: rgba(0,0,0,0.82);
  line-height: 1.4;
}
.rejuv-list li svg {
  flex-shrink: 0;
  color: rgba(0,0,0,0.55);
  background: rgba(0,0,0,0.1);
  border-radius: 50%;
  padding: 3px;
  width: 22px;
  height: 22px;
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: var(--dark-bg);
}
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-img-main { width: 100%; border-radius: var(--radius); object-fit: cover; height: 600px; }
.about-img-accent {
  position: absolute;
  bottom: -32px; right: -32px;
  width: 200px; height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 4px solid var(--dark-bg);
}
.about-frame {
  position: absolute;
  top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 1px solid rgba(201,164,160,0.2);
  border-radius: var(--radius);
  pointer-events: none;
}
.about-content { color: #fff; }
.about-content .section-label { color: var(--rose); }
.about-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
}
.about-title em { font-style: italic; color: var(--rose); }
.about-text { font-size: 15px; line-height: 1.9; color: rgba(255,255,255,0.65); font-weight: 300; margin-bottom: 16px; }
.about-highlights { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 40px; }
.about-tag {
  padding: 8px 18px;
  border: 1px solid rgba(201,164,160,0.3);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 400;
  color: var(--rose-light);
  letter-spacing: 0.5px;
}

/* ===== CONTACT ===== */
.contact { padding: 120px 0; background: var(--cream); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact-img { position: relative; border-radius: var(--radius); overflow: hidden; height: 640px; }
.contact-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.contact-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(28,23,21,0.4) 100%);
}
.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.contact-title em { font-style: italic; color: var(--rose-dark); }
.contact-text { font-size: 15px; line-height: 1.8; color: var(--mid); font-weight: 300; margin-bottom: 40px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding: 18px 24px;
  background: #fff;
  border-radius: var(--radius);
  transition: box-shadow var(--transition);
}
.contact-item:hover { box-shadow: 0 4px 20px rgba(44,36,34,0.06); }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--rose-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { color: var(--rose-dark); }
.contact-item-label { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--light-text); margin-bottom: 3px; }
.contact-item-value { font-size: 15px; font-weight: 500; color: var(--charcoal); }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

/* ===== FOOTER ===== */
.footer { background: var(--rose-light); padding: 48px 0; text-align: center; }
.footer-logo { font-family: var(--font-serif); font-size: 28px; font-weight: 300; color: var(--charcoal); margin-bottom: 16px; display: flex; justify-content: center; align-items: center; }
.footer-logo img,
.footer-logo .custom-logo,
.footer-logo .custom-logo-link img {
  display: block !important;
  height: auto !important;
  width: auto !important;
  max-height: 64px !important;
  max-width: 260px !important;
  object-fit: contain !important;
}
.footer-logo .custom-logo-link { display: flex; align-items: center; line-height: 0; }
.footer-tagline { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--rose); margin-bottom: 24px; }
.footer-links { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-bottom: 32px; }
.footer-links a { font-size: 12px; color: var(--mid); letter-spacing: 1px; transition: color var(--transition); }
.footer-links a:hover { color: var(--rose-dark); }
.footer-copy { font-size: 12px; color: var(--mid); }
.footer-divider { width: 1px; height: 40px; background: rgba(168,125,121,0.3); margin: 0 auto 32px; }

/* ===== FLOATING CTA ===== */
.floating-cta { position: fixed; bottom: 28px; right: 28px; z-index: 99; }
.floating-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all var(--transition);
  cursor: pointer;
}
.floating-btn:hover { transform: scale(1.1); }
.floating-wa { background: #25D366; color: #fff; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */

/* Prevent ALL horizontal overflow globally */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 1000px) {
  .navbar-menu { display: none; }
  .navbar-hamburger { display: flex; }
  .navbar-mobile { display: block; }
  /* Hero padding-top to avoid fixed navbar overlap on notebook */
  .hero { padding-top: 20px; }
}

@media (max-width: 900px) {
  /* Hero padding-top to prevent navbar overlap on tablet/notebook */
  .hero { padding-top: 20px; }

  /* Grids */
  .services-grid { grid-template-columns: 1fr; }
  .service-card-inner { grid-template-columns: 1fr; min-height: auto; }
  .service-card:nth-child(even) .service-card-inner { direction: ltr; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr; }

  /* Square service images — no face cropping */
  .service-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    overflow: hidden;
  }
  .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  /* About image */
  .about-img-accent { display: none; }
  .about-img-main { height: 360px; }
  .about-frame { display: none; }

  /* Contact image */
  .contact-img { height: 280px; }

  /* Rejuv card responsive */
  .rejuv-card-inner { flex-direction: column; }
  .rejuv-left { padding: 36px 28px 24px; min-width: unset; }
  .rejuv-right { padding: 0 28px 36px; }
  .rejuv-divider-v { display: none; }
  .rejuv-number { display: none; }

  /* About tags: one per line */
  .about-highlights { flex-direction: column; align-items: stretch; gap: 8px; }
  .about-tag { width: 100%; text-align: center; box-sizing: border-box; }

  /* Intro strip: prevent overflow, wrap instead of scroll */
  .intro-strip-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 0 20px;
    overflow: visible;
  }
  .strip-item { flex: 0 1 calc(50% - 16px); min-width: 0; }

  /* Sections padding */
  .services { padding: 80px 0; }
  .testimonials { padding: 80px 0; }
  .about { padding: 80px 0; }
  .contact { padding: 80px 0; }
}

@media (max-width: 600px) {
  /* Hero */
  .hero { padding-bottom: 60px; padding-top: 140px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-photo-col { order: -1; }
  .hero-photo-wrap { max-width: 280px; margin: 0 auto; }
  .hero-photo-frame { display: none; }
  .hero-title {
    font-size: 40px;
    max-width: 100%;
    text-align: center;
  }
  .hero-subtitle { font-size: 15px; text-align: center; }
  .hero-tag { display: block; text-align: center; }
  .hero-contact-strip { justify-content: center; }
  .hero-actions { flex-direction: column; gap: 12px; align-items: center; }
  .hero-content { text-align: center; }
  .hero-scroll { display: none; }
  /* Rings — hide on mobile to avoid overflow */
  .hero-rings { display: none; }

  /* Navbar — logo + menu na mesma linha, botão CTA abaixo */
  .navbar .container {
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 16px;
  }
  .navbar-logo {
    font-size: 18px;
    flex: 1;
  }
  .navbar-logo img,
  .navbar-logo .custom-logo { height: auto; max-height: 44px; max-width: 160px; width: auto; }
  .navbar-logo span { display: none; }
  .navbar-menu { order: 2; flex: 1; justify-content: flex-end; }
  .navbar-hamburger { order: 3; }
  .navbar-cta {
    order: 4;
    width: 100%;
    justify-content: center;
    padding: 8px 14px;
    font-size: 11px;
    letter-spacing: 1px;
    text-align: center;
  }

  /* Buttons full width */
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; box-sizing: border-box; }
  .btn-whatsapp, .btn-instagram { width: 100%; justify-content: center; box-sizing: border-box; }
  .contact-actions { flex-direction: column; gap: 12px; }

  /* Container padding tighter */
  .container { padding: 0 16px; }

  /* Intro strip: single column */
  .intro-strip-inner { flex-direction: column; align-items: flex-start; gap: 12px; padding: 0 16px; }
  .strip-item { flex: none; width: 100%; }

  /* Service body */
  .service-body { padding: 28px 20px; }
  .service-number { font-size: 48px; }
  .service-name { font-size: 22px; }

  /* Review card */
  .review-card { padding: 28px 20px; }

  /* About section — imagem no tamanho original */
  .about { padding: 64px 0; }
  .about-img-main { height: auto; max-height: none; width: 100%; object-fit: cover; }
  .about-title { font-size: 36px; }

  /* Contact section — imagem no tamanho original */
  .contact { padding: 64px 0; }
  .contact-img { height: auto; max-height: none; width: 100%; object-fit: cover; }
  .contact-item { padding: 14px 16px; }

  /* Footer */
  .footer-links { gap: 16px; }

  /* Sections headings */
  .services-header,
  .testimonials-header { margin-bottom: 40px; }
}

/* ===== WORDPRESS ADMIN BAR FIX ===== */
.admin-bar .navbar { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .navbar { top: 46px; }
}

/* ===== HERO CONTACT STRIP ===== */
.hero-contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 20px 0 28px;
  justify-content: center;
}
.hero-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--rose-dark);
  letter-spacing: 0.5px;
  transition: color var(--transition);
  text-decoration: none;
}
.hero-contact-item:hover { color: var(--charcoal); }
.hero-contact-item svg { flex-shrink: 0; opacity: 0.85; }
.hero-contact-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-contact-group-divider {
  width: 1px;
  background: var(--rose);
  opacity: 0.3;
  align-self: stretch;
  margin: 0 8px;
}

/* ===== ABOUT — PHOTO + NAME ===== */
.about-photo-name-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.about-photo-small {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rose);
  flex-shrink: 0;
  background: var(--rose-light);
}
.about-title {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 0;
}
.about-title em { font-style: italic; color: var(--rose); }

/* ===== ABOUT — EXPERIENCE BADGE ===== */
.about-experience-badge {
  display: block;
  background: var(--rose-light);
  color: var(--rose-dark);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 12px;
  margin-bottom: 22px;
  text-align: center;
  line-height: 1.5;
  border: 1px solid rgba(201,164,160,0.35);
}

/* ===== ABOUT — CURRICULUM ===== */
.about-curriculum {
  margin: 18px 0 8px;
}
.about-curriculum-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 10px;
}
.about-curriculum-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-curriculum-list li {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--mid);
  padding-left: 16px;
  position: relative;
}
.about-curriculum-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--rose);
  font-size: 12px;
}

/* ===== NAVBAR CTA — wider text ===== */
.navbar-cta {
  font-size: 13px;
  white-space: nowrap;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
  .hero-contact-strip {
    gap: 10px 16px;
  }
  .hero-contact-item {
    font-size: 12px;
  }
  .hero-contact-group-divider {
    width: 100%;
    height: 1px;
    margin: 2px 0;
  }
  .about-photo-name-wrap {
    flex-direction: row;
    align-items: center;
  }
  .about-photo-small {
    width: 60px;
    height: 60px;
  }
  .about-title {
    font-size: 24px;
  }
  .navbar-logo-name {
    font-size: 16px;
  }
  .navbar-logo-sub {
    display: none;
  }
}
