:root {
  /* 🎀 DONNA - Medicina estetica */
  --bg: #b77a8e;
  --bg-rgb: 183, 122, 142;

  --card: #8d5568;
  --cta: #744354;
  --text: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
  transition: background 0.6s cubic-bezier(0.77, 0, 0.18, 1);
  padding-top: 140px;
}

/* HEADER */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--bg);
  z-index: 1000;
  padding-bottom: 15px;
  transition: background 0.6s cubic-bezier(0.77, 0, 0.18, 1);
}

.logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-inline: 1rem;
  padding: 20px 0 25px;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo img {
  height: 32px;
  filter: brightness(0) invert(1);
}

/* TOGGLE */
.toggle-wrapper {
  display: flex;
  justify-content: center;
}

.toggle {
  width: 240px;
  height: 54px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 40px;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.slider {
  position: absolute;
  width: 50%;
  height: 100%;
  background: var(--card);
  border-radius: 40px;
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  z-index: 1;
}

.toggle-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-weight: 600;
  font-size: 12px;
  z-index: 2;
  transition:
    opacity 0.3s ease,
    color 0.3s ease;
  color: rgba(255, 255, 255, 0.7);
}

.toggle-item.active {
  color: white;
  opacity: 1;
}

.toggle-item:not(.active) {
  opacity: 0.6;
}

.toggle svg {
  width: 20px;
  height: 20px;
}

/* HERO */
.hero {
  position: relative;
  height: 65vh;
  min-height: 400px;
  overflow: hidden;
}

.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.75) 100%
  );
}
.hero-content {
  position: absolute;
  bottom: 60px;
  left: 24px;
  right: 24px;
  color: white;
}

.hero-content h1 {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.hero-content p {
  font-size: 18px;
  opacity: 0.85;
  max-width: 80%;
}

.hero-content {
  animation: fadeUp 0.9s ease forwards;
  opacity: 0;
}

.fade-out {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.color-wave {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  pointer-events: none;
  transform: scale(0);
  opacity: 0;
  z-index: 9999;
}

.color-wave.animate {
  animation: waveExpand 0.9s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}

@keyframes waveExpand {
  0% {
    transform: scale(0);
    opacity: 0.6;
  }
  60% {
    opacity: 0.4;
  }
  100% {
    transform: scale(80);
    opacity: 0;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SEZIONI */
/* ===== SEZIONE BLOCCO ===== */

.section-block {
  margin: 60px 20px;
  padding: 30px 20px;
  border-radius: 36px;
  background: linear-gradient(
    145deg,
    rgba(var(--section-color), 0.35),
    rgba(var(--section-color), 0.15)
  );
  box-shadow: 0 40px 100px rgba(var(--section-color), 0.45);
  backdrop-filter: blur(12px);
  transition: 0.4s ease;
}

/* HEADER SEZIONE */

.section-header {
  margin-left: 0.5rem;
  margin-bottom: 40px;
  padding-block: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.section-header-left {
  display: flex;
  align-items: center;
  gap: 22px;
}

.section-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.05)
  );
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
}

.section-icon svg {
  width: 40px;
  height: 40px;
  stroke: white;
  fill: white;
}

.section-icon .custom-svg {
  width: 90px;
  height: 90px;
  stroke: white;
  fill: white;
}
.section-icon .custom-svg-2 {
  width: 80px;
  height: 80px;
  stroke: white;
  fill: white;
}

.section-icon .custom-svg-3 {
  width: 70px;
  height: 70px;
  stroke: white;
  fill: white;
}

/* Testi sezione */

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 6px;
}

.section-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
}

/* TOTAL BODY più importante */

.tb-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.tb-icon {
  width: 70px;
  height: 70px;
  box-shadow: 0 25px 60px rgba(var(--section-color), 0.6);
}

.tb-icon svg {
  width: 46px;
  height: 46px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

/* TOTAL BODY GRID FULL WIDTH */
.tb-grid {
  grid-template-columns: 1fr;
  gap: 32px;
}

/* TOTAL BODY CARD */

/* BADGE */
.badge {
  position: absolute;
  top: 5px;
  right: 7px;
  background: white;
  color: var(--bg);
  font-size: 7px;
  font-weight: 800;
  padding: 5px 9px;
  border-radius: 999px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* TITLE EVIDENZIATO */
.tb-title {
  font-size: 16px;
  letter-spacing: 2px;
  opacity: 1;
}

.card {
  position: relative;
  margin-inline: 1rem;
  margin-bottom: 1.5rem;
  padding: 22px;
  border-radius: 26px;

  /* 🔥 Base più chiara */
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.32));

  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  overflow: hidden;

  box-shadow: 0 10px 40px rgba(var(--section-color), 0.28);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at 30% 20%,
    rgba(var(--section-color), 0.18),
    rgba(var(--section-color), 0.08) 45%,
    transparent 75%
  );

  opacity: 0;
  transition: opacity 0.5s ease;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0.05)
  );
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: all 0.4s ease;
}

.card:hover .card-icon {
  transform: rotate(8deg) scale(1.1);
}

.card-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
  opacity: 0.95;
}

.tb-main {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
}

.tb-sub {
  font-size: 12px;
  opacity: 0.7;
  margin-top: -6px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pricing {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-lock {
  width: 100%;
  text-align: center;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;

  padding: 10px 12px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);

  opacity: 0.92;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

/* micro shine coerente con il tuo "featured" */
.price-lock {
  position: relative;
  overflow: hidden;
}
.price-lock::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  transform: rotate(25deg);
  animation: shine 5s infinite;
  opacity: 0.6;
}

.label {
  font-size: 11px;
  text-transform: uppercase;
  opacity: 0.7;
  letter-spacing: 1px;
}

.amount {
  font-size: 18px;
  font-weight: 700;
}

.highlight {
  font-size: 20px;
  font-weight: 800;
}

.price-single,
.price-pack {
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 12px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rate {
  font-size: 10px;
  opacity: 0.6;
}

.total-card {
  border: 2px solid rgba(255, 255, 255, 0.35);
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(var(--section-color), 0.6);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.18),
    rgba(0, 0, 0, 0.1)
  );
}

.offer-badge {
  position: absolute;
  top: 40px;
  right: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.price-pack.featured {
  background: linear-gradient(
    145deg,
    rgba(var(--section-color), 0.25),
    rgba(var(--section-color), 0.15)
  );
  border: 1px solid rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.featured-top {
  position: absolute;
  top: 8px;
  right: 10px;
}

.recommended {
  font-size: 9px;
  background: white;
  color: var(--bg);
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 1px;
}

.per-session {
  font-size: 12px;
  opacity: 0.85;
}

.saving {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.8;
}

.price-pack.featured::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transform: rotate(25deg);
  animation: shine 4s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(25deg);
  }
  100% {
    transform: translateX(100%) rotate(25deg);
  }
}

/* CTA */
/* CTA BUTTON REAL */
.call-btn-wrapper {
  position: fixed;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 14px;
}
.call-btn {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  padding: 15px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

/* PRIMARIA */
.call-btn.primary {
  background: white;
  color: #111;
}

/* SECONDARIA */
.call-btn.secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
}

.btn-icon {
  width: 16px;
  height: 16px;
}

.call-btn.primary .btn-icon {
  color: var(--card);
}

/* WHATSAPP sempre bianco */
.call-btn.secondary .btn-icon {
  color: white;
}

/* MICRO INTERAZIONE */
.call-btn:hover {
  transform: translateY(-2px);
}

.call-btn:active {
  transform: translateY(1px);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.25);
  }
  50% {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
  }
  100% {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.25);
  }
}
