/* ========== HERO ========== */
.hero{
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero-tag{
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--wine);
  background: rgba(255,255,255,0.4);
  margin-bottom: 28px;
}
.hero-tag::before{
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blush);
  box-shadow: 0 0 0 4px rgba(208,120,195,0.25);
}
.hero h1{
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 6.5vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero h1 em{
  font-style: italic;
  font-weight: 300;
  color: var(--wine);
  font-variation-settings: "SOFT" 100;
}
.hero h1 .amp{
  font-style: italic;
  font-weight: 300;
  color: var(--blush);
  display: inline-block;
  transform: translateY(4px);
}
.hero p.lead{
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-cta{
  display: flex; gap: 14px;
  flex-wrap: wrap;
}
.hero-meta{
  margin-top: 56px;
  display: flex; gap: 40px;
  flex-wrap: wrap;
}
.hero-meta-item{
  border-left: 1px solid var(--line);
  padding-left: 18px;
}
.hero-meta-item .label{
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.hero-meta-item .value{
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--wine);
}

/* Hero visual composition */
.hero-visual{
  position: relative;
  height: 620px;
}
.hero-img-1, .hero-img-2{
  position: absolute;
  border-radius: 240px 240px 18px 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-1{
  width: 62%;
  height: 88%;
  top: 0; right: 0;
  z-index: 2;
  animation: float 8s ease-in-out infinite;
}
.hero-img-1 img{
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-img-2{
  width: 50%;
  height: 50%;
  bottom: 0; left: 0;
  z-index: 3;
  border-radius: 18px 18px 240px 240px;
  animation: float 8s ease-in-out infinite reverse;
  animation-delay: -2s;
}
.hero-img-2 img{
  width: 100%; height: 100%;
  object-fit: cover;
}
@keyframes float{
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero-blob{
  position: absolute;
  top: 20%; left: 8%;
  width: 180px; height: 180px;
  background: var(--rose);
  border-radius: 70% 30% 50% 50% / 50% 60% 40% 50%;
  opacity: 0.45;
  z-index: 1;
  animation: morph 12s ease-in-out infinite;
  filter: blur(2px);
}
@keyframes morph{
  0%, 100% { border-radius: 70% 30% 50% 50% / 50% 60% 40% 50%; }
  50% { border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%; }
}

.hero-stat-card{
  position: absolute;
  right: -8px;
  bottom: 10%;
  background: rgba(252,250,253,0.65);
  border: 1px solid var(--line);
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  z-index: 4;
  display: flex; align-items: center; gap: 14px;
}
.hero-stat-card .stars{
  color: var(--blush);
  font-size: 14px;
  letter-spacing: 2px;
}
.hero-stat-card .stat-text{
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--wine);
}
.hero-stat-card .stat-text small{
  display: block;
  font-family: var(--body);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

/* Section heading pattern */
.section{
  padding: 120px 0;
  position: relative;
}
.section-label{
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 24px;
  font-weight: 500;
}
.section-label::before{
  content: "";
  width: 32px; height: 1px;
  background: var(--wine);
}
.section-title{
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 720px;
}
.section-title em{
  font-style: italic;
  color: var(--wine);
}
.section-intro{
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 64px;
}

/* ========== PRE-NATAL FEATURE ========== */
.feature{
  background: linear-gradient(180deg, rgba(252,250,253,0.3) 0%, rgba(243,238,245,0.55) 100%);
}
.feature-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-quote{
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.feature-quote em{
  font-style: italic;
  color: var(--wine);
}
.feature-text{
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 36px;
  max-width: 480px;
}
.feature-list{
  list-style: none;
  margin-bottom: 40px;
}
.feature-list li{
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 16px;
  color: var(--ink);
}
.feature-list li:last-child{ border-bottom: 1px solid var(--line); }
.feature-list li::before{
  content: "✦";
  color: var(--blush);
  font-size: 14px;
}

/* ========== ESPECIALIDADES ========== */
.specs{
  background: rgba(252,250,253,0.65);
}
.specs-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.spec-card{
  background: linear-gradient(160deg, rgba(255,255,255,0.65) 0%, rgba(237,222,245,0.55) 100%); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding: 56px 44px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
  border: 1px solid rgba(255,255,255,0.5);
}
.spec-card:hover{
  transform: translateY(-6px);
}
.spec-card:nth-child(2){
  background: linear-gradient(160deg, #B083C6 0%, #8A649C 100%);
  color: var(--cream);
}
.spec-card:nth-child(2) .spec-num,
.spec-card:nth-child(2) p,
.spec-card:nth-child(2) h3{ color: var(--cream); }
.spec-card:nth-child(2) p{ opacity: 0.85; }
.spec-card:nth-child(2) .spec-icon{ border-color: rgba(252,250,253,0.3); }

.spec-num{
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--wine);
  margin-bottom: 20px;
  display: block;
}
.spec-icon{
  width: 56px; height: 56px;
  border: 1px solid var(--wine);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  color: var(--wine);
}
.spec-card:nth-child(2) .spec-icon{ color: var(--cream); }
.spec-card h3{
  font-family: var(--display);
  font-weight: 300;
  font-size: 36px;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.spec-card p{
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 400px;
}
.spec-card .deco{
  position: absolute;
  right: -40px; bottom: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

/* ========== EXAMES ========== */
.exams{
  background: rgba(243,238,245,0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.exams-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.exam-card{
  background: rgba(252,250,253,0.65);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .5s, box-shadow .5s;
  border: 1px solid rgba(255,255,255,0.6);
}
.exam-card:hover{
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.exam-img{
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--rose-soft);
  position: relative;
}
.exam-img img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s;
}
.exam-card:hover .exam-img img{ transform: scale(1.05); }
.exam-body{
  padding: 32px 28px 36px;
}
.exam-body h4{
  font-family: var(--display);
  font-weight: 400;
  font-size: 23px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.15;
}
.exam-body p{
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
.exam-cta{
  text-align: center;
  margin-top: 56px;
}

/* ========== TWO-COLUMN PROCEDIMENTOS / PARTO ========== */
.duo{
  background: var(--ink);
  color: var(--cream);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.duo::before{
  content: "";
  position: absolute;
  top: -200px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208,120,195,0.18) 0%, transparent 70%);
}
.duo::after{
  content: "";
  position: absolute;
  bottom: -200px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208,120,195,0.12) 0%, transparent 70%);
}
.duo .section-label{ color: var(--rose); }
.duo .section-label::before{ background: var(--rose); }
.duo-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
  z-index: 1;
}
.duo-col h3{
  font-family: var(--display);
  font-weight: 300;
  font-size: 42px;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  line-height: 1.05;
}
.duo-col h3 em{ font-style: italic; color: var(--rose); }
.duo-col p{
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 28px;
  max-width: 380px;
}
.duo-list{
  list-style: none;
}
.duo-list li{
  padding: 16px 0;
  border-top: 1px solid rgba(252,250,253,0.18);
  font-size: 17px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  display: flex; align-items: center; justify-content: space-between;
}
.duo-list li:last-child{ border-bottom: 1px solid rgba(252,250,253,0.18); }
.duo-list li::after{
  content: "→";
  opacity: 0.5;
  transition: opacity .3s, transform .3s;
}
.duo-list li:hover::after{ opacity: 1; transform: translateX(4px); }

/* ========== ABOUT ========== */
.about{
  background: rgba(252,250,253,0.65);
}
.about-grid{
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap{
  position: relative;
}
.about-img{
  border-radius: 280px 280px 24px 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
}
.about-img img{
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-badge{
  position: absolute;
  bottom: 32px; right: -20px;
  background: rgba(252,250,253,0.65);
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  max-width: 220px;
  z-index: 10;
}
.about-badge .crm{
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.about-badge .crm-val{
  font-family: var(--display);
  font-style: italic;
  color: var(--wine);
  font-size: 15px;
}
.about-content h2{
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.about-content h2 em{ font-style: italic; color: var(--wine); }
.about-content p{
  color: var(--ink);
  opacity: 0.78;
  font-size: 16px;
  margin-bottom: 18px;
  max-width: 540px;
}
.about-credentials{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.credential .num{
  font-family: var(--display);
  font-weight: 300;
  font-size: 40px;
  color: var(--wine);
  letter-spacing: -0.02em;
  line-height: 1;
}
.credential .desc{
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
}

/* ========== TESTIMONIALS ========== */
.reviews{
  background: rgba(243,238,245,0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
}
.reviews-header{
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.reviews-rating{
  display: flex; align-items: center; gap: 16px;
  background: rgba(252,250,253,0.65);
  padding: 18px 26px;
  border-radius: 100px;
  border: 1px solid var(--line);
}
.reviews-rating .stars{
  color: var(--blush);
  letter-spacing: 2px;
  font-size: 18px;
}
.reviews-rating .rate-num{
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  color: var(--wine);
}
.reviews-rating .rate-desc{
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.reviews-track{
  display: flex;
  gap: 24px;
  animation: scroll 60s linear infinite;
  width: max-content;
}
.reviews-wrap{
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
@keyframes scroll{
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.reviews-wrap:hover .reviews-track{ animation-play-state: paused; }
.review-card{
  flex: 0 0 380px;
  background: rgba(252,250,253,0.65);
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--line);
}
.review-stars{
  color: var(--blush);
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.review-text{
  font-family: var(--display);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: var(--ink);
}
.review-author{
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.review-avatar{
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose) 0%, var(--blush) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
}
.review-name{
  font-weight: 600;
  font-size: 14px;
}
.review-date{
  font-size: 12px;
  color: var(--muted);
}

/* ========== BLOG ========== */
.blog{
  background: rgba(252,250,253,0.65);
}
.blog-feat{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: linear-gradient(135deg, rgba(252,250,253,0.6) 0%, rgba(237,222,245,0.5) 100%); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding: 60px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.5);
}
.blog-feat .tag{
  display: inline-block;
  padding: 6px 14px;
  background: var(--wine);
  color: var(--cream);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.blog-feat h3{
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.blog-feat h3 em{ font-style: italic; color: var(--wine); }
.blog-feat p{
  color: var(--muted);
  margin-bottom: 28px;
}
.blog-illustration{
  aspect-ratio: 1;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: linear-gradient(135deg, var(--rose) 0%, var(--blush) 50%, var(--wine) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.blog-illustration::before, .blog-illustration::after{
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(252,250,253,0.2);
}
.blog-illustration::before{
  width: 60%; height: 60%;
  top: 10%; right: -10%;
}
.blog-illustration::after{
  width: 40%; height: 40%;
  bottom: 10%; left: 5%;
  background: rgba(252,250,253,0.15);
}
.blog-illustration .heart{
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 120px;
  color: rgba(252,250,253,0.85);
  font-weight: 300;
}

/* ========== CTA BIG ========== */
.cta{
  padding: 140px 0;
  background: var(--wine);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.cta-inner{
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-icon{
  width: 64px; height: 64px;
  margin: 0 auto 32px;
  border: 1px solid rgba(252,250,253,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cta h2{
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto; margin-right: auto;
}
.cta h2 em{ font-style: italic; color: var(--rose); }
.cta p{
  font-size: 17px;
  opacity: 0.8;
  max-width: 520px;
  margin: 0 auto 40px;
}
.cta .btn{
  background: rgba(252,250,253,0.65);
  color: var(--wine);
  border-color: var(--cream);
  padding: 18px 36px;
  font-size: 15px;
}
.cta .btn:hover{
  background: var(--rose);
  color: var(--wine);
  border-color: var(--rose);
}
.cta::before{
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  border: 1px solid rgba(252,250,253,0.08);
  border-radius: 50%;
}
.cta::after{
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px; height: 1200px;
  border: 1px solid rgba(252,250,253,0.05);
  border-radius: 50%;
}

/* ========== INLINE REFACTORING ========== */
.contato-section { background: transparent; padding: 100px 0; position: relative; z-index: 10; }
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; margin-top: 40px; }
.contato-card { 
  background: rgba(255,255,255,0.75); 
  backdrop-filter: blur(16px); 
  -webkit-backdrop-filter: blur(16px);
  padding: 48px; 
  border-radius: 24px; 
  border: 1px solid rgba(255,255,255,1); 
  box-shadow: 0 20px 50px rgba(110,48,88,0.05);
}
.contato-title { font-family: var(--display); font-size: 32px; margin-bottom: 32px; font-weight: 300; color: var(--ink); }
.contato-form { display: flex; flex-direction: column; gap: 20px; }
.contato-input, .contato-textarea { width: 100%; padding: 16px; border: 1px solid var(--line); border-radius: 12px; background: rgba(252,250,253,0.8); color: var(--ink); transition: border 0.3s, background 0.3s; }
.contato-textarea { resize: vertical; min-height: 120px; }
.contato-input:focus, .contato-textarea:focus { border-color: var(--wine); background: #fff; outline: none; }
.premium-glass-map {
  background: rgba(255,255,255,0.75); 
  backdrop-filter: blur(16px); 
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px; 
  border: 1px solid rgba(255,255,255,1); 
  box-shadow: 0 20px 50px rgba(110,48,88,0.05);
  padding: 12px;
  height: 100%;
  min-height: 450px;
  display: flex;
}
.contato-iframe { border: 0; width: 100%; height: 100%; border-radius: 16px; }

.extra-procedimentos-section { background: rgba(243,238,245,0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.extra-header { text-align: center; margin-bottom: 60px; }
.extra-title { margin: 0 auto; }
.extra-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.extra-card { background: rgba(252,250,253,0.65); padding: 40px; border-radius: var(--radius); border: 1px solid var(--line); }
.extra-card-title { font-family: var(--display); font-size: 24px; margin-bottom: 12px; color: var(--wine); }
.extra-card-desc { color: var(--muted); font-size: 15px; }

.footer-desc { margin-top: 20px; opacity: 0.5; font-size: 12px; }
.footer-nav-title { margin-top: 36px; }
.puzoto-link { text-decoration: underline; font-weight: 600; color: var(--rose); }

.crm-margin { margin-top: 8px; }
.feature-img-wrap { position: relative; width: 100%; height: 600px; border-radius: 280px 24px 280px 24px; overflow: hidden;}
.feature-img { width:100%; height:100%; object-fit:cover; }

/* ========== RESPONSIVE ========== */
@media (max-width: 960px){
  .hero{ padding: 130px 0 60px; }
  .hero-grid{ grid-template-columns: 1fr; gap: 60px; }
  .hero-visual{ height: 480px; }
  .feature-grid, .duo-grid, .about-grid, .blog-feat{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .specs-grid, .exams-grid{
    grid-template-columns: 1fr;
  }
  .section{ padding: 80px 0; }
  .blog-feat{ padding: 36px; }
  .hero-meta{ gap: 24px; }
  .contato-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .about-credentials{ grid-template-columns: 1fr; }
  .review-card{ flex: 0 0 300px; padding: 24px; }
}
}
.footer-brand{
  font-family: var(--display);
  font-size: 28px;
  color: var(--cream);
  margin-bottom: 18px;
  font-weight: 300;
}
.footer-brand em{ font-style: italic; color: var(--wine); }
.footer p{
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
.footer h5{
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 24px;
  color: var(--cream);
}
.footer ul{ list-style: none; }
.footer ul li{ margin-bottom: 12px; }
.footer ul a{
  color: var(--muted);
  font-size: 15px;
  transition: color .3s;
}
.footer ul a:hover{ color: var(--wine); }
.clinic{
  margin-bottom: 20px;
}
.clinic strong{
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--cream);
  margin-bottom: 4px;
}
.clinic p{ font-size: 13px; line-height: 1.4; }
.footer-bottom{
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
  font-size: 13px;
  color: var(--muted);
}
@media (max-width: 960px){
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }
}



/* ========== STARS 4.9 ========== */
.stars-4-9 {
  position: relative;
  display: inline-block;
  color: rgba(0,0,0,0.1);
}
.stars-4-9::before {
  content: '★★★★★';
  position: absolute;
  left: 0;
  top: 0;
  width: 98%;
  overflow: hidden;
  color: var(--blush);
  white-space: nowrap;
}

/* ========== FOOTER ========== */
.footer{
  background: var(--ink);
  padding: 80px 0 40px;
  color: var(--cream);
}
.footer p{
  font-size: 15px;
  color: rgba(252,250,253,0.6);
  line-height: 1.6;
}
.footer-grid{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand{
  font-family: var(--display);
  font-size: 28px;
  color: var(--cream);
  margin-bottom: 18px;
  font-weight: 300;
}
.footer-brand em{ font-style: italic; color: var(--rose); }
.footer h5{
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 24px;
  color: var(--cream);
}
.footer ul{ list-style: none; }
.footer ul li{ margin-bottom: 12px; }
.footer ul a{
  color: rgba(252,250,253,0.6);
  font-size: 15px;
  transition: color .3s;
}
.footer ul a:hover{ color: var(--rose); }
.clinic{
  margin-bottom: 20px;
}
.clinic strong{
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--cream);
  margin-bottom: 4px;
}
.clinic p{ font-size: 13px; line-height: 1.4; color: rgba(252,250,253,0.6); }
.footer-bottom{
  padding-top: 32px;
  border-top: 1px solid rgba(252,250,253,0.12);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
  font-size: 13px;
  color: rgba(252,250,253,0.4);
}
@media (max-width: 960px){
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ========== HERO META BADGES ========== */
.hero-meta {
  display: flex; gap: 16px; flex-wrap: wrap; align-items: center; justify-content: flex-start; margin-top: 32px;
}
.glass-badge {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 12px 16px; border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}
.glass-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(110, 48, 88, 0.1);
}
.glass-badge .label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 2px;
}
.glass-badge .value {
  font-family: var(--display); font-size: 16px; color: var(--ink);
}

/* ========== MARQUEE PILLS ========== */
.marquee-pill {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  color: var(--wine);
  background: rgba(110, 48, 88, 0.05);
  border: 1px solid rgba(110, 48, 88, 0.15);
  padding: 12px 32px;
  border-radius: 100px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.marquee-pill:hover {
  background: rgba(110, 48, 88, 0.8);
  color: #fff;
  border-color: rgba(110, 48, 88, 1);
}

/* ========== ACCORDION PROCEDIMENTOS ========== */
.accordion-list {
  display: flex; flex-direction: column; gap: 16px; max-width: 800px; margin: 0 auto;
}
.accordion-item {
  background: rgba(255,255,255,0.75); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: 16px; border: 1px solid var(--line);
  overflow: hidden; transition: all 0.3s;
}
.accordion-item:hover { border-color: rgba(110, 48, 88, 0.3); }
.accordion-trigger {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 24px; font-family: var(--display); font-size: 20px; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  transition: color 0.3s;
}
.accordion-trigger:hover { color: var(--wine); }
.accordion-icon {
  font-size: 24px; font-weight: 300; transition: transform 0.3s;
}
.accordion-content {
  max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.accordion-content p {
  padding: 0 24px 24px; margin: 0; color: var(--muted); line-height: 1.6;
}
.accordion-item.active .accordion-icon { transform: rotate(45deg); color: var(--wine); }
.accordion-item.active .accordion-trigger { color: var(--wine); }

/* ========== GLASS PANELS (SOBRE) ========== */
.glass-panel {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 8px 32px rgba(110,48,88,0.04);
  border-radius: 20px;
}
.about-badge.glass-panel {
  padding: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.credential.glass-panel {
  padding: 24px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.credential.glass-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(110,48,88,0.08);
}
.cred-icon {
  flex-shrink: 0; background: rgba(110,48,88,0.05); width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}

/* ========== FLOATING INPUT LABELS (CONTATO) ========== */
.glass-panel-form {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.9);
  padding: 40px; border-radius: 24px;
  box-shadow: 0 20px 40px rgba(110,48,88,0.05);
}
.input-group { position: relative; margin-bottom: 24px; }
.input-group .contato-input, .input-group .contato-textarea {
  width: 100%;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
  padding: 16px; padding-top: 24px;
  border-radius: 12px; font-size: 15px; color: var(--ink);
  transition: all 0.3s;
}
.input-group .contato-textarea { padding-top: 32px; resize: none; }
.input-group .contato-input:focus, .input-group .contato-textarea:focus {
  border-color: var(--wine); outline: none; background: rgba(255,255,255,0.75); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 0 3px rgba(110,48,88,0.1);
}
.contato-label-float {
  position: absolute; left: 16px; top: 20px;
  font-size: 15px; color: var(--muted);
  pointer-events: none; transition: all 0.3s cubic-bezier(0.2,0.8,0.2,1);
}
.input-group .contato-input:focus ~ .contato-label-float,
.input-group .contato-input:not(:placeholder-shown) ~ .contato-label-float,
.input-group .contato-textarea:focus ~ .contato-label-float,
.input-group .contato-textarea:not(:placeholder-shown) ~ .contato-label-float {
  top: 8px; left: 16px; font-size: 11px; font-weight: 600; color: var(--wine);
}


/* ========== PREMIUM FOOTER ========== */
.footer-premium {
  background: radial-gradient(circle at top center, #2e2831 0%, var(--ink) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 120px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  box-shadow: inset 0 20px 50px rgba(0,0,0,0.5);
}
.footer-premium-inner {
  position: relative;
  z-index: 10;
}
.footer-premium-top {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-bottom: 100px;
}
@media (min-width: 960px) {
  .footer-premium-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.footer-huge-brand {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(60px, 10vw, 140px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--cream);
  margin-left: -5px;
  text-shadow: 2px 4px 10px rgba(0,0,0,0.6), 1px 1px 2px rgba(255,255,255,0.1);
}
.footer-huge-brand em {
  font-style: italic;
  color: var(--rose);
}
.footer-premium-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 500px;
}
@media (min-width: 560px) {
  .footer-premium-content {
    flex-direction: row;
    gap: 80px;
  }
}
.footer-premium-col {
  display: flex;
  flex-direction: column;
}
.footer-premium-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(252,250,253,0.4);
  margin-bottom: 24px;
}
.footer-link-huge {
  font-family: var(--display);
  font-weight: 300;
  font-size: 28px;
  color: var(--cream);
  margin-bottom: 12px;
  transition: color 0.4s ease;
  text-decoration: none;
}
.footer-link-huge:hover {
  color: var(--rose);
}
.footer-premium-bio {
  margin-top: 32px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(252,250,253,0.6);
  border-top: 1px solid rgba(252,250,253,0.1);
  padding-top: 24px;
}
.footer-clinic-item {
  margin-bottom: 24px;
}
.footer-clinic-item strong {
  display: block;
  font-weight: 400;
  font-size: 16px;
  color: var(--cream);
  margin-bottom: 4px;
}
.footer-clinic-item span {
  display: block;
  font-size: 14px;
  color: rgba(252,250,253,0.5);
  line-height: 1.4;
}
.footer-premium-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(252,250,253,0.1);
  font-size: 13px;
  color: rgba(252,250,253,0.4);
}
@media (min-width: 768px) {
  .footer-premium-bottom {
    flex-direction: row;
  }
}
.footer-premium-bottom a {
  color: var(--rose);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.footer-premium-bottom a:hover {
  color: var(--cream);
}
.footer-premium-glow {
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(110,48,88,0.25) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}




/* ========== HERO META (Print 4) ========== */
.hero-meta {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  margin-top: 40px;
  max-width: 100%;
}
.premium-meta-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(110,48,88,0.06);
  border: 1px solid rgba(255,255,255,1);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
  cursor: pointer;
}
.premium-meta-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 16px 40px rgba(110,48,88,0.12);
}
.pmc-icon {
  color: var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pmc-icon svg { width: 20px; height: 20px; }
.pmc-text .pmc-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 4px;
}
.pmc-text .pmc-value {
  font-family: var(--display);
  font-size: 15px;
  color: var(--ink);
}
.pmc-stars { color: var(--wine); font-size: 12px; margin-left: 4px; }

/* ========== HERO STAT CARD (Print 5) ========== */
.hero-stat-card-premium {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 24px 32px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid #fff;
  z-index: 10;
  transition: transform 0.4s ease;
}
.hero-stat-card-premium:hover {
  transform: scale(1.05) rotate(-2deg);
}
.hsc-stars {
  color: var(--wine);
  font-size: 20px;
  letter-spacing: 2px;
}
.hsc-info {
  display: flex;
  flex-direction: column;
}
.hsc-score {
  font-family: var(--display);
  font-size: 28px;
  color: var(--wine);
  line-height: 1;
}
.hsc-desc {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 4px;
}

/* ========== ABOUT BADGE (Print 3) ========== */
.about-badge-premium {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(110,48,88,0.1);
  border: 1px solid #fff;
  z-index: 10;
  min-width: 220px;
  transition: transform 0.4s ease;
}
.about-badge-premium:hover {
  transform: translateY(-10px) rotate(2deg);
}
.abp-group {
  margin-bottom: 20px;
}
.abp-group:last-child { margin-bottom: 0; }
.abp-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 8px;
}
.abp-value {
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  color: var(--wine);
}

/* ========== DARK PORTFOLIO EXAMES (Print 1 & 2) ========== */
.portfolio-exams {
  background: rgba(252,250,253,0.65);
  color: var(--ink);
  padding: 40px 0 80px;
  position: relative;
}
.pe-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .pe-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.pe-title-wrap {
  max-width: 600px;
}
.pe-badge {
  display: inline-block;
  border: 1px solid rgba(110,48,88,0.2);
  color: var(--wine);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.pe-title {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.1;
  color: var(--ink);
}
.pe-title em {
  color: var(--wine);
  font-style: normal;
}
.pe-desc {
  max-width: 400px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
.pe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.pe-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: rgba(255,255,255,0.75); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.pe-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  opacity: 1;
}
.pe-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.65) 100%);
}
.pe-card:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}
.pe-card-num {
  position: absolute;
  top: 24px; left: 24px;
  font-family: var(--display);
  font-size: 14px;
  color: var(--wine);
  z-index: 2;
}
.pe-card-icon {
  position: absolute;
  top: 24px; right: 24px;
  width: 40px; height: 40px;
  background: var(--wine);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  z-index: 2;
  transition: transform 0.4s;
}
.pe-card:hover .pe-card-icon {
  transform: rotate(45deg);
}
.pe-card-title {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  font-family: var(--display);
  font-size: 20px;
  color: #fff;
  z-index: 2;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* ========== MODAL ========== */
.exam-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.exam-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.exam-modal-overlay.closing {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.exam-modal-box {
  background: #fdfdfd;
  border-radius: 24px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: translateY(40px) scale(0.95);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease;
}
.exam-modal-overlay.active .exam-modal-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.exam-modal-overlay.closing .exam-modal-box {
  transform: translateY(30px) scale(0.92);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 1, 1), opacity 0.3s ease;
}
.em-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(110,48,88,0.08);
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--wine);
  transition: background 0.3s, transform 0.3s, color 0.3s;
}
.em-close:hover {
  background: var(--wine);
  color: #fff;
  transform: rotate(90deg) scale(1.1);
}
.em-close:active {
  transform: rotate(180deg) scale(0.9);
  transition: transform 0.15s;
}
.em-header { margin-bottom: 32px; }
.em-tags { font-size: 11px; text-transform: uppercase; color: var(--muted); letter-spacing: 0.1em; margin-bottom: 12px; }
.em-title { font-family: var(--display); font-size: 32px; color: var(--ink); margin-bottom: 24px; }
.em-content { background: rgba(252,250,253,0.65); padding: 24px; border-radius: 16px; border-left: 4px solid var(--wine); margin-bottom: 24px;}
.em-content h5 { font-family: var(--display); font-size: 18px; margin-bottom: 12px; color: var(--ink); }
.em-content ul { list-style: none; padding: 0; margin-bottom: 0; }
.em-content ul li { margin-bottom: 12px; font-size: 14px; line-height: 1.5; color: var(--muted); padding-left: 16px; position: relative; }
.em-content ul li::before { content: '•'; position: absolute; left: 0; color: var(--wine); }

/* ========== GOOGLE REVIEWS ========== */
.google-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.gr-card {
  background: rgba(255,255,255,0.75); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.3s, box-shadow 0.3s;
}
.gr-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.gr-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.gr-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #eee;
}
.gr-name { font-weight: 600; color: var(--ink); font-size: 15px; margin-bottom: 4px; }
.gr-meta { font-size: 12px; color: var(--muted); }
.gr-stars { color: #fbbc04; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.gr-text { font-size: 14px; line-height: 1.6; color: var(--muted); }



/* ========== HERO META (Print 4) ========== */
.hero-meta {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  margin-top: 40px;
  max-width: 100%;
}
.premium-meta-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(110,48,88,0.06);
  border: 1px solid rgba(255,255,255,1);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
  cursor: pointer;
}
.premium-meta-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 16px 40px rgba(110,48,88,0.12);
}
.pmc-icon {
  color: var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pmc-icon svg { width: 20px; height: 20px; }
.pmc-text .pmc-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 4px;
}
.pmc-text .pmc-value {
  font-family: var(--display);
  font-size: 15px;
  color: var(--ink);
}
.pmc-stars { color: var(--wine); font-size: 12px; margin-left: 4px; }

/* ========== HERO STAT CARD (Print 5) ========== */
.hero-stat-card-premium {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 24px 32px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid #fff;
  z-index: 10;
  transition: transform 0.4s ease;
}
.hero-stat-card-premium:hover {
  transform: scale(1.05) rotate(-2deg);
}
.hsc-stars {
  color: var(--wine);
  font-size: 20px;
  letter-spacing: 2px;
}
.hsc-info {
  display: flex;
  flex-direction: column;
}
.hsc-score {
  font-family: var(--display);
  font-size: 28px;
  color: var(--wine);
  line-height: 1;
}
.hsc-desc {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 4px;
}

/* ========== ABOUT BADGE (Print 3) ========== */
.about-badge-premium {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(110,48,88,0.1);
  border: 1px solid #fff;
  z-index: 10;
  min-width: 220px;
  transition: transform 0.4s ease;
}
.about-badge-premium:hover {
  transform: translateY(-10px) rotate(2deg);
}
.abp-group {
  margin-bottom: 20px;
}
.abp-group:last-child { margin-bottom: 0; }
.abp-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 8px;
}
.abp-value {
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  color: var(--wine);
}

/* ========== DARK PORTFOLIO EXAMES (Print 1 & 2) ========== */
.portfolio-exams {
  background: rgba(252,250,253,0.65);
  color: var(--ink);
  padding: 40px 0 80px;
  position: relative;
}
.pe-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .pe-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.pe-title-wrap {
  max-width: 600px;
}
.pe-badge {
  display: inline-block;
  border: 1px solid rgba(110,48,88,0.2);
  color: var(--wine);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.pe-title {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.1;
  color: var(--ink);
}
.pe-title em {
  color: var(--wine);
  font-style: normal;
}
.pe-desc {
  max-width: 400px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
.pe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.pe-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: rgba(255,255,255,0.75); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.pe-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  opacity: 1;
}
.pe-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.65) 100%);
}
.pe-card:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}
.pe-card-num {
  position: absolute;
  top: 24px; left: 24px;
  font-family: var(--display);
  font-size: 14px;
  color: var(--wine);
  z-index: 2;
}
.pe-card-icon {
  position: absolute;
  top: 24px; right: 24px;
  width: 40px; height: 40px;
  background: var(--wine);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  z-index: 2;
  transition: transform 0.4s;
}
.pe-card:hover .pe-card-icon {
  transform: rotate(45deg);
}
.pe-card-title {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  font-family: var(--display);
  font-size: 20px;
  color: #fff;
  z-index: 2;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* ========== MODAL ========== */
.exam-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.exam-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.exam-modal-overlay.closing {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.exam-modal-box {
  background: #fdfdfd;
  border-radius: 24px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: translateY(40px) scale(0.95);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease;
}
.exam-modal-overlay.active .exam-modal-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.exam-modal-overlay.closing .exam-modal-box {
  transform: translateY(30px) scale(0.92);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 1, 1), opacity 0.3s ease;
}
.em-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(110,48,88,0.08);
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--wine);
  transition: background 0.3s, transform 0.3s, color 0.3s;
}
.em-close:hover {
  background: var(--wine);
  color: #fff;
  transform: rotate(90deg) scale(1.1);
}
.em-close:active {
  transform: rotate(180deg) scale(0.9);
  transition: transform 0.15s;
}
.em-header { margin-bottom: 32px; }
.em-tags { font-size: 11px; text-transform: uppercase; color: var(--muted); letter-spacing: 0.1em; margin-bottom: 12px; }
.em-title { font-family: var(--display); font-size: 32px; color: var(--ink); margin-bottom: 24px; }
.em-content { background: rgba(252,250,253,0.65); padding: 24px; border-radius: 16px; border-left: 4px solid var(--wine); margin-bottom: 24px;}
.em-content h5 { font-family: var(--display); font-size: 18px; margin-bottom: 12px; color: var(--ink); }
.em-content ul { list-style: none; padding: 0; margin-bottom: 0; }
.em-content ul li { margin-bottom: 12px; font-size: 14px; line-height: 1.5; color: var(--muted); padding-left: 16px; position: relative; }
.em-content ul li::before { content: '•'; position: absolute; left: 0; color: var(--wine); }

/* ========== GOOGLE REVIEWS ========== */
.google-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.gr-card {
  background: rgba(255,255,255,0.75); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.3s, box-shadow 0.3s;
}
.gr-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.gr-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.gr-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #eee;
}
.gr-name { font-weight: 600; color: var(--ink); font-size: 15px; margin-bottom: 4px; }
.gr-meta { font-size: 12px; color: var(--muted); }
.gr-stars { color: #fbbc04; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.gr-text { font-size: 14px; line-height: 1.6; color: var(--muted); }

/* Remove background shape overlap on hero stats */
.hero-stat-card {
  display: none !important;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.review-avatar {
  border: 2px solid var(--cream);
}

@keyframes floatUp {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
@keyframes floatDown {
  0% { transform: translateY(0); }
  50% { transform: translateY(10px); }
  100% { transform: translateY(0); }
}
.hero-doctor-badge {
  position: absolute;
  top: 30%;
  left: 10%;
  padding: 16px 24px;
  border-radius: 16px;
  z-index: 10;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
  .hero-doctor-badge { top: 10%; left: 0; }
}

@keyframes scrollTrack {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
.reviews-track {
  animation: scrollTrack 30s linear infinite;
}
.reviews-wrap:hover .reviews-track {
  animation-play-state: paused;
}


/* ========== ABOUT TIMELINE ========== */
.about-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
  margin-bottom: 8px;
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 6px;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.5;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.timeline-item:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 20px rgba(110,48,88,0.06);
  background: rgba(255,255,255,0.75); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.timeline-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.timeline-item span {
  font-weight: 500;
}


/* ========== TIMELINE TOGGLE ========== */
.timeline-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 8px 0;
  background: none;
  border: none;
  color: var(--wine);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s;
}
.timeline-toggle:hover {
  opacity: 0.7;
}
.timeline-toggle svg {
  transition: transform 0.3s;
}
.timeline-toggle.expanded svg {
  transform: rotate(180deg);
}
.timeline-hidden {
  overflow: hidden;
  transition: max-height 0.4s ease;
}

/* ========== STATUS CLOSED ========== */
.status-indicator.closed .status-dot {
  background: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.2);
}
.status-indicator.closed .status-text {
  color: #e53e3e;
}


/* ========== PROC PREMIUM GRID ========== */
.proc-premium {
  padding: 80px 0;
}
.proc-premium .section-title,
.proc-premium .section-intro,
.proc-premium .section-label {
  text-align: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.proc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .proc-grid { grid-template-columns: 1fr; }
}
.proc-card {
  background: rgba(255,255,255,0.75); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s, border-color 0.4s;
}
.proc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--wine), rgba(110,48,88,0.3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.proc-card:hover::before {
  transform: scaleX(1);
}
.proc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(110,48,88,0.08);
  border-color: rgba(110,48,88,0.15);
}
.proc-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(110,48,88,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--wine);
  margin-bottom: 20px;
  transition: background 0.3s, transform 0.3s;
}
.proc-card:hover .proc-card-icon {
  background: var(--wine);
  color: #fff;
  transform: scale(1.05) rotate(-3deg);
}
.proc-card-title {
  font-family: var(--display);
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 10px;
}
.proc-card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 16px;
}
.proc-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
}
.proc-card:hover .proc-card-link {
  opacity: 1;
  transform: translateX(0);
}

/* ========== SPEC PILL HOVER ========== */
.spec-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

/* Fix status-indicator closed bg */
.status-indicator.closed {
  background: rgba(229, 62, 62, 0.08);
}


/* ========== SPECS PREMIUM ========== */
.specs-premium { padding: 80px 0; }
.specs-premium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .specs-premium-grid { grid-template-columns: 1fr; }
}
.specs-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.spec-premium-card {
  position: relative;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(176,131,198,0.12);
  border-radius: 24px;
  padding: 36px 32px;
  overflow: hidden;
  cursor: default;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s, border-color 0.4s;
}
.spec-premium-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(110,48,88,0.10);
  border-color: rgba(176,131,198,0.25);
}
.spec-shine {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(176,131,198,0.08), transparent 50%);
  pointer-events: none;
  transition: opacity 0.3s;
  opacity: 0;
}
.spec-premium-card:hover .spec-shine { opacity: 1; }
.spec-number {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 300;
  color: rgba(176,131,198,0.12);
  line-height: 1;
  margin-bottom: 8px;
}
.spec-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(176,131,198,0.1), rgba(208,120,195,0.08));
  display: flex; align-items: center; justify-content: center;
  color: var(--wine);
  margin-bottom: 20px;
  transition: transform 0.4s, background 0.4s;
}
.spec-premium-card:hover .spec-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, var(--wine), var(--blush));
  color: #fff;
}
.spec-premium-card h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
}
.spec-premium-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 16px;
}
.spec-tags {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.spec-tags span {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: rgba(176,131,198,0.08);
  color: var(--wine);
  transition: background 0.3s, color 0.3s;
}
.spec-premium-card:hover .spec-tags span {
  background: rgba(176,131,198,0.15);
}
/* Accent card */
.spec-accent {
  background: linear-gradient(145deg, var(--wine) 0%, var(--blush) 100%) !important;
  border-color: transparent !important;
}
.spec-accent .spec-number { color: rgba(255,255,255,0.15); }
.spec-accent .spec-icon-wrap {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.spec-accent:hover .spec-icon-wrap {
  background: rgba(255,255,255,0.25);
  color: #fff;
}
.spec-accent h3 { color: #fff; }
.spec-accent p { color: rgba(255,255,255,0.8); }
.spec-accent .spec-tags span {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.spec-accent:hover .spec-tags span {
  background: rgba(255,255,255,0.25);
}
.spec-accent .spec-shine {
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.12), transparent 50%);
}

/* ========== PROC V2 GRID ========== */
.proc-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .proc-grid-v2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .proc-grid-v2 { grid-template-columns: 1fr; } }

.proc-v2-card {
  position: relative;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(176,131,198,0.10);
  border-radius: 24px;
  padding: 32px 28px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s, border-color 0.4s;
}
.proc-v2-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--wine), var(--rose));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.proc-v2-card:hover::before { transform: scaleX(1); }
.proc-v2-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(110,48,88,0.10);
  border-color: rgba(176,131,198,0.2);
}
.proc-v2-shine {
  position: absolute; inset: 0;
  background: radial-gradient(350px circle at var(--mx, 50%) var(--my, 50%), rgba(176,131,198,0.07), transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.proc-v2-card:hover .proc-v2-shine { opacity: 1; }
.proc-v2-num {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--wine);
  opacity: 0.5;
  margin-bottom: 16px;
}
.proc-v2-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(176,131,198,0.1), rgba(208,120,195,0.06));
  display: flex; align-items: center; justify-content: center;
  color: var(--wine);
  margin-bottom: 20px;
  transition: transform 0.4s, background 0.4s, color 0.3s;
}
.proc-v2-card:hover .proc-v2-icon {
  background: linear-gradient(135deg, var(--wine), var(--blush));
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
}
.proc-v2-card h4 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
}
.proc-v2-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 16px;
}
.proc-v2-arrow {
  display: inline-flex;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(176,131,198,0.08);
  align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--wine);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s, transform 0.4s, background 0.3s;
}
.proc-v2-card:hover .proc-v2-arrow {
  opacity: 1;
  transform: translateX(0);
}
/* CTA Card Premium Update */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulseIcon {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.proc-v2-cta {
  background: linear-gradient(-45deg, var(--wine), #8a3a6b, var(--blush), var(--wine)) !important;
  background-size: 300% 300% !important;
  animation: gradientMove 6s ease infinite;
  border-color: transparent !important;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}



.proc-v2-cta .proc-v2-cta-inner {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
}
.proc-v2-cta h4 { color: #fff !important; font-size: 26px; margin-bottom: 8px; text-shadow: 0 2px 6px rgba(0,0,0,0.2); }
.proc-v2-cta p { color: rgba(255,255,255,0.9) !important; margin-bottom: 16px; font-size: 15px; }

.proc-v2-cta .proc-v2-arrow {
  opacity: 1; transform: none;
  background: rgba(255,255,255,0.25);
  color: #fff;
  margin: 0 auto;
  transition: all 0.4s;
}

.proc-v2-cta:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.proc-v2-cta:hover .proc-v2-arrow {
  background: #fff;
  color: var(--wine);
  transform: translateX(5px);
}

.proc-v2-cta svg { color: #fff; margin-bottom: 16px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)); }
.proc-v2-cta:hover svg {
  animation: pulseIcon 1.5s infinite;
}
