/* ================================
   DERMOGLAM ESTÉTICA — Premium Design
================================ */

:root {
  --cream: #FAF6F1;
  --cream-dark: #F0E8DC;
  --rose: #E8C4C4;
  --rose-dark: #D4A5A5;
  --rose-gold: #C9A98B;
  --rose-gold-dark: #A58568;
  --gold: #D4AF37;
  --gold-light: #E6C872;
  --gold-dark: #A68628;
  --olive: #9A9579;
  --navy: #1A1423;
  --navy-light: #2D2538;
  --charcoal: #2D2620;
  --charcoal-light: #4A3F36;
  --text: #3D342A;
  --text-light: #6B5F54;
  --white: #FFFFFF;
  --green-whatsapp: #25D366;
  --green-whatsapp-dark: #128C7E;
  --shadow-sm: 0 2px 8px rgba(45, 38, 32, 0.04);
  --shadow: 0 8px 30px rgba(45, 38, 32, 0.08);
  --shadow-lg: 0 20px 60px rgba(45, 38, 32, 0.12);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-slow: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.1;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

em { font-style: italic; color: var(--gold-dark); font-weight: 500; }

a { color: inherit; text-decoration: none; transition: var(--transition); }

img { max-width: 100%; height: auto; display: block; }

/* ================================
   REVEAL ANIMATIONS
================================ */
.reveal-up { opacity: 0; transform: translateY(40px); transition: var(--transition-slow); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: var(--transition-slow); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: var(--transition-slow); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
  transition-delay: var(--delay, 0s);
}

/* ================================
   HEADER
================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding: 18px 0;
  transition: var(--transition);
}

#header.scrolled {
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(45, 38, 32, 0.06);
}

#header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--charcoal);
  flex-shrink: 0;
}

.logo img {
  max-height: 52px;
  width: auto;
  transition: var(--transition);
}

.logo-mark {
  color: var(--gold-dark);
  font-size: 28px;
  transition: var(--transition);
}

.logo:hover .logo-mark { transform: rotate(180deg); }
.logo-text em { color: var(--gold-dark); }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0 auto;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal-light);
  letter-spacing: 0.3px;
  position: relative;
  padding: 4px 0;
}

.nav-menu a:hover { color: var(--gold-dark); }

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-menu a:hover::after { width: 100%; }

.btn-nav {
  background: var(--charcoal);
  color: var(--white) !important;
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition);
  flex-shrink: 0;
}

.btn-nav:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(166, 134, 40, 0.3);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
}

/* ================================
   HERO
================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 32px 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(232, 196, 196, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(212, 175, 55, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, #F5EDE3 100%);
}

.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero::before {
  top: 30%; right: 15%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232, 196, 196, 0.4) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  bottom: 15%; left: 8%;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -30px); }
}

.hero-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content { max-width: 560px; }

.hero-tagline {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  color: var(--gold-dark);
  margin-bottom: 28px;
  padding: 10px 20px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 100px;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.hero h1 {
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--charcoal);
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-whatsapp);
  color: var(--white);
  padding: 18px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--green-whatsapp-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 18px 32px;
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-secondary:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-large { padding: 22px 44px; font-size: 16px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 36px;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.stat { text-align: left; }

.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 11px;
  letter-spacing: 1.2px;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 500;
}

/* Hero Visual - Carousel + Floating Badges */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 620px;
  margin: 0 auto;
}

.hero-img-main {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--rose) 0%, var(--gold) 100%);
  animation: fadeSlideUp 1s ease 0.2s both;
  position: relative;
}

.hero-float-badge {
  position: absolute;
  background: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatUp 3s ease-in-out infinite;
  z-index: 3;
  white-space: nowrap;
}

.hero-float-1 {
  top: 30px;
  left: -30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.hero-float-2 {
  bottom: 60px;
  right: -30px;
  animation-delay: 1.5s;
}

.hero-float-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-float-label {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.3;
}

.hero-float-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.hero-float-2 strong {
  display: block;
  font-size: 13px;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.hero-float-2 small {
  font-size: 11px;
  color: var(--text-light);
}

/* Carousel */
.hero-carousel { position: relative; }

.carousel-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 6s ease;
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.carousel-slide.failed { display: none; }

.carousel-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.25) 0%, transparent 50%);
  pointer-events: none;
}

.carousel-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.2) 100%);
  pointer-events: none;
}

.hero-svg {
  width: 160px;
  height: 160px;
  color: var(--white);
  opacity: 0.85;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.2));
  position: relative;
  z-index: 2;
  animation: floatSlow 6s ease-in-out infinite;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

.hero-slide-label {
  margin-top: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 1px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
  position: relative;
  z-index: 2;
  font-style: italic;
}

/* Hero gradient slides - rose gold / navy palette */
.grad-hero-1 { background: linear-gradient(135deg, #C9A98B 0%, #A58568 50%, #7D5F40 100%); }
.grad-hero-2 { background: linear-gradient(135deg, #E8C4C4 0%, #D4A5A5 50%, #A58568 100%); }
.grad-hero-3 { background: linear-gradient(135deg, #D4AF37 0%, #A68628 50%, #7D5F1C 100%); }
.grad-hero-4 { background: linear-gradient(135deg, #B89373 0%, #A58568 50%, #2D2620 100%); }

.grad-rose-soft { background: linear-gradient(135deg, #FADBD8 0%, #E8C4C4 50%, #D4A5A5 100%); }
.grad-gold-soft { background: linear-gradient(135deg, #F5E6C8 0%, #E6C872 50%, #D4AF37 100%); }

.small-svg {
  width: 70px;
  height: 70px;
  color: var(--white);
  opacity: 0.9;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
  animation: floatSlow 8s ease-in-out infinite;
}

.hero-img-small {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hero-img-small::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3) 0%, transparent 60%);
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 100px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.dot:hover { background: rgba(255, 255, 255, 0.7); }
.dot.active { background: var(--white); width: 24px; border-radius: 10px; }

.hero-img-main.img-fallback img { display: none; }

.hero-img-small {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--cream-dark), var(--gold-light));
  position: relative;
}

.hero-img-1 {
  grid-column: 1;
  grid-row: 2;
  animation: fadeSlideUp 1s ease 0.4s both;
}

.hero-img-2 {
  grid-column: 1;
  grid-row: 1;
  animation: fadeSlideUp 1s ease 0.6s both;
}

.hero-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-small img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-img-small.img-fallback img { display: none; }

.hero-badge {
  position: absolute;
  bottom: 30px;
  left: -16px;
  background: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: fadeSlideUp 1s ease 0.8s both;
  z-index: 5;
  white-space: nowrap;
}

.hero-badge-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-badge-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  flex-shrink: 0;
}

.hero-badge strong {
  display: block;
  font-size: 13px;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.hero-badge small {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================================
   GRADIENTS
================================ */
.grad-rose { background: linear-gradient(135deg, #FADBD8 0%, #E8C4C4 100%); }
.grad-gold { background: linear-gradient(135deg, #F5E6C8 0%, #D4AF37 100%); }
.grad-peach { background: linear-gradient(135deg, #FAE5D3 0%, #E8B080 100%); }
.grad-olive { background: linear-gradient(135deg, #E8E4D0 0%, #9A9579 100%); }

.grad-1 { background: linear-gradient(135deg, #F5E6C8 0%, #D4AF37 100%); }
.grad-2 { background: linear-gradient(135deg, #FADBD8 0%, #D4A5A5 100%); }
.grad-3 { background: linear-gradient(135deg, #F0E8DC 0%, #C9A98B 100%); }
.grad-4 { background: linear-gradient(135deg, #FAE5D3 0%, #D4A68A 100%); }
.grad-5 { background: linear-gradient(135deg, #E8DDD0 0%, #A58568 100%); }
.grad-6 { background: linear-gradient(135deg, #F5ECE0 0%, #C9A98B 50%, #D4AF37 100%); }

.grad-rose-avatar { background: linear-gradient(135deg, #E8C4C4 0%, #D4A5A5 100%); }
.grad-gold-avatar { background: linear-gradient(135deg, #E6C872 0%, #A68628 100%); }
.grad-peach-avatar { background: linear-gradient(135deg, #D4B896 0%, #A58568 100%); }
.grad-olive-avatar { background: linear-gradient(135deg, #B0AC95 0%, #7A7562 100%); }

/* ================================
   SECTION HEAD
================================ */
.section-head { margin-bottom: 72px; }

.section-head.center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  color: var(--gold-dark);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-head h2 {
  font-size: clamp(38px, 5.5vw, 64px);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.7;
  margin-top: 16px;
}

/* ================================
   FEATURES
================================ */
.features { padding: 120px 0; background: var(--white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--cream);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}

.feature-visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.feature-visual::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 40%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.feature-icon-big {
  font-size: 72px;
  color: var(--white);
  opacity: 0.95;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
  transition: transform 0.6s ease;
}

.feature-card:hover .feature-icon-big { transform: scale(1.15) rotate(5deg); }

.feature-card h3 { font-size: 24px; margin: 24px 24px 10px; }

.feature-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0 24px 28px;
}

/* ================================
   TREATMENTS
================================ */
.treatments {
  padding: 140px 0;
  background: linear-gradient(180deg, #F5EDE3 0%, var(--cream) 100%);
  position: relative;
}

.cabin-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 16px 36px;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold-dark);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.tab-btn.active, .tab-btn:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(166, 134, 40, 0.3);
}

.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.6s ease; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.treatment-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(201, 169, 139, 0.12);
  cursor: pointer;
}

.treatment-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.treatment-visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.treatment-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35) 0%, transparent 60%);
}

.treatment-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.08) 100%);
}

.tx-icon {
  width: 72px;
  height: 72px;
  color: var(--white);
  opacity: 0.9;
  stroke-width: 1.4;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.12));
  position: relative;
  z-index: 2;
  transition: transform 0.6s ease;
}

.treatment-card:hover .tx-icon { transform: scale(1.15); }

.pattern-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  animation: twinkle 3s ease-in-out infinite;
}

.pattern-dot:nth-child(2) { top: 18%; right: 22%; animation-delay: 0s; }
.pattern-dot:nth-child(3) { bottom: 25%; left: 16%; animation-delay: 1s; width: 4px; height: 4px; }
.pattern-dot:nth-child(4) { top: 60%; right: 18%; animation-delay: 2s; width: 5px; height: 5px; }

@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 0.9; transform: scale(1.2); }
}

.treatment-body { padding: 24px 26px 26px; }

.treatment-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(212, 175, 55, 0.12);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.treatment-body h4 { font-size: 24px; margin-bottom: 8px; }

.treatment-body p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.6;
  min-height: 44px;
}

.treatment-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-light);
  padding-top: 18px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.price {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 16px;
}

.cta-center { text-align: center; margin-top: 80px; }
.cta-center p { color: var(--text-light); margin-bottom: 24px; font-size: 17px; }

/* ================================
   TEAM
================================ */
.team { padding: 140px 0; background: var(--white); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.team-card { transition: var(--transition); text-align: center; }

.team-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 3px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.team-avatar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
}

.team-avatar span {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.team-card:hover .team-avatar {
  transform: translateY(-8px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

.team-info { padding: 0 8px; }

.team-card h3 { font-size: 26px; margin-bottom: 4px; }

.team-role {
  display: block;
  font-size: 12px;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.team-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ================================
   CTA BANNER
================================ */
.cta-banner {
  padding: 140px 0;
  background: linear-gradient(135deg, var(--cream) 0%, #F5EDE3 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  filter: blur(60px);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.cta-text p {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.cta-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 500px;
  margin: 0 auto;
}

.cta-img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--rose) 0%, var(--gold) 100%);
}

.cta-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.cta-img:hover img { transform: scale(1.05); }
.cta-img.img-fallback img { display: none; }

.cta-float {
  position: absolute;
  background: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatUp 3s ease-in-out infinite;
}

.cta-float-1 {
  top: 30px;
  left: -30px;
}

.cta-float-2 {
  bottom: 60px;
  right: -20px;
  animation-delay: 1.5s;
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.cta-float-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--gold-dark);
}

.cta-float-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.cta-float-label {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

/* ================================
   CONTACT
================================ */
.contact { padding: 140px 0 100px; background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: start;
  padding: 22px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
  border-left: 3px solid var(--gold);
}

.contact-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.contact-item strong {
  display: block;
  font-size: 14px;
  color: var(--charcoal);
  margin-bottom: 4px;
  letter-spacing: 0.3px;
  font-weight: 700;
}

.contact-item p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-item a {
  color: var(--gold-dark);
  font-weight: 500;
}

.link-map {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--gold-dark) !important;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 560px;
}

.contact-map iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
}

/* ================================
   FOOTER
================================ */
.footer {
  padding: 80px 0 36px;
  background: var(--navy);
  color: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.logo-text-footer {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 18px;
}

.footer img { max-height: 60px; margin-bottom: 18px; }

.footer p {
  font-size: 14px;
  color: rgba(250, 246, 241, 0.7);
  line-height: 1.7;
  margin-bottom: 6px;
}

.footer strong {
  display: block;
  font-size: 12px;
  color: var(--gold-light);
  margin-bottom: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.footer a { color: var(--gold-light); font-size: 14px; }

.footer-social {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 16px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 100px;
  transition: var(--transition);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-social:hover {
  background: rgba(212, 175, 55, 0.2);
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 36px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  font-size: 13px;
  color: rgba(250, 246, 241, 0.5);
}

.footer-legal {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(250, 246, 241, 0.35);
}

.footer-legal a {
  color: rgba(250, 246, 241, 0.5);
  font-size: 12px;
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/* ================================
   WHATSAPP FLOAT
================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 64px; height: 64px;
  background: var(--green-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: var(--transition);
}

.whatsapp-float:hover {
  background: var(--green-whatsapp-dark);
  transform: scale(1.1);
}

.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green-whatsapp);
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}

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

/* ─── TABLET (1024px) ─── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 70px; }
  .hero-content { max-width: 720px; margin: 0 auto; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual {
    max-width: 560px;
    margin: 0 auto;
    height: 520px;
    grid-template-columns: 150px 1fr;
  }
  .hero-img-main { max-width: 360px; }
  .cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .cta-text { text-align: center; max-width: 600px; margin: 0 auto; }
  .cta-text p { margin-left: auto; margin-right: auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-map { min-height: 400px; }
  .features, .treatments, .team, .cta-banner, .contact { padding: 100px 0; }
}

/* ─── MOBILE (768px) ─── */
@media (max-width: 768px) {
  body { font-size: 15px; }
  .container { padding: 0 20px; }

  /* Header */
  #header { padding: 14px 0; }
  #header.scrolled { padding: 10px 0; }
  .logo { font-size: 22px; }
  .logo-mark { font-size: 24px; }
  .nav-menu {
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 30px;
    gap: 24px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .menu-toggle { display: flex; }
  .btn-nav { display: none; }

  /* Hero */
  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero h1 { font-size: 42px; line-height: 1.05; }
  .hero-tagline {
    font-size: 10px;
    letter-spacing: 2.5px;
    padding: 8px 16px;
    margin-bottom: 20px;
  }
  .hero-subtitle { font-size: 16px; margin-bottom: 28px; }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-bottom: 40px;
  }
  .hero-actions a {
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
  }
  .hero-stats {
    gap: 20px;
    padding-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .stat-num { font-size: 28px; }
  .stat-label { font-size: 10px; letter-spacing: 1px; }

  /* Hero Visual - Mobile: single image + badges */
  .hero-visual {
    max-width: 340px;
    height: 440px;
    margin: 0 auto;
  }
  .hero-img-main {
    width: 100%;
    height: 100%;
  }
  .hero-float-1 {
    top: 10px;
    left: -10px;
    padding: 10px 14px;
  }
  .hero-float-2 {
    bottom: 20px;
    right: -10px;
    padding: 10px 14px;
    gap: 10px;
  }
  .hero-float-num { font-size: 24px; }
  .hero-float-label { font-size: 10px; }
  .hero-float-icon { width: 32px; height: 32px; font-size: 13px; }
  .hero-float-2 strong { font-size: 11px; }
  .hero-float-2 small { font-size: 10px; }
  .hero-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .hero-badge strong { font-size: 11px; }
  .hero-badge small { font-size: 10px; }
  .hero-badge-icon { width: 34px; height: 34px; font-size: 13px; }

  /* Sections */
  .section-head { margin-bottom: 44px; }
  .section-head h2 { font-size: 36px; }
  .section-sub { font-size: 15px; }
  .features, .treatments, .team, .cta-banner, .contact { padding: 72px 0; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; gap: 20px; }
  .feature-visual { height: 160px; }
  .feature-icon-big { font-size: 56px; }
  .feature-card h3 { font-size: 22px; margin: 20px 20px 8px; }
  .feature-card p { margin: 0 20px 22px; }

  /* Treatments */
  .cabin-tabs { gap: 8px; margin-bottom: 40px; }
  .tab-btn {
    padding: 12px 24px;
    font-size: 13px;
    flex: 1;
    text-align: center;
    min-width: 0;
  }
  .treatments-grid { grid-template-columns: 1fr; gap: 20px; }
  .treatment-visual { height: 160px; }
  .tx-icon { width: 56px; height: 56px; }
  .treatment-body { padding: 22px 22px 22px; }
  .treatment-body h4 { font-size: 22px; }
  .treatment-body p { min-height: auto; margin-bottom: 14px; }
  .cta-center { margin-top: 50px; }
  .cta-center p { font-size: 15px; }

  /* Team */
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .team-avatar { width: 130px; height: 130px; font-size: 40px; letter-spacing: 2px; }
  .team-card h3 { font-size: 22px; }
  .team-role { font-size: 11px; letter-spacing: 1.2px; }

  /* CTA Banner */
  .cta-visual { max-width: 360px; }
  .cta-text h2 { font-size: 34px; }
  .cta-text p { font-size: 15px; }
  .cta-float {
    padding: 12px 16px;
    gap: 10px;
  }
  .cta-float-1 { top: 8px; left: -8px; }
  .cta-float-2 { bottom: 8px; right: -8px; }
  .cta-float-num { font-size: 22px; }
  .cta-float-icon { width: 30px; height: 30px; font-size: 13px; }
  .cta-float-label { font-size: 11px; }

  /* Contact */
  .contact-info { gap: 14px; }
  .contact-item { padding: 18px; gap: 14px; }
  .contact-icon { width: 44px; height: 44px; font-size: 18px; border-radius: 12px; }
  .contact-item strong { font-size: 13px; }
  .contact-item p { font-size: 14px; }
  .contact-map { min-height: 320px; border-radius: var(--radius-lg); }

  /* Footer */
  .footer { padding: 60px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .logo-text-footer { font-size: 26px; }

  /* WhatsApp Float */
  .whatsapp-float {
    width: 56px; height: 56px;
    bottom: 20px; right: 20px;
  }
  .whatsapp-float svg { width: 28px; height: 28px; }
}

/* ─── SMALL MOBILE (480px) ─── */
@media (max-width: 480px) {
  body { font-size: 14.5px; }
  .container { padding: 0 18px; }

  /* Hero */
  .hero { padding: 100px 0 50px; }
  .hero h1 { font-size: 36px; }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 24px;
  }
  .hero-stats .stat {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 8px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  }
  .hero-stats .stat:last-child { border-bottom: none; }
  .stat-num { font-size: 26px; margin-bottom: 0; min-width: 70px; }

  .hero-visual { height: 380px; }
  .hero-img-main { height: 380px; }

  /* Sections */
  .section-head h2 { font-size: 30px; }
  .features, .treatments, .team, .cta-banner, .contact { padding: 60px 0; }

  /* Team - stack on very small screens */
  .team-grid { grid-template-columns: 1fr; gap: 30px; max-width: 320px; margin: 0 auto; }
  .team-avatar { width: 120px; height: 120px; font-size: 36px; }

  /* CTA */
  .cta-text h2 { font-size: 30px; }
  .cta-float { padding: 10px 14px; }
  .cta-float-1 { top: 4px; left: 0; }
  .cta-float-2 { bottom: 4px; right: 0; }

  /* Tabs */
  .tab-btn { padding: 11px 16px; font-size: 12.5px; }

  /* Contact */
  .contact-map { min-height: 280px; }

  /* Badge smaller */
  .hero-badge { padding: 8px 12px; bottom: 12px; left: 12px; }
  .hero-badge strong { font-size: 10px; }
  .hero-badge small { font-size: 9px; }
  .hero-badge-icon { width: 30px; height: 30px; font-size: 11px; }

  /* Footer bottom */
  .footer-bottom { font-size: 12px; }
  .footer-legal { font-size: 11px; }
}
