/* === CSS VARIABLES - From Avada Theme Options === */
:root {
  --awb-color1: #ffffff;
  --awb-color2: #f6f6f6;
  --awb-color3: #ffc9c9;
  --awb-color4: #ffaa06;
  --awb-color5: #b98eb5;
  --awb-color6: #747474;
  --awb-color7: #1e1e1e;
  --awb-color8: #1e1e1e;
  --awb-custom_color_1: #f8d7db; /* rosa claro */
  --awb-custom_color_2: #e39fa8; /* rosa */
  --awb-custom_color_3: #98e3e3; /* azul claro */
  --awb-custom_color_4: #16a6a3; /* azul/teal */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--awb-color7);
  background: var(--awb-color1);
  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 (Páginas Internas) === */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
#header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 8vw;
}
#header .header-inner .logo img {
  max-width: 120px;
  height: auto;
}
#header .header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
#header .header-right .hero-social {
  padding-top: 0;
}
/* Nav dentro do header não precisa ser sticky */
#header .main-nav {
  position: relative;
  top: auto;
  box-shadow: none;
  border-bottom: none;
  background: transparent;
}
/* Espaçamento para conteúdo não ficar atrás do header fixo */
body:has(#header) .page-hero,
body:has(#header) .lipe-hero {
  padding-top: 140px;
}

/* === HERO SECTION (Home) === */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.47) 100%),
              url('images/hero-bg.jpg') center center / cover no-repeat;
}
.hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 30px 8vw 0;
  position: relative;
  z-index: 2;
}
.hero-top .logo img {
  max-width: 190px;
  height: auto;
}
.hero-social {
  display: flex;
  gap: 8px;
  padding-top: 10px;
}
.hero-social a {
  width: 38px; height: 38px;
  border-radius: 100px;
  background: var(--awb-color1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--awb-custom_color_2);
  font-size: 17px;
  transition: all 0.3s ease;
}
.hero-social a:hover {
  background: var(--awb-custom_color_2);
  color: var(--awb-color1);
}
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 8vw;
  position: relative;
  z-index: 2;
}
.hero-title-hidden {
  font-size: 1px;
  color: transparent;
  position: absolute;
  opacity: 0;
}
.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  color: var(--awb-color1);
  line-height: 1.15;
  margin-bottom: 30px;
  max-width: 800px;
}
.hero-tagline .highlight {
  position: relative;
  display: inline-block;
  color: var(--awb-color1);
}
.hero-tagline .highlight svg {
  position: absolute;
  bottom: -10px;
  left: -5%;
  width: 110%;
  height: 30px;
}
.hero-tagline .highlight svg path {
  fill: none;
  stroke: var(--awb-custom_color_2);
  stroke-width: 3;
}
.hero-rotating {
  font-family: var(--font-heading);
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--awb-color1);
  margin-bottom: 35px;
  min-height: 30px;
}
.hero-rotating span {
  display: inline-block;
  animation: rotateText 9s infinite;
}
@keyframes rotateText {
  0%, 30% { opacity: 1; transform: translateY(0); }
  33%, 36% { opacity: 0; transform: translateY(-20px); }
  39%, 63% { opacity: 1; transform: translateY(0); }
  66%, 69% { opacity: 0; transform: translateY(-20px); }
  72%, 96% { opacity: 1; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  background: var(--awb-custom_color_1);
  color: var(--awb-color7);
  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;
}
.hero-btn:hover {
  background: var(--awb-custom_color_2);
  color: var(--awb-color1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(227,159,168,0.4);
}
.hero-btn i { font-size: 18px; }
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounceScroll 2s infinite;
}
.hero-scroll i {
  font-size: 24px;
  color: var(--awb-color1);
  opacity: 0.7;
}
@keyframes bounceScroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* === NAVIGATION === */
.main-nav {
  position: sticky;
  top: 0;
  background: var(--awb-color1);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 999;
  border-bottom: 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: var(--awb-color7);
  transition: all 0.3s ease;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--awb-custom_color_4);
  transition: all 0.3s ease;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--awb-custom_color_4);
}
.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(--awb-color7);
}
.dropdown a::after { display: none; }
.dropdown a:hover { 
  background: rgba(22,166,163,0.08);
  color: var(--awb-custom_color_4);
}
/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--awb-color7);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}

/* === TREATMENTS === */
#tratamentos {
  padding: 70px 8vw;
  background: var(--awb-color1);
}
.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(--awb-color7);
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--awb-custom_color_4);
  margin: 15px auto 0;
}
.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(--awb-color1);
  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(-15px);
  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(--awb-custom_color_4);
}
.treatment-card-body ul {
  margin-bottom: 25px;
}
.treatment-card-body li {
  padding: 6px 0;
  font-size: 15px;
  color: var(--awb-color6);
  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(--awb-custom_color_4);
  transform: translateY(-50%);
}
.treatment-card-body li a {
  transition: color 0.3s ease;
}
.treatment-card-body li a:hover {
  color: var(--awb-custom_color_4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: var(--awb-custom_color_4);
  color: var(--awb-color1);
  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: #13908d;
  transform: translateY(-2px);
}

/* === LIPEHARMONY === */
#lipeharmony {
  padding: 70px 8vw;
  background: var(--awb-custom_color_4);
  color: var(--awb-color1);
}
.lipe-container {
  max-width: 1200px;
  margin: 0 auto;
}
.lipe-header {
  text-align: center;
  margin-bottom: 50px;
}
.lipe-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  color: var(--awb-color1);
  letter-spacing: 2px;
}
.lipe-logo-text b {
  font-weight: 700;
  color: var(--awb-custom_color_1);
}
.lipe-subtitle {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--awb-custom_color_1);
  margin-top: 8px;
}
.lipe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
.lipe-text {
  font-size: 15px;
  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.07);
  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(--awb-color1);
  margin-bottom: 10px;
}
.phase-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.lipe-box {
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 20px;
}
.lipe-box h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--awb-color1);
  margin-bottom: 15px;
}
.lipe-box ul li {
  padding: 5px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  padding-left: 18px;
  position: relative;
}
.lipe-box ul li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--awb-custom_color_1);
}
.lipe-consultation {
  text-align: center;
  margin-top: 40px;
  padding: 0 40px;
}
.lipe-consultation p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  max-width: 800px;
  margin: 0 auto;
}

/* === ABOUT === */
#sobre {
  padding: 70px 8vw;
  background: var(--awb-color1);
}
.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 .about-tagline {
  font-family: var(--font-heading);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--awb-custom_color_2);
  margin-bottom: 20px;
}
.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(--awb-color7);
}
.about-content h3 .highlight { color: var(--awb-custom_color_4); }
.about-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--awb-color6);
  margin-bottom: 15px;
}
.about-formacao h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--awb-color7);
  margin-bottom: 15px;
  margin-top: 20px;
}
.about-formacao ul li {
  padding: 5px 0;
  font-size: 14px;
  color: var(--awb-color6);
  padding-left: 18px;
  position: relative;
}
.about-formacao ul li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--awb-custom_color_4);
}

/* === SPACE === */
#espaco {
  padding: 70px 8vw;
  background: var(--awb-color2);
}
.space-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.space-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--awb-color6);
  margin-bottom: 15px;
}
.space-text strong { color: var(--awb-color7); }
.space-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.space-card {
  background: var(--awb-color1);
  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(-15px); }
.space-card i {
  font-size: 28px;
  color: var(--awb-custom_color_4);
  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(--awb-color7);
}
.space-card p {
  font-size: 13px;
  color: var(--awb-color6);
  line-height: 1.5;
}

/* === PODCAST === */
#podcast {
  padding: 80px 8vw;
  background: var(--awb-custom_color_2);
}
.podcast-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.podcast-content {
  text-align: center;
}
.podcast-content h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: var(--awb-color1);
}
.podcast-content p {
  font-size: 15px;
  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: transparent;
  color: var(--awb-color1);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 32px;
  border: 2px solid var(--awb-color1);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}
.btn-outline:hover {
  background: var(--awb-custom_color_4);
  border-color: var(--awb-custom_color_4);
  color: var(--awb-color1);
}

/* === CONTACT === */
#contato {
  padding: 70px 8vw;
  background: #f9f9f9;
  text-align: center;
}
#contato .section-title {
  margin-bottom: 20px;
}
#contato p {
  font-size: 16px;
  color: var(--awb-color6);
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.7;
}
.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  background: var(--awb-custom_color_4);
  color: var(--awb-color1);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-contact:hover {
  background: var(--awb-custom_color_2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(227,159,168,0.4);
}
.btn-contact i { font-size: 18px; }

/* === CTA BANNER === */
#cta-banner {
  padding: 80px 8vw;
  background: linear-gradient(180deg, rgba(30,30,30,0.68) 0%, rgba(30,30,30,0.68) 100%),
              url('images/tratamentos-corporais.jpg') center center / cover no-repeat;
  text-align: center;
  color: var(--awb-color1);
}
.cta-banner-content {
  max-width: 800px;
  margin: 0 auto;
}
.cta-banner-content h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--awb-color1);
}
.cta-banner-content p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  background: var(--awb-custom_color_4);
  color: var(--awb-color1);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-cta:hover {
  background: var(--awb-custom_color_2);
  transform: translateY(-2px);
}
.btn-cta i { font-size: 18px; }

/* === FOOTER === */
#footer {
  padding: 50px 8vw 30px;
  background: var(--awb-color7);
  color: var(--awb-color1);
}
.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(--awb-custom_color_3);
  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(--awb-custom_color_3); }
.footer-col .btn-footer {
  display: inline-block;
  padding: 10px 24px;
  background: var(--awb-custom_color_4);
  color: var(--awb-color1);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  margin-top: 15px;
  transition: all 0.3s ease;
}
.footer-col .btn-footer:hover {
  background: var(--awb-custom_color_2);
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 100px;
  background: var(--awb-custom_color_4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--awb-color1);
  font-size: 14px;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: var(--awb-custom_color_2);
  color: var(--awb-color1);
  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: pulseWhats 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}

/* === ANIMATIONS === */
@keyframes pulseWhats {
  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); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Scroll reveal */
.reveal {
  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) {
  .hero-top { padding: 15px 20px 0; }
  .hero-top .logo img { max-width: 130px; }
  .hero-social { display: none; }
  .menu-toggle { 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-tagline { font-size: 22px; }
  .hero-rotating { font-size: 12px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-social { justify-content: center; }
  #tratamentos, #lipeharmony, #sobre, #espaco, #podcast, #contato, #cta-banner {
    padding: 50px 20px;
  }
}
