
/* === CSS VARIABLES === */
:root {
  --color-bg: #FFFFFF;
  --color-bg-light: #F8F8F8;
  --color-bg-gray: #F5F5F5;
  --color-teal: #19A8A3;
  --color-teal-dark: #148F8B;
  --color-teal-light: #26C9C9;
  --color-pink: #E8B4B8;
  --color-pink-light: #F4C2C2;
  --color-pink-dark: #D4A5A5;
  --color-white: #FFFFFF;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-muted: #999999;
  --color-overlay: rgba(0,0,0,0.45);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-accent: 'Playfair Display', serif;
}

/* === RESET === */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* === HEADER === */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s ease;
  padding: 0;
}
#header.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}
.logo img {
  height: 70px;
  width: auto;
  transition: transform 0.3s ease;
}
.logo:hover img { transform: scale(1.03); }
.social-icons {
  display: flex;
  gap: 10px;
}
.social-icons a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 15px;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  background: var(--color-pink-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232,180,184,0.4);
}

/* === NAVIGATION === */
.main-nav {
  background: rgba(0,0,0,0.15);
  border-top: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s ease;
}
#header.scrolled .main-nav {
  background: rgba(255,255,255,0.95);
  border-top: 1px solid rgba(0,0,0,0.05);
}
.main-nav ul {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
}
.main-nav li { position: relative; }
.main-nav a {
  display: block;
  padding: 14px 24px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: all 0.3s ease;
  position: relative;
}
#header.scrolled .main-nav a {
  color: var(--color-text);
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--color-teal);
  transition: all 0.3s ease;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--color-white);
}
#header.scrolled .main-nav a:hover,
#header.scrolled .main-nav a.active {
  color: var(--color-teal);
}
.main-nav a:hover::after,
.main-nav a.active::after {
  left: 24px; right: 24px;
}
/* Dropdown */
.main-nav li .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  border-radius: 0 0 8px 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  z-index: 100;
}
.main-nav li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  padding: 12px 24px;
  font-size: 11px;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  color: var(--color-text);
}
.dropdown a::after { display: none; }
.dropdown a:hover { 
  background: rgba(25,168,163,0.08);
  color: var(--color-teal);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}
#header.scrolled .menu-toggle {
  color: var(--color-text);
}

/* === HERO === */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero-danielle.jpg') center center / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.50) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}
.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-pink-light);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.3s forwards;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--color-white);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.5s forwards;
}
.hero-title .highlight {
  position: relative;
  display: inline-block;
  color: var(--color-pink-light);
}
.hero-description {
  font-family: var(--font-heading);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.7s forwards;
}
.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 35px;
  color: var(--color-white);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.9s forwards;
}
.hero-tagline .highlight { color: var(--color-pink-light); }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  background: var(--color-teal);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.1s forwards;
}
.btn-primary:hover {
  background: var(--color-teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(25,168,163,0.4);
}
.btn-primary i { font-size: 18px; }
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}
.hero-scroll i {
  font-size: 24px;
  color: var(--color-white);
  opacity: 0.7;
}

/* === SECTION COMMON === */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  color: var(--color-text);
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-teal);
  margin: 15px auto 0;
}

/* === TREATMENTS === */
#tratamentos {
  padding: 80px 40px;
  background: var(--color-bg);
}
.treatments-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.treatment-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.treatment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.treatment-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.treatment-card-body {
  padding: 30px;
}
.treatment-card-body h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--color-teal);
}
.treatment-card-body ul {
  margin-bottom: 25px;
}
.treatment-card-body li {
  padding: 6px 0;
  font-size: 15px;
  color: var(--color-text-light);
  position: relative;
  padding-left: 20px;
}
.treatment-card-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-teal);
  transform: translateY(-50%);
}
.treatment-card-body li a {
  transition: color 0.3s ease;
}
.treatment-card-body li a:hover {
  color: var(--color-teal);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--color-teal);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: var(--color-teal-dark);
  transform: translateY(-2px);
}

/* === LIPEHARMONY === */
#lipeharmony {
  padding: 80px 40px;
  background: var(--color-teal);
  color: var(--color-white);
}
.lipe-container {
  max-width: 1200px;
  margin: 0 auto;
}
.lipe-header {
  text-align: center;
  margin-bottom: 50px;
}
.lipe-logo-text {
  font-family: var(--font-accent);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 2px;
}
.lipe-logo-text b {
  font-weight: 700;
  color: var(--color-pink-light);
}
.lipe-subtitle {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-pink-light);
  margin-top: 8px;
}
.lipe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
.lipe-text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}
.lipe-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}
.phase-card {
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}
.phase-card:hover { transform: translateY(-5px); }
.phase-card h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 10px;
}
.phase-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.lipe-box {
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 30px;
}
.lipe-box h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 15px;
}
.lipe-box ul li {
  padding: 5px 0;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  padding-left: 18px;
  position: relative;
}
.lipe-box ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-pink-light);
}

/* === ABOUT === */
#sobre {
  padding: 80px 40px;
  background: var(--color-bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.about-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.about-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about-content h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--color-text);
}
.about-content h3 .highlight { color: var(--color-teal); }
.about-tagline {
  font-family: var(--font-heading);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-pink);
  margin-bottom: 20px;
}
.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 15px;
}
.about-formacao h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text);
  margin-bottom: 15px;
  margin-top: 20px;
}
.about-formacao ul li {
  padding: 5px 0;
  font-size: 15px;
  color: var(--color-text-light);
  padding-left: 18px;
  position: relative;
}
.about-formacao ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-teal);
}

/* === SPACE === */
#espaco {
  padding: 80px 40px;
  background: var(--color-bg-light);
}
.space-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.space-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 15px;
}
.space-text strong { color: var(--color-text); }
.space-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.space-card {
  background: var(--color-white);
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.space-card:hover { transform: translateY(-5px); }
.space-card i {
  font-size: 28px;
  color: var(--color-teal);
  margin-bottom: 12px;
}
.space-card h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--color-text);
}
.space-card p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* === PODCAST === */
#podcast {
  padding: 80px 40px;
  background: var(--color-pink);
}
.podcast-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.podcast-content h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: var(--color-white);
}
.podcast-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.95);
  line-height: 1.7;
  margin-bottom: 15px;
}
.podcast-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}
.podcast-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}
.btn-outline:hover {
  background: var(--color-teal);
  color: var(--color-white);
}

/* === CONTACT === */
#contato {
  padding: 80px 40px;
  background: var(--color-bg);
  text-align: center;
}
#contato p {
  font-size: 17px;
  color: var(--color-text-light);
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

/* === FOOTER === */
#footer {
  padding: 50px 40px 30px;
  background: #2C2C2C;
  color: var(--color-white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-teal-light);
  margin-bottom: 15px;
}
.footer-col p,
.footer-col a {
  font-family: var(--font-heading);
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}
.footer-col a:hover { color: var(--color-teal-light); }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--color-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 14px;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: var(--color-teal-light);
  transform: translateY(-2px);
}
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.footer-bottom p {
  font-family: var(--font-heading);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}
@keyframes pulse {
  0% { box-shadow: 0 4px 15px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 25px rgba(37,211,102,0.6); }
  100% { box-shadow: 0 4px 15px rgba(37,211,102,0.4); }
}
/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .treatments-grid,
  .lipe-grid,
  .about-grid,
  .space-grid,
  .podcast-grid {
    grid-template-columns: 1fr;
  }
  .about-img img { height: 350px; }
  .lipe-phases { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .header-top { padding: 10px 20px; }
  .logo img { height: 50px; }
  .social-icons { display: none; }
  .menu-toggle { display: block; }
  .main-nav { display: none; }
  .main-nav.open { display: block; }
  .main-nav ul {
    flex-direction: column;
    align-items: center;
  }
  .main-nav a { padding: 12px 20px; }
  .main-nav li .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.98);
  }
  #hero { min-height: 500px; }
  .hero-title { font-size: 24px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-social { justify-content: center; }
  #tratamentos, #lipeharmony, #sobre, #espaco, #podcast, #contato {
    padding: 50px 20px;
  }
}

/* === INNER PAGE HERO === */
.page-hero {
  position: relative;
  padding: 160px 40px 80px;
  text-align: center;
  background: var(--color-bg);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero-danielle.jpg') center center / cover no-repeat;
  opacity: 0.08;
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-breadcrumb {
  font-family: var(--font-heading);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-teal);
  margin-bottom: 15px;
}
.page-breadcrumb a { color: var(--color-teal); }
.page-breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0;
  color: var(--color-text);
}

/* === TREATMENT DETAIL PAGE === */
.treatment-detail {
  padding: 80px 40px;
  background: var(--color-bg);
}
.treatment-detail-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.treatment-detail-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 18px;
}
.treatment-detail-content strong { color: var(--color-text); }
.treatment-detail-content h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-teal);
  margin: 25px 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.treatment-detail-content ul {
  margin: 12px 0 20px;
}
.treatment-detail-content ul li {
  padding: 5px 0 5px 20px;
  font-size: 15px;
  color: var(--color-text-light);
  position: relative;
}
.treatment-detail-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-teal);
  transform: translateY(-50%);
}
.treatment-detail-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  position: sticky;
  top: 120px;
}
.treatment-detail-img img {
  width: 100%;
  height: auto;
  display: block;
}
.treatment-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 15px;
}
.treatment-gallery img {
  border-radius: 8px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* === DEPOIMENTOS === */
.depoimentos {
  padding: 80px 40px;
  background: var(--color-pink);
}
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}
.depoimento-card {
  background: var(--color-white);
  border-radius: 10px;
  padding: 25px;
  border-left: 3px solid var(--color-teal);
}
.depoimento-card .author {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 10px;
}
.depoimento-card .stars {
  color: #FFD700;
  font-size: 14px;
  margin-bottom: 10px;
}
.depoimento-card p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
  font-style: italic;
}

/* === NOSSO ESPAÇO PAGE === */
.espaco-gallery {
  padding: 60px 40px;
  background: var(--color-bg);
}
.espaco-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}
.espaco-gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.espaco-gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* === BLOG === */
.blog-section {
  padding: 80px 40px;
  background: var(--color-bg-light);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.blog-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.blog-card-body {
  padding: 25px;
}
.blog-card-body h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  color: var(--color-teal);
}
.blog-card-body p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 15px;
}
.blog-card-body .read-more {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-teal);
  transition: color 0.3s ease;
}
.blog-card-body .read-more:hover { color: var(--color-teal-dark); }

/* === CONTATO PAGE === */
.contato-section {
  padding: 80px 40px;
  background: var(--color-bg);
}
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}
.contato-info h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: var(--color-teal);
}
.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.contato-item i {
  font-size: 20px;
  color: var(--color-teal);
  margin-top: 3px;
  min-width: 24px;
}
.contato-item p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.6;
}
.contato-item a { color: var(--color-teal); }
.contato-item a:hover { text-decoration: underline; }
.contato-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.contato-map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
}

/* === LIPEHARMONY LANDING === */
.lipe-landing-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-teal);
  overflow: hidden;
}
.lipe-landing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/lipedema/IMG_5577-scaled.jpg') center center / cover no-repeat;
  opacity: 0.15;
}
.lipe-landing-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 800px;
}
.lipe-landing-logo {
  font-family: var(--font-accent);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.lipe-landing-logo b {
  font-weight: 700;
  color: var(--color-pink-light);
}
.lipe-landing-subtitle {
  font-family: var(--font-heading);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-pink-light);
  margin-bottom: 30px;
}
.lipe-landing-text {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.95);
  margin-bottom: 20px;
}
.lipe-signs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 30px 0;
  text-align: left;
}
.lipe-sign-item {
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.lipe-sign-item i {
  color: var(--color-pink-light);
  font-size: 18px;
  min-width: 24px;
}
.lipe-sign-item span {
  font-size: 14px;
  color: rgba(255,255,255,0.95);
}
.lipe-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.lipe-feature {
  text-align: center;
  padding: 25px 15px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
}
.lipe-feature i {
  font-size: 32px;
  color: var(--color-pink-light);
  margin-bottom: 12px;
}
.lipe-feature h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 8px;
}
.lipe-feature p {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}
.lipe-techniques {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 30px 0;
}
.lipe-technique {
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 15px 20px;
  text-align: center;
}
.lipe-technique h5 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 4px;
}
.lipe-technique p {
  font-size: 12px;
  color: rgba(255,255,255,0.9);
}

/* === RESPONSIVE INNER PAGES === */
@media (max-width: 1024px) {
  .treatment-detail-grid,
  .contato-grid {
    grid-template-columns: 1fr;
  }
  .treatment-detail-img { position: static; }
  .espaco-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .lipe-signs { grid-template-columns: 1fr; }
  .lipe-features { grid-template-columns: 1fr; }
  .lipe-techniques { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .page-hero { padding: 130px 20px 50px; }
  .treatment-detail, .depoimentos, .blog-section, .contato-section, .espaco-gallery {
    padding: 50px 20px;
  }
  .espaco-gallery-grid { grid-template-columns: 1fr; }
  .treatment-gallery { grid-template-columns: 1fr; }
  .depoimentos-grid { grid-template-columns: 1fr; }
}
