:root {
  --cream: #fff8f7;
  --cream-strong: #fffdfb;
  --rose-25: #fff1f5;
  --rose-50: #fbe3eb;
  --rose-100: #f3c7d6;
  --rose-300: #e865a1;
  --rose-500: #c94183;
  --plum: #55283f;
  --plum-soft: #7d5368;
  --nude: #ead7cc;
  --gold: #d4ad59;
  --mint: #cfe7d8;
  --line: rgba(201, 65, 131, 0.16);
  --shadow: 0 24px 70px rgba(138, 67, 99, 0.14);
  --shadow-strong: 0 32px 90px rgba(138, 67, 99, 0.2);
  --heading: "Cormorant Garamond", Georgia, serif;
  --script: "Allura", cursive;
  --body: "Manrope", "Segoe UI", sans-serif;
  --container: min(1120px, calc(100% - 32px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--body);
  color: var(--plum);
  background: var(--cream);
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  width: var(--container);
  margin: 0.85rem auto 0;
  padding: 0.72rem 0.82rem 0.72rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 250, 250, 0.72);
  box-shadow: 0 16px 42px rgba(83, 42, 60, 0.08);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 251, 0.94);
  box-shadow: 0 18px 48px rgba(83, 42, 60, 0.12);
}

.brand {
  display: grid;
  gap: 0.05rem;
  line-height: 1;
}

.brand__name {
  font-family: var(--script);
  font-size: 2.05rem;
  color: var(--rose-500);
}

.brand__role {
  margin-top: -0.15rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--plum-soft);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(0.85rem, 2vw, 1.55rem);
  font-size: 0.84rem;
  font-weight: 800;
  color: rgba(85, 40, 63, 0.76);
}

.nav-links a {
  padding: 0.4rem 0;
}

.nav-links a:hover {
  color: var(--rose-500);
}

.header-action,
.mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.78rem 1.1rem;
  border-radius: 999px;
  background: var(--plum);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(85, 40, 63, 0.18);
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--plum);
}

.menu-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.2rem auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 5.8rem;
  right: 1rem;
  left: 1rem;
  z-index: 45;
  display: grid;
  gap: 0.7rem;
  max-height: 0;
  padding: 0 1rem;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 24px;
  background: rgba(255, 253, 251, 0);
  box-shadow: none;
  opacity: 0;
  transform: translateY(-0.7rem);
  transition: max-height 220ms ease, padding 220ms ease, opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.menu-open .mobile-menu {
  max-height: 29rem;
  padding: 1rem;
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 253, 251, 0.96);
  box-shadow: var(--shadow);
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu a {
  padding: 0.85rem 0.75rem;
  border-radius: 14px;
  font-weight: 800;
}

.mobile-menu a:not(.mobile-menu__cta) {
  background: rgba(251, 227, 235, 0.52);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 100svh;
  overflow: hidden;
  background: #f1dfd8;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: saturate(1.05) brightness(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 248, 247, 0.96) 0%, rgba(255, 248, 247, 0.84) 37%, rgba(255, 248, 247, 0.18) 68%, rgba(255, 248, 247, 0.04) 100%),
    linear-gradient(0deg, rgba(85, 40, 63, 0.24), rgba(85, 40, 63, 0.02) 42%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  padding: 9rem 0 6rem;
}

.eyebrow,
.section-label {
  margin: 0 0 1rem;
  color: var(--rose-500);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--heading);
}

h1 {
  max-width: 42rem;
  margin-bottom: 1.2rem;
  color: var(--plum);
  font-size: clamp(3rem, 5.4vw, 5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero__text {
  max-width: 34rem;
  margin-bottom: 2rem;
  color: var(--plum-soft);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  line-height: 1.75;
}

.hero__actions,
.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.95rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible,
.header-action:hover,
.mobile-menu__cta:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, var(--rose-300), var(--rose-500));
  color: #fff;
  box-shadow: 0 18px 38px rgba(201, 65, 131, 0.22);
}

.button--ghost,
.button--secondary {
  border-color: var(--line);
  background: rgba(255, 253, 251, 0.82);
  color: var(--plum);
  box-shadow: 0 12px 30px rgba(138, 67, 99, 0.08);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1050px, calc(100% - 32px));
  margin: -3rem auto 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-strip div {
  display: grid;
  gap: 0.35rem;
  padding: 1.3rem;
  background: rgba(255, 253, 251, 0.92);
}

.trust-strip strong {
  font-family: var(--heading);
  font-size: 1.32rem;
}

.trust-strip span {
  color: var(--plum-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.section--reverse {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
}

.section--soft {
  width: 100%;
  padding-right: max(1rem, calc((100% - 1120px) / 2));
  padding-left: max(1rem, calc((100% - 1120px) / 2));
  background: linear-gradient(180deg, #fff8f7 0%, #fdeef3 100%);
}

.section__copy h2,
.section-heading h2,
.product-card h2,
.cta-section h2,
.support-panel h2 {
  margin-bottom: 1rem;
  color: var(--plum);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 0.96;
}

.section__copy p,
.section-heading p,
.product-card p,
.cta-section p {
  color: var(--plum-soft);
  line-height: 1.8;
}

.section__copy p {
  max-width: 42rem;
}

.portrait-card {
  position: relative;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(251, 227, 235, 0.8));
  box-shadow: var(--shadow);
}

.portrait-card::before {
  content: "";
  position: absolute;
  inset: auto -1rem -1rem 3rem;
  height: 4rem;
  border-radius: 999px;
  background: rgba(212, 173, 89, 0.22);
  filter: blur(24px);
}

.portrait-card img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 68%;
  border-radius: 26px;
}

.section-heading {
  max-width: 48rem;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.card-grid,
.material-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.info-card,
.material-card {
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 251, 0.84);
  box-shadow: 0 16px 42px rgba(138, 67, 99, 0.08);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.45rem;
  height: 2.45rem;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  background: var(--rose-50);
  color: var(--rose-500);
  font-weight: 900;
}

.info-card h3,
.material-card h3 {
  margin-bottom: 0.55rem;
  color: var(--plum);
  font-size: 1.55rem;
  line-height: 1.05;
}

.info-card p,
.material-card p {
  margin-bottom: 0;
  color: var(--plum-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.support-panel {
  min-height: 23rem;
  display: grid;
  align-content: end;
  padding: 2rem;
  border-radius: 30px;
  background:
    linear-gradient(0deg, rgba(85, 40, 63, 0.72), rgba(85, 40, 63, 0.08)),
    url("../materiais/foto-alyne-consultorio.jpeg") center 62% / cover;
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.support-panel p {
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.support-panel h2 {
  color: #fff;
}

.text-link {
  display: inline-flex;
  margin-top: 0.5rem;
  color: var(--rose-500);
  font-weight: 900;
}

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

.material-card {
  gap: 0.7rem;
}

.material-card span {
  width: fit-content;
  padding: 0.36rem 0.68rem;
  border-radius: 999px;
  background: rgba(201, 65, 131, 0.1);
  color: var(--rose-500);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.material-card .button {
  width: fit-content;
  margin-top: 0.7rem;
}

.product-section {
  padding-top: 2rem;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(207, 231, 216, 0.38), transparent 34%),
    linear-gradient(135deg, #fffdfb, #fdebf1);
  box-shadow: var(--shadow);
}

.product-card__image {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  background: #f8dfe8;
  box-shadow: 0 18px 52px rgba(138, 67, 99, 0.14);
}

.product-card__image img {
  width: 100%;
}

.clean-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.2rem 0 1.5rem;
  padding: 0;
  list-style: none;
  color: var(--plum-soft);
}

.clean-list li {
  position: relative;
  padding-left: 1.25rem;
}

.clean-list li::before {
  content: "";
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 50%;
  background: var(--gold);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  max-width: 760px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 251, 0.88);
  box-shadow: 0 12px 34px rgba(138, 67, 99, 0.08);
}

.faq-list summary {
  cursor: pointer;
  padding: 1.15rem 1.25rem;
  color: var(--plum);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 1.25rem 1.2rem;
  color: var(--plum-soft);
  line-height: 1.75;
}

.cta-section {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto clamp(4rem, 7vw, 6rem);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(85, 40, 63, 0.94), rgba(129, 62, 92, 0.92)),
    radial-gradient(circle at top left, rgba(244, 199, 214, 0.34), transparent 35%);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-strong);
}

.cta-section h2,
.cta-section p,
.cta-section .section-label {
  color: #fff;
}

.cta-section p {
  max-width: 42rem;
  margin: 0 auto 1.6rem;
  color: rgba(255, 255, 255, 0.78);
}

.cta-section__actions {
  justify-content: center;
}

.cta-section .button--ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: none;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 999px;
  background: #2f8f5b;
  color: #fff;
  box-shadow: 0 16px 36px rgba(47, 143, 91, 0.28);
}

.floating-whatsapp svg {
  width: 1.78rem;
  height: 1.78rem;
  fill: currentColor;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: var(--container);
  margin: 0 auto;
  padding: 1.6rem 0 2rem;
  border-top: 1px solid var(--line);
  color: var(--plum-soft);
  font-size: 0.86rem;
}

.site-footer div {
  display: grid;
  gap: 0.16rem;
}

.site-footer strong {
  color: var(--plum);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links,
  .header-action {
    display: none;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
  }

  .hero {
    align-items: end;
    min-height: 92svh;
  }

  .hero__media img {
    object-position: 62% center;
  }

  .hero__overlay {
    background:
      linear-gradient(0deg, rgba(255, 248, 247, 0.98) 0%, rgba(255, 248, 247, 0.92) 45%, rgba(255, 248, 247, 0.1) 76%),
      linear-gradient(90deg, rgba(255, 248, 247, 0.28), rgba(255, 248, 247, 0.02));
  }

  .hero__content {
    padding-bottom: 3.6rem;
  }

  .section--split,
  .section--reverse,
  .product-card {
    grid-template-columns: 1fr;
  }

  .section--reverse .support-panel {
    order: -1;
  }

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

  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
    border-radius: 0;
    width: 100%;
    border-right: 0;
    border-left: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --container: calc(100% - 28px);
  }

  .site-header {
    margin-top: 0.65rem;
    padding-left: 0.85rem;
  }

  .brand__name {
    font-size: 1.8rem;
  }

  .brand__role {
    font-size: 0.56rem;
  }

  .hero {
    display: block;
    min-height: auto;
  }

  .hero__media {
    position: relative;
    height: 23.5rem;
  }

  .hero__media img {
    object-position: 62% 22%;
  }

  .hero__overlay {
    inset: 0 0 auto;
    height: 23.5rem;
    background: linear-gradient(0deg, var(--cream) 0%, rgba(255, 248, 247, 0) 36%);
  }

  .hero__content {
    width: calc(100vw - 28px);
    padding-top: 1.6rem;
    padding-bottom: 3.4rem;
  }

  h1 {
    max-width: 21rem;
    font-size: clamp(2.18rem, 9.5vw, 3rem);
    line-height: 1.04;
  }

  .hero__text {
    max-width: 21rem;
  }

  .hero__actions,
  .cta-section__actions {
    display: grid;
  }

  .button,
  .material-card .button {
    width: 100%;
  }

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

  .section {
    padding-top: 4.2rem;
    padding-bottom: 4.2rem;
  }

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

  .support-panel {
    min-height: 20rem;
    padding: 1.4rem;
  }

  .product-card {
    border-radius: 24px;
  }

  .site-footer {
    display: grid;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
