:root {
  --pink: #d97aa6;
  --pink-light: #f0e1e8;
  --ottanio: #0f7c82;
  --ottanio-dark: #0b666b;
  --ottanio-light: #eaf7f7;
  --dark: #2b2b2b;
  --text: #555555;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

section {
  padding: 100px 0;
  scroll-margin-top: 100px;
}

header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, .05);
  transition: background .35s ease, box-shadow .35s ease;
}

header.scrolled {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  width: auto;
  height: 110px;
  max-width: none;
  display: block;
  transition: transform .35s ease;
}

header.scrolled .logo img {
  transform: scale(.85);
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}

nav ul li {
  list-style: none;
}

nav a {
  color: var(--dark);
  font-weight: 500;
  transition: .3s;
  position: relative;
}

nav a:hover {
  color: var(--ottanio);
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: .3s;
}

nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 34px;
  cursor: pointer;
  color: var(--dark);
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: var(--ottanio);
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  display: inline-block;
  font-weight: 600;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45), transparent);
  transform: skewX(-25deg);
  transition: left .8s ease;
}

.btn-primary:hover {
  background: var(--ottanio-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 124, 130, .22);
}

.btn-primary:hover::before {
  left: 150%;
}

.btn-secondary {
  border: 2px solid var(--pink);
  color: var(--pink);
  padding: 15px 30px;
  border-radius: 50px;
  display: inline-block;
  font-weight: 500;
  transition: .3s;
}

.btn-secondary:hover {
  background: var(--pink);
  color: #fff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--pink);
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  display: inline-block;
  font-weight: 600;
  transition: .3s;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
}

.bioshape-hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  background-color: #fff;
  display: flex;
  align-items: center;
}

.bioshape-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, .32) 0%, rgba(255, 255, 255, .15) 28%, rgba(255, 255, 255, .04) 46%, rgba(255, 255, 255, 0) 60%);
}

.bioshape-hero-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.bioshape-hero-picture img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.bioshape-hero-content {
  max-width: 700px;
  margin-left: 5%;
  transform: translateY(-35px);
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  color: var(--ottanio);
  letter-spacing: 4px;
  font-weight: 600;
  margin-bottom: 20px;
}

.bioshape-hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
  text-transform: none;
}

.bioshape-title-top {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5.5rem;
  line-height: 1;
  color: var(--dark);
  font-weight: 400;
  text-transform: none;
}

.bioshape-title-bottom {
  font-family: 'Allura', cursive;
  font-size: 6.8rem;
  color: var(--pink);
  line-height: .7;
  margin-top: -10px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
}

.bioshape-location {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--ottanio);
  letter-spacing: .5px;
  margin: 10px 0 22px;
  line-height: 1.2;
}

.bioshape-hero-description {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 35px;
  max-width: 600px;
}

.desktop-description {
  display: block;
}

.mobile-description {
  display: none;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.rating {
  margin-top: 30px;
  color: var(--ottanio);
  font-weight: 600;
}

.hero-subtitle,
.bioshape-hero-title,
.bioshape-location,
.bioshape-hero-description,
.hero-buttons,
.rating {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFade .8s ease forwards;
}

.hero-subtitle {
  animation-delay: .2s;
}

.bioshape-hero-title {
  animation-delay: .45s;
}

.bioshape-location {
  animation-delay: .7s;
}

.bioshape-hero-description {
  animation-delay: .9s;
}

.hero-buttons {
  animation-delay: 1.15s;
}

.rating {
  animation-delay: 1.35s;
}

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

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem;
  line-height: 1.15;
  color: var(--dark);
}

.section-tag {
  display: block;
  text-align: center;
  color: var(--ottanio);
  font-weight: 600;
  letter-spacing: 4px;
  margin-bottom: 15px;
}

.section-tag-left {
  text-align: left;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  color: var(--text);
}

.intro-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  width: 100%;
}

.intro-wrapper > * {
  min-width: 0;
}

.intro-image {
  position: relative;
}

.intro-image::before {
  display: none;
}

.intro-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .10);
}

.intro-content p {
  margin-bottom: 20px;
  color: var(--text);
  font-size: 1.08rem;
}

.intro-content .btn-primary {
  margin-top: 15px;
}

.natural-result-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  width: 100%;
}

.natural-result-wrapper > * {
  min-width: 0;
}

.natural-result-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem;
  line-height: 1.15;
  margin-bottom: 30px;
}

.natural-result-content p {
  color: var(--text);
  margin-bottom: 20px;
  font-size: 1.08rem;
}

.natural-result-image {
  position: relative;
}

.natural-result-image::after {
  display: none;
}

.natural-result-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .10);
}

.intro-image img,
.natural-result-image img {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: block;
  height: auto;
}

.intro-content,
.natural-result-content {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: break-word;
}

.natural-highlight {
  margin-top: 30px;
  padding: 25px 28px;
  border-left: 5px solid var(--pink);
  background: rgba(255, 255, 255, .80);
  border-radius: 0 18px 18px 0;
  color: var(--ottanio-dark);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  line-height: 1.4;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.benefit-card,
.zone-card,
.pre-post-card {
  background: #fff;
  padding: 35px;
  border-radius: 24px;
  border: 1px solid rgba(217, 122, 166, .12);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.benefit-card:hover,
.zone-card:hover,
.pre-post-card:hover {
  transform: translateY(-10px);
  border-color: rgba(15, 124, 130, .25);
  box-shadow: 0 20px 45px rgba(15, 124, 130, .15);
}

.benefit-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  color: var(--pink);
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 20px;
}

.benefit-card h3,
.zone-card h3,
.pre-post-card h3 {
  color: var(--ottanio);
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.benefit-card p,
.zone-card p,
.pre-post-card p {
  color: var(--text);
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.zone-card {
  padding: 30px 26px 28px;
}

.zone-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--pink), #e79aba);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 18px;
  box-shadow: 0 12px 26px rgba(217, 122, 166, .18);
}

.zone-card h3 {
  font-size: 1.28rem;
  margin-bottom: 12px;
}

.zone-card p {
  font-size: 1.02rem;
  line-height: 1.7;
}

.process {
  background: var(--pink-light);
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 20px;
  padding-top: 20px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 62px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, rgba(217, 122, 166, .15), rgba(15, 124, 130, .30), rgba(217, 122, 166, .15));
}

.process-step {
  position: relative;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(15, 124, 130, .08);
  border-radius: 26px;
  padding: 34px 28px 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(2px);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(15, 124, 130, .14);
  border-color: rgba(15, 124, 130, .18);
}

.process-step-marker {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--pink), #e79aba);
  color: #fff;
  box-shadow: 0 12px 26px rgba(217, 122, 166, .22);
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  letter-spacing: .5px;
}

.process-step-content {
  text-align: left;
}

.process-step-content h3 {
  color: var(--ottanio);
  margin: 0 0 14px;
  font-size: 1.35rem;
}

.process-step-content p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.75;
}

.pre-post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.pre-post-card ul {
  padding-left: 20px;
  color: var(--text);
}

.pre-post-card li {
  margin-bottom: 10px;
}

.pre-post-card h3 {
  margin-bottom: 15px;
}

.faq-wrapper {
  max-width: 850px;
  margin: auto;
}

details {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .04);
  border-radius: 14px;
  margin-bottom: 15px;
  padding: 20px 24px;
  box-shadow: var(--shadow);
}

summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--dark);
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--ottanio);
  font-size: 1.5rem;
  transition: transform .3s ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  color: var(--text);
  padding-top: 18px;
}

.bioshape-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ottanio), #145f63);
  color: #fff;
  text-align: center;
}

.bioshape-cta::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  top: -220px;
  left: -120px;
}

.bioshape-cta::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(217, 122, 166, .15);
  right: -170px;
  bottom: -230px;
}

.bioshape-cta-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.cta-small-title {
  display: block;
  letter-spacing: 3px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
  opacity: .85;
}

.bioshape-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 25px;
}

.bioshape-cta p {
  max-width: 750px;
  margin: 0 auto 35px;
  font-size: 1.1rem;
}

.bioshape-cta .btn-primary {
  background: var(--pink);
}

.bioshape-cta .btn-primary:hover {
  background: #c96795;
}

footer {
  background: #103d40;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.footer-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.footer-info p {
  line-height: 1.6;
  opacity: .95;
  font-size: .95rem;
  margin-bottom: 4px;
}

.footer-info .copyright {
  margin-top: 15px;
  font-size: .85rem;
  opacity: .7;
}

.footer-legal {
  margin-top: 10px;
  font-size: .9rem;
}

.footer-legal a {
  color: #fff;
  opacity: .8;
  transition: opacity .3s;
}

.footer-legal a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-legal .separator {
  margin: 0 10px;
  opacity: .4;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #006d6f;
  color: #fff;
  padding: 16px 24px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
  z-index: 99999;
  transition: .3s;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, .15);
  z-index: 999999;
  transform: translateY(100%);
  transition: transform .5s ease-in-out;
  display: flex;
  justify-content: center;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  width: 90%;
  max-width: 1200px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  font-size: .95rem;
  color: var(--text);
  flex: 1;
  min-width: 280px;
  line-height: 1.5;
}

.cookie-content a {
  color: var(--ottanio);
  font-weight: 600;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem;
  padding: 12px 24px;
  border-radius: 50px;
}

.cookie-btn-reject {
  color: #9f4568;
  border-color: #9f4568;
  background: #fff;
}

.fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}

.fade-section.show {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card,
.process-card,
.before-after-card,
.zone-card,
.pre-post-card {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .6s ease, transform .6s ease, box-shadow .35s ease;
}

.benefit-card.show,
.process-card.show,
.before-after-card.show,
.zone-card.show,
.pre-post-card.show {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 769px) and (max-width: 1366px) {
  .container {
    width: 90% !important;
    margin: 0 auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .menu-toggle {
    display: block !important;
    font-size: 34px;
    cursor: pointer;
  }
  .btn-whatsapp {
    display: none !important;
  }
  .header-container {
    width: 90% !important;
    margin: auto !important;
    flex-wrap: wrap;
  }
  nav {
    width: 100%;
  }
  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 18px;
    padding: 25px 0;
    background: #fff;
  }
  nav ul.active {
    display: flex !important;
  }
  .logo img {
    height: 75px;
  }
  .bioshape-hero {
    min-height: 85vh;
    padding: 0 !important;
  }
  .bioshape-hero-picture img {
    object-position: center center;
  }
  .bioshape-hero-content {
    margin-left: 0 !important;
    padding-left: 20px !important;
    padding-right: 15px !important;
    max-width: 400px;
    transform: translateY(-20px);
  }
  .hero-subtitle {
    font-size: .95rem;
    letter-spacing: 2.5px;
    line-height: 1.4;
    margin-bottom: 18px;
  }
  .bioshape-title-top {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    line-height: 1;
  }
  .bioshape-title-bottom {
    font-family: 'Allura', cursive;
    font-size: 5.2rem;
    line-height: .9;
    margin-top: -6px;
  }
  .bioshape-location {
    font-size: 1.45rem;
    margin: 12px 0 20px;
  }
  .bioshape-hero-description {
    font-size: 1.02rem;
    line-height: 1.6;
    margin-bottom: 28px;
    color: #333;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 15px 28px;
  }
  .hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, .85);
    color: #b84a7e;
    font-weight: 600;
  }
  .rating {
    margin-top: 22px;
    font-size: .9rem;
  }
  section {
    padding: 80px 0;
  }
  .section-title h2,
  .natural-result-content h2,
  .bioshape-cta h2 {
    font-size: 2.8rem;
  }
  .intro-wrapper,
  .natural-result-wrapper {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 35px;
    width: 100%;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .zones-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pre-post-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .process-image img {
    height: 100%;
    min-height: 300px;
  }
  .floating-whatsapp {
    right: 15px;
    bottom: 15px;
    padding: 14px 20px;
  }
}

@media (max-width: 768px) {
  .container {
    width: 90% !important;
    margin: 0 auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .menu-toggle {
    display: block !important;
    font-size: 34px;
    cursor: pointer;
  }
  .btn-whatsapp {
    display: none !important;
  }
  .header-container {
    width: 90% !important;
    margin: auto !important;
    flex-wrap: wrap;
  }
  nav {
    width: 100%;
  }
  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 18px;
    padding: 25px 0;
    background: #fff;
  }
  nav ul.active {
    display: flex !important;
  }
  .logo img {
    height: 75px;
  }
  .desktop-description {
    display: none;
  }
  .mobile-description {
    display: block;
  }
  .bioshape-hero {
    min-height: 85vh;
    padding: 0 !important;
  }
  .bioshape-hero-picture img {
    object-position: center center;
  }
  .bioshape-hero-content {
    margin-left: 0 !important;
    padding-left: 18px !important;
    padding-right: 10px !important;
    max-width: 310px;
    transform: translateY(-25px);
  }
  .hero-subtitle {
    font-size: .82rem;
    letter-spacing: 2px;
    line-height: 1.4;
    max-width: 200px;
    margin-bottom: 15px;
  }
  .bioshape-title-top {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.1rem;
    line-height: 1;
    text-transform: none;
  }
  .bioshape-title-bottom {
    font-family: 'Allura', cursive;
    font-size: 4.1rem;
    margin-top: -5px;
    line-height: .9;
    text-transform: none;
  }
  .bioshape-location {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  .bioshape-hero-description {
    font-size: .92rem;
    line-height: 1.5;
    margin-bottom: 25px;
    color: #333;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 13px 25px;
  }
  .hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, .85);
    color: #b84a7e;
    font-weight: 600;
  }
  .rating {
    margin-top: 20px;
    font-size: .8rem;
  }
  section {
    padding: 75px 0;
  }
  .section-title {
    margin-bottom: 35px;
  }
  .section-title h2,
  .natural-result-content h2,
  .bioshape-cta h2 {
    font-size: 2.5rem;
  }
  .section-tag {
    font-size: .82rem;
    letter-spacing: 3px;
  }
  .section-tag-left {
    text-align: center;
  }
  .section-intro {
    margin-bottom: 45px;
  }
  .intro-wrapper,
  .natural-result-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .intro-content,
  .natural-result-content {
    text-align: left;
  }
  .intro-image {
    width: 95%;
    margin: auto;
  }
  .intro-image::before {
    left: -12px;
    bottom: -12px;
  }
  .natural-result-image {
    width: 95%;
    margin: auto;
  }
  .natural-result-image::after {
    top: -10px;
    right: -10px;
  }
  .natural-highlight {
    font-size: 1.25rem;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .zone-card,
  .benefit-card,
  .pre-post-card {
    padding: 28px;
  }
  .zones-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .process-timeline {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    gap: 22px;
    margin-top: 20px;
    padding-top: 0;
    overflow: visible;
  }
  .process-timeline::before {
    content: "";
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 31px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(217, 122, 166, .25), rgba(15, 124, 130, .45), rgba(217, 122, 166, .25));
  }
  .process-step {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    padding: 24px 20px 24px 0;
    border-radius: 22px;
    overflow: hidden;
  }
  .process-step-marker {
    width: 62px;
    height: 62px;
    margin: 0;
    font-size: 1.4rem;
    flex-shrink: 0;
  }
  .process-step-content {
    min-width: 0;
    max-width: 100%;
    padding-top: 4px;
  }
  .process-step-content h3 {
    font-size: 1.3rem;
    line-height: 1.2;
    margin: 0 0 10px;
    overflow-wrap: break-word;
  }
  .process-step-content p {
    width: 100%;
    max-width: 100%;
    font-size: .96rem;
    line-height: 1.65;
    overflow-wrap: break-word;
    word-break: normal;
  }
  .pre-post-grid {
    grid-template-columns: 1fr;
  }
  details {
    padding: 18px 20px;
  }
  summary {
    font-size: .95rem;
  }
  .bioshape-cta h2 {
    font-size: 2.5rem;
  }
  .bioshape-cta p {
    font-size: 1rem;
  }
  .floating-whatsapp {
    right: 15px;
    bottom: 15px;
    padding: 14px 20px;
  }
  .cookie-content {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }
  .cookie-buttons {
    justify-content: center;
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  .cookie-buttons button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .bioshape-hero-content {
    max-width: 250px;
    padding-left: 10px !important;
  }
  .bioshape-title-top {
    font-size: 2.6rem;
  }
  .bioshape-title-bottom {
    font-size: 3.4rem;
  }
  .section-title h2,
  .natural-result-content h2,
  .bioshape-cta h2 {
    font-size: 2.2rem;
  }
  .hero-buttons a,
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 1600px) and (max-height: 950px) {
  .bioshape-hero {
    min-height: 700px;
  }
  .bioshape-hero-picture img {
    object-position: center 50%;
  }
}

/* bioshape - additional refinements */
.benefits-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (min-width: 1200px) {
  .benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1199px) and (min-width: 769px) {
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile hero buttons compact override */
@media (max-width: 768px) {
  .hero-buttons > a,
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: fit-content !important;
    max-width: 100% !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 10px 18px !important;
    font-size: 0.9rem !important;
    line-height: 1.2;
    white-space: nowrap !important;
    flex: 0 0 auto;
  }
}

/* =========================================================
   BIOSHAPE — COMPONENTI SPECIFICI DELLA PAGINA
   Il layout generale e la hero seguono il modello della
   pagina Epilazione Laser; qui restano solo le differenze
   necessarie per i contenuti specifici di Bioshape.
   ========================================================= */

/* Collegamento recensioni: stessa struttura e comportamento del modello. */
.rating a.rating-link {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .3rem .55rem;
  cursor: pointer;
}

.rating a.rating-link .rating-link-cta {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  font-size: .84em;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: transform .2s ease, opacity .2s ease;
}

.rating a.rating-link:hover .rating-link-cta {
  transform: translateX(2px);
}

.rating a.rating-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
  border-radius: 3px;
}

/* Colori delle sezioni. */
.bioshape-tech-section,
.handpiece-section,
.pre-post-section {
  background: #fff;
}

.how-it-works-section,
.consultation-section {
  background: var(--ottanio-light);
}

.zones-section,
.faq-section {
  background: #fafafa;
}

/* Griglie specifiche Bioshape. */
.benefits-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.zones-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Scheda del manipolo. */
.handpiece-card {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(15, 124, 130, .10);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(0, 0, 0, .07);
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .6s ease, transform .6s ease, box-shadow .35s ease;
}

.handpiece-card.show {
  opacity: 1;
  transform: translateY(0);
}

.handpiece-card:hover {
  box-shadow: 0 24px 58px rgba(15, 124, 130, .14);
}

.handpiece-image {
  min-height: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8faf9;
}

.handpiece-image img {
  width: 100%;
  max-width: 445px;
  height: auto;
  border-radius: 22px;
}

.handpiece-content {
  padding: 42px 38px;
}

.handpiece-area {
  display: block;
  margin-bottom: 8px;
  color: var(--pink);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 2.2px;
}

.handpiece-content h3 {
  margin-bottom: 18px;
  color: var(--ottanio);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.35rem;
  line-height: 1;
}

.handpiece-content p {
  margin-bottom: 16px;
  color: var(--text);
}

.handpiece-content p:last-child {
  margin-bottom: 0;
}

/* Prima e dopo. */
.before-after-section {
  background: linear-gradient(135deg, var(--pink-light), #fff 72%);
}

.before-after-title {
  margin-bottom: 42px;
}

.before-after-title h2 {
  color: var(--ottanio);
}

.comparison-images {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.comparison-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 124, 130, .08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .09);
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .6s ease, transform .6s ease, box-shadow .35s ease, border-color .35s ease;
}

.comparison-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.comparison-card.show {
  opacity: 1;
  transform: translateY(0);
}

.comparison-card:hover {
  border-color: rgba(15, 124, 130, .18);
  box-shadow: 0 22px 50px rgba(15, 124, 130, .13);
}

/* Trattamenti correlati. */
.es-related-services {
  padding: 90px 0;
  background: linear-gradient(180deg, #fff 0%, #fff7fb 100%);
}

.es-related-services .es-related-intro {
  max-width: 780px;
  margin: 0 auto 42px;
  color: var(--text);
  line-height: 1.8;
  text-align: center;
}

.es-related-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.es-related-card {
  min-height: 190px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 109, 119, .12);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .06);
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.es-related-card:hover,
.es-related-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(255, 79, 157, .45);
  box-shadow: 0 24px 48px rgba(0, 0, 0, .1);
}

.es-related-card:focus-visible {
  outline: 3px solid #ff4f9d;
  outline-offset: 4px;
}

.es-related-card h3 {
  margin: 0 0 12px;
  color: var(--ottanio);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  line-height: 1.1;
}

.es-related-card p {
  margin: 0 0 20px;
  color: var(--text);
  line-height: 1.65;
}

.es-related-card span {
  margin-top: auto;
  color: #ff4f9d;
  font-weight: 600;
}

/* Stili accessibili presenti nel modello HTML. */
button.menu-toggle {
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  color: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

button.menu-toggle:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 5px;
  border-radius: 4px;
}

.footer-legal .cookie-preferences-link {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: inherit;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-decoration: none;
}

.footer-legal .cookie-preferences-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-legal .cookie-preferences-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
  border-radius: 2px;
}

/* Tablet: predisposto per bioshape-hero-tablet.webp. */
@media (min-width: 769px) and (max-width: 1366px) {
  .benefits-grid,
  .zones-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile: componenti specifici, senza alterare le regole della hero modello. */
@media (max-width: 768px) {
  .rating a.rating-link {
    justify-content: center;
  }

  .benefits-grid,
  .zones-grid,
  .comparison-images,
  .handpiece-card,
  .es-related-grid {
    grid-template-columns: 1fr;
  }

  .handpiece-image {
    padding: 14px;
  }

  .handpiece-content {
    padding: 30px 24px 32px;
  }

  .handpiece-content h3 {
    font-size: 2rem;
  }

  .before-after-title {
    margin-bottom: 28px;
  }

  .es-related-services {
    padding: 65px 0;
  }

  .es-related-grid {
    gap: 18px;
  }

  .es-related-card {
    min-height: auto;
    padding: 25px;
  }
}

/* Accessibilita: contrasto dei pulsanti rosa su fondo chiaro */
.btn-secondary{border-color:#b84a7e;color:#b84a7e}
.btn-secondary:hover,.btn-secondary:focus-visible{background:#b84a7e;color:#fff}
.btn-whatsapp{background:#b84a7e;color:#fff}
/* Header CTA WhatsApp compatto - desktop */
@media (min-width:1367px){header .btn-whatsapp{padding:11px 20px!important;font-size:.92rem!important;line-height:1.2!important;white-space:nowrap!important}}

/* =========================================================
   TABLET / MOBILE - rifiniture hero e recensioni (2026-08-10)
   ========================================================= */
@media (max-width:1180px){
  .rating a.rating-link{
    display:inline-flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    gap:.28rem !important;
    text-align:center !important;
    white-space:normal !important;
  }
  .rating a.rating-link .rating-link-label{display:block !important;text-align:center !important;white-space:normal !important;}
  .rating a.rating-link .rating-link-cta{display:inline-flex !important;align-items:center !important;justify-content:center !important;margin-inline:auto !important;white-space:nowrap !important;}
}
@media (min-width:769px) and (max-width:1180px) and (orientation:portrait){
  .bioshape-hero{min-height:68svh !important;}
  .bioshape-hero-picture img{object-position:right center !important;}
}
@media (min-width:1024px) and (max-width:1180px) and (orientation:landscape){
  .bioshape-hero-description{max-width:360px !important;text-wrap:pretty;}
}



/* =========================================================
   Bioshape - rifiniture hero tablet/mobile 2026-08-10 v2
   ========================================================= */
@media (max-width:1180px){
  .bioshape-hero .hero-buttons{display:flex !important;flex-wrap:wrap !important;width:auto !important;max-width:100% !important;gap:12px !important;}
  .bioshape-hero .hero-buttons .btn-primary,
  .bioshape-hero .hero-buttons .btn-secondary{
    width:fit-content !important;min-width:220px !important;max-width:100% !important;min-height:50px !important;
    padding:13px 24px !important;display:inline-flex !important;align-items:center !important;justify-content:center !important;
    box-sizing:border-box !important;font-size:.94rem !important;line-height:1.2 !important;text-align:center !important;
    white-space:nowrap !important;flex:0 0 auto !important;
  }
}
@media (min-width:769px) and (max-width:1024px) and (orientation:portrait){
  .bioshape-hero .hero-buttons{flex-direction:column !important;align-items:flex-start !important;}
}
@media (max-width:768px){
  .bioshape-hero .hero-buttons{flex-direction:column !important;align-items:flex-start !important;}
  .bioshape-hero .hero-buttons .btn-primary,.bioshape-hero .hero-buttons .btn-secondary{
    min-width:210px !important;min-height:48px !important;padding:12px 20px !important;font-size:.84rem !important;
  }
}
@media (min-width:1024px) and (max-width:1180px) and (orientation:landscape){
  .bioshape-hero .bioshape-hero-content{max-width:650px !important;}
  .bioshape-hero .bioshape-title-top{font-size:4.35rem !important;line-height:.96 !important;}
  .bioshape-hero .bioshape-title-bottom{font-size:5.45rem !important;line-height:.88 !important;}
  .bioshape-hero .bioshape-location{max-width:620px !important;font-size:1.55rem !important;line-height:1.25 !important;}
  .bioshape-hero .bioshape-hero-description{max-width:620px !important;font-size:1.14rem !important;line-height:1.55 !important;text-wrap:pretty;}
  .bioshape-hero .hero-buttons{flex-direction:row !important;align-items:center !important;}
}
