:root {
  --petrol: #073e4a;
  --petrol-dark: #052f38;
  --teal: #527b7d;
  --gold: #c5a06a;
  --gold-light: #e7d5bc;
  --ivory: #f4efe8;
  --cream: #fbfaf7;
  --white: #ffffff;
  --charcoal: #263238;
  --muted: #667176;
  --border: rgba(7, 62, 74, 0.12);
  --shadow: 0 18px 45px rgba(17, 49, 55, 0.09);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1200px;
}

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

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

body {
  overflow-x: hidden;
  color: var(--charcoal);
  background: var(--cream);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

ul {
  list-style: none;
}

h1,
h2,
h3 {
  color: var(--petrol);
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  line-height: 1.08;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 105px 0;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--petrol);
  border-radius: 8px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 20px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-heading {
  max-width: 770px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading h2 {
  position: relative;
  padding-bottom: 22px;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

.section-heading h2::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 42px;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: translateX(-50%);
}

.section-heading p {
  max-width: 650px;
  margin: 20px auto 0;
  color: var(--muted);
}

.section-heading-left {
  max-width: none;
  margin-inline: 0;
  text-align: left;
}

.section-heading-left h2::after {
  left: 0;
  transform: none;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 23px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

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

.button:focus-visible,
.main-nav a:focus-visible,
.social-links a:focus-visible,
.floating-whatsapp:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(197, 160, 106, 0.55);
  outline-offset: 3px;
}

.button-primary {
  color: var(--white);
  background: var(--petrol);
  box-shadow: 0 12px 25px rgba(7, 62, 74, 0.15);
}

.button-primary:hover {
  background: var(--petrol-dark);
  box-shadow: 0 15px 30px rgba(7, 62, 74, 0.22);
}

.button-outline {
  color: var(--petrol);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(7, 62, 74, 0.4);
}

.button-outline:hover {
  background: var(--white);
  border-color: var(--petrol);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 10px 30px rgba(16, 46, 51, 0.07);
}

.header-inner {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  color: var(--petrol);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.05;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--teal);
  font-size: 0.58rem;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  padding: 34px 0 31px;
  color: #354247;
  font-size: 0.82rem;
  font-weight: 600;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  height: 2px;
  background: var(--petrol);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button-header {
  min-height: 46px;
  padding: 10px 17px;
  color: var(--white);
  background: var(--petrol);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--petrol);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.93) 0%, rgba(251, 250, 247, 0.84) 48%, rgba(251, 250, 247, 0.02) 73%),
    url("assets/hero-background.png") center/cover no-repeat;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 650px;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  max-width: 590px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 70px 55px 70px 0;
}

.hero-copy h1 {
  max-width: 590px;
  font-size: clamp(3.1rem, 5.1vw, 5rem);
  letter-spacing: -0.025em;
}

.hero-copy p {
  max-width: 505px;
  margin-top: 24px;
  color: #4f5d61;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-photo-wrap {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.hero-photo-wrap::before {
  position: absolute;
  inset: 8% -14% -10% 8%;
  z-index: -1;
  background: linear-gradient(145deg, #8a898d, #65666b);
  border-radius: 48% 0 0 45%;
  content: "";
}

.hero-photo {
  position: absolute;
  right: 2%;
  bottom: 0;
  width: min(100%, 570px);
  height: 94%;
  object-fit: cover;
  object-position: center top;
  border-radius: 52% 0 0 0;
  filter: saturate(0.95) contrast(1.02);
}

.hero-photo-wrap::after {
  position: absolute;
  right: -7%;
  bottom: -18%;
  width: 360px;
  height: 360px;
  background: rgba(197, 160, 106, 0.13);
  border: 1px solid rgba(197, 160, 106, 0.35);
  border-radius: 50%;
  content: "";
}

.hero-orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(197, 160, 106, 0.4);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  top: 74px;
  left: 32px;
  width: 115px;
  height: 115px;
}

.hero-orbit-two {
  top: 101px;
  left: 59px;
  width: 61px;
  height: 61px;
}

.hero-badge {
  position: absolute;
  right: 18px;
  bottom: 38px;
  z-index: 3;
  display: flex;
  max-width: 270px;
  align-items: center;
  gap: 12px;
  padding: 13px 17px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 12px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-badge-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  color: var(--white);
  background: var(--petrol);
  border-radius: 50%;
}

.hero-badge-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-badge span:last-child {
  display: flex;
  flex-direction: column;
}

.hero-badge strong {
  color: var(--petrol);
  font-size: 0.78rem;
  line-height: 1.35;
}

.hero-badge small {
  color: var(--muted);
  font-size: 0.66rem;
}

.trust-strip {
  position: relative;
  z-index: 3;
  background: var(--white);
  border-block: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  position: relative;
  display: flex;
  min-height: 104px;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
}

.trust-item:not(:last-child)::after {
  position: absolute;
  top: 25%;
  right: 0;
  width: 1px;
  height: 50%;
  background: var(--border);
  content: "";
}

.line-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  color: var(--petrol);
}

.line-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.trust-item > span:last-child {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  color: var(--petrol);
  font-size: 0.72rem;
  line-height: 1.4;
}

.trust-item small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.45;
}

.treatments {
  background:
    radial-gradient(circle at 12% 8%, rgba(231, 213, 188, 0.15), transparent 25%),
    var(--cream);
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.treatment-card {
  position: relative;
  min-height: 330px;
  padding: 34px 23px 28px;
  overflow: hidden;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.treatment-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.treatment-card:hover {
  border-color: rgba(197, 160, 106, 0.5);
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.treatment-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  display: grid;
  width: 82px;
  height: 82px;
  margin: 0 auto 20px;
  place-items: center;
  color: var(--petrol);
  background: var(--cream);
  border: 1px solid rgba(197, 160, 106, 0.22);
  border-radius: 50%;
}

.service-icon svg {
  width: 55px;
  height: 55px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.treatment-card h3 {
  font-size: 1.55rem;
}

.card-rule {
  display: block;
  width: 27px;
  height: 2px;
  margin: 13px auto 15px;
  background: var(--gold);
}

.treatment-card p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.7;
}

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(50px, 8vw, 105px);
}

.about-copy h2 {
  margin-bottom: 3px;
  font-size: clamp(2.6rem, 4.4vw, 4rem);
}

.registration {
  margin-bottom: 22px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.about-copy > p:not(.registration) {
  margin-bottom: 16px;
  color: var(--muted);
}

.about-copy .button {
  margin-top: 16px;
}

.about-photo {
  position: relative;
  min-height: 565px;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.about-photo::before {
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: calc(var(--radius-md) - 6px);
  content: "";
  pointer-events: none;
}

.about-photo img {
  width: 100%;
  height: 565px;
  object-fit: cover;
}

.about-photo figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 19px 22px;
  color: var(--white);
  background: rgba(7, 62, 74, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  backdrop-filter: blur(12px);
}

.about-photo figcaption strong {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
}

.about-photo figcaption span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
}

.results {
  background:
    linear-gradient(rgba(244, 239, 232, 0.88), rgba(244, 239, 232, 0.88)),
    radial-gradient(circle at 100% 0, rgba(197, 160, 106, 0.2), transparent 32%);
}

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

.result-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(197, 160, 106, 0.25);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(28, 52, 56, 0.06);
}

.result-title {
  padding: 8px 8px 20px;
  text-align: center;
}

.result-title span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.result-title h3 {
  margin-top: 5px;
  font-size: 1.65rem;
}

.before-after {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.before-after figure {
  position: relative;
  height: 315px;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.before-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-tag {
  position: absolute;
  bottom: 12px;
  left: 50%;
  z-index: 2;
  min-width: 72px;
  padding: 7px 12px;
  color: var(--petrol);
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  font-size: 0.7rem;
  font-weight: 700;
  transform: translateX(-50%);
}

.comparison-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--petrol);
  background: var(--white);
  border: 3px solid var(--gold-light);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.comparison-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.facial-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.facial-results figure {
  overflow: hidden;
  background: var(--ivory);
  border-radius: var(--radius-sm);
}

.facial-results img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.facial-results figcaption {
  padding: 11px;
  color: var(--petrol);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
}

.results-note {
  max-width: 850px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: center;
}

.benefits {
  background: var(--cream);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}

.benefit-card {
  display: flex;
  min-height: 205px;
  align-items: flex-start;
  gap: 21px;
  padding: 35px 29px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.benefit-icon {
  display: grid;
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  place-items: center;
  color: var(--petrol);
  background: var(--ivory);
  border-radius: 50%;
}

.benefit-icon svg {
  width: 39px;
  height: 39px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.benefit-card h3 {
  margin-bottom: 11px;
  font-size: 1.35rem;
}

.benefit-card p {
  color: var(--muted);
  font-size: 0.79rem;
}

.testimonials {
  padding-top: 40px;
  background: var(--cream);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}

.testimonial-card {
  position: relative;
  min-height: 240px;
  padding: 34px 30px 27px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.quote-mark {
  position: absolute;
  top: 12px;
  left: 23px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 4.2rem;
  line-height: 1;
  opacity: 0.8;
}

.testimonial-card > p {
  position: relative;
  z-index: 1;
  min-height: 110px;
  padding-top: 30px;
  color: #4e5c60;
  font-size: 0.8rem;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.avatar {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--petrol), var(--teal));
  border: 3px solid var(--ivory);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
}

.testimonial-card footer > span:last-child {
  display: flex;
  flex-direction: column;
}

.testimonial-card strong {
  color: var(--petrol);
  font-size: 0.8rem;
}

.testimonial-card small {
  color: var(--gold);
  letter-spacing: 0.1em;
}

.cta-section {
  padding: 20px 0 80px;
  background: var(--cream);
}

.cta-box {
  position: relative;
  display: grid;
  min-height: 190px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 35px 50px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 0 50%, rgba(197, 160, 106, 0.22), transparent 30%),
    linear-gradient(115deg, var(--petrol-dark), var(--petrol));
  border-radius: var(--radius-md);
}

.cta-box::after {
  position: absolute;
  top: -150px;
  right: 21%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.cta-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  color: var(--petrol);
  background: var(--white);
  border: 8px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.cta-icon svg {
  width: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.cta-box > div {
  position: relative;
  z-index: 1;
}

.eyebrow-light {
  color: var(--gold-light);
}

.cta-box h2 {
  max-width: 540px;
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.button-light {
  position: relative;
  z-index: 1;
  color: var(--petrol);
  background: var(--white);
}

.button-light:hover {
  color: var(--petrol-dark);
  background: var(--ivory);
  box-shadow: 0 13px 28px rgba(0, 0, 0, 0.15);
}

.contact {
  background: var(--white);
}

.contact-panel {
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(0, 1.25fr) minmax(390px, 0.75fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.contact-map {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #e8eeec;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  filter: saturate(0.75) contrast(0.95);
}

.map-open-link {
  position: absolute;
  bottom: 22px;
  left: 22px;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  padding: 10px 17px;
  color: var(--white);
  background: rgba(7, 62, 74, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(7, 62, 74, 0.2);
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.map-open-link:hover {
  background: var(--petrol-dark);
  transform: translateY(-2px);
}

.map-open-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 62px);
  background:
    radial-gradient(circle at 100% 0, rgba(197, 160, 106, 0.16), transparent 36%),
    var(--cream);
}

.contact-info::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: linear-gradient(var(--gold-light), var(--gold), var(--gold-light));
  content: "";
}

.contact-info-header {
  max-width: 440px;
  padding-bottom: 27px;
  border-bottom: 1px solid var(--border);
}

.contact-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-info-header h3 {
  font-size: clamp(2rem, 3vw, 2.65rem);
}

.contact-info-header p {
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.82rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0 30px;
}

.contact-list li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.contact-list-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--petrol);
  background: var(--white);
  border: 1px solid rgba(197, 160, 106, 0.28);
  border-radius: 50%;
}

.contact-list-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.contact-list li > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact-list strong {
  color: var(--petrol);
  font-size: 0.77rem;
}

.contact-list a,
.contact-list small {
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 0.73rem;
  font-style: normal;
  transition: color 0.2s ease;
}

.contact-list a:hover {
  color: var(--gold);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.contact-actions .button {
  flex: 1 1 175px;
  padding-inline: 16px;
}

.site-footer {
  padding: 65px 0 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--petrol-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.7fr 0.9fr 0.65fr;
  gap: 55px;
  padding-bottom: 48px;
}

.brand-footer .brand-copy strong {
  color: var(--white);
}

.brand-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.6);
}

.footer-brand p {
  max-width: 290px;
  margin: 18px 0 6px;
  font-size: 0.78rem;
}

.footer-brand > span {
  color: var(--gold-light);
  font-size: 0.72rem;
}

.site-footer h3 {
  margin-bottom: 17px;
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-footer li + li {
  margin-top: 5px;
}

.site-footer li a {
  font-size: 0.72rem;
  transition: color 0.2s ease;
}

.site-footer li a:hover {
  color: var(--gold-light);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--petrol-dark);
  background: var(--gold-light);
  border-radius: 50%;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-links a:hover {
  background: var(--white);
  transform: translateY(-3px);
}

.social-links svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.footer-bottom {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.66rem;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 950;
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: #25d366;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow:
    0 12px 28px rgba(14, 94, 48, 0.3),
    0 0 0 1px rgba(7, 62, 74, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
  box-shadow:
    0 16px 34px rgba(14, 94, 48, 0.38),
    0 0 0 1px rgba(7, 62, 74, 0.06);
  transform: translateY(-4px) scale(1.05);
}

.floating-whatsapp svg {
  display: block;
  width: 32px;
  height: 32px;
  fill: currentColor;
  stroke: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 20px;
  }

  .main-nav a {
    font-size: 0.76rem;
  }

  .button-header {
    display: none;
  }

  .treatment-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .treatment-card:nth-last-child(-n + 2) {
    transform: translateX(50%);
  }

  .treatment-card:nth-last-child(-n + 2):hover {
    transform: translateX(50%) translateY(-7px);
  }

  .trust-item {
    padding-inline: 18px;
  }

  .trust-item strong {
    font-size: 0.66rem;
  }

  .about-grid {
    gap: 55px;
  }

  .benefit-card {
    flex-direction: column;
  }

  .cta-box {
    grid-template-columns: auto 1fr;
  }

  .cta-box .button {
    grid-column: 2;
    justify-self: start;
  }

  .contact-panel {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.8fr);
  }
}

@media (max-width: 860px) {
  .section {
    padding: 80px 0;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand-copy strong {
    font-size: 1.08rem;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: flex;
    max-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    background: rgba(251, 250, 247, 0.99);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 20px 30px rgba(14, 45, 50, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }

  .main-nav.open {
    max-height: 440px;
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 16px 30px;
    border-top: 1px solid rgba(7, 62, 74, 0.06);
    font-size: 0.85rem;
  }

  .main-nav a::after {
    display: none;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 680px;
    align-items: center;
    margin: 0 auto;
    padding: 74px 0 55px;
    text-align: center;
  }

  .hero-copy p {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-photo-wrap {
    width: min(100%, 650px);
    min-height: 620px;
    margin-inline: auto;
  }

  .hero-photo-wrap::before {
    inset: 2% 3% -4%;
    border-radius: 49% 49% 0 0;
  }

  .hero-photo {
    right: 50%;
    width: min(92%, 520px);
    height: 96%;
    border-radius: 49% 49% 0 0;
    transform: translateX(50%);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2)::after {
    display: none;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .treatment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .treatment-card:nth-last-child(-n + 2) {
    transform: none;
  }

  .treatment-card:nth-last-child(-n + 2):hover {
    transform: translateY(-7px);
  }

  .treatment-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 9px);
    justify-self: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-copy {
    max-width: 670px;
  }

  .about-photo {
    min-height: 620px;
  }

  .about-photo img {
    height: 620px;
  }

  .results-grid,
  .benefit-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 0;
    flex-direction: row;
  }

  .testimonial-card {
    min-height: 0;
  }

  .testimonial-card > p {
    min-height: 0;
    margin-bottom: 25px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 66px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: 2.2rem;
  }

  .brand-mark {
    width: 35px;
    height: 35px;
  }

  .brand-copy strong {
    font-size: 0.97rem;
  }

  .brand-copy small {
    font-size: 0.51rem;
  }

  .hero-copy {
    padding-top: 58px;
  }

  .hero-copy h1 {
    font-size: clamp(2.75rem, 13vw, 3.8rem);
  }

  .hero-copy p {
    font-size: 0.94rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-photo-wrap {
    min-height: 480px;
  }

  .hero-badge {
    right: 12px;
    bottom: 17px;
    left: 12px;
    max-width: none;
  }

  .hero-orbit-one {
    left: 3px;
  }

  .hero-orbit-two {
    left: 30px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 90px;
    padding: 17px 12px;
  }

  .trust-item:not(:last-child) {
    border-bottom: 1px solid var(--border);
  }

  .trust-item::after {
    display: none;
  }

  .trust-item strong {
    font-size: 0.75rem;
  }

  .trust-item small {
    font-size: 0.68rem;
  }

  .treatment-grid {
    grid-template-columns: 1fr;
  }

  .treatment-card {
    min-height: 0;
    padding: 30px 26px;
  }

  .treatment-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .service-icon {
    width: 72px;
    height: 72px;
  }

  .service-icon svg {
    width: 48px;
    height: 48px;
  }

  .about-copy h2 {
    font-size: 2.65rem;
  }

  .about-photo,
  .about-photo img {
    height: 480px;
    min-height: 480px;
  }

  .about-photo figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .result-card {
    padding: 13px;
  }

  .before-after {
    gap: 6px;
  }

  .before-after figure {
    height: 240px;
  }

  .comparison-icon {
    width: 32px;
    height: 32px;
  }

  .facial-results {
    grid-template-columns: 1fr;
  }

  .facial-results img {
    height: auto;
    max-height: 430px;
  }

  .benefit-card {
    flex-direction: column;
    padding: 30px 25px;
  }

  .cta-section {
    padding-bottom: 66px;
  }

  .cta-box {
    grid-template-columns: 1fr;
    gap: 21px;
    padding: 38px 24px;
    text-align: center;
  }

  .cta-icon {
    width: 76px;
    height: 76px;
    margin-inline: auto;
  }

  .cta-box .button {
    grid-column: auto;
    justify-self: stretch;
  }

  .contact-panel {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 390px;
  }

  .contact-info::before {
    top: 0;
    right: 0;
    bottom: auto;
    width: auto;
    height: 4px;
  }

  .contact-info {
    padding: 38px 25px;
  }

  .map-open-link {
    right: 15px;
    bottom: 15px;
    left: 15px;
    justify-content: center;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .button {
    width: 100%;
    flex-basis: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-block: 20px;
  }

  .floating-whatsapp {
    right: 15px;
    bottom: 15px;
    width: 54px;
    height: 54px;
  }
}
