@font-face {
  font-family: Manrope;
  src: url(manrope-400.woff2) format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url(manrope-700.woff2) format("woff2");
  font-weight: 600 700;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url(manrope-800.woff2) format("woff2");
  font-weight: 800 900;
  font-display: swap;
}
:root {
  --purple: #6528ce;
  --magenta: #df00c8;
  --cyan: #09c7e8;
  --ink: #171326;
  --muted: #655f76;
  --paper: #fff;
  --line: #e7e0f2;
  --cream: #f5f2ff;
  --gradient: linear-gradient(110deg, #09b5d0, #7351e5 52%, #cf10c3);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    400 15px/1.7 Manrope,
    Arial,
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: -0.055em;
  font-weight: 800;
}
h1 {
  font-size: clamp(2.7rem, 5.1vw, 4.8rem);
}
h2 {
  font-size: clamp(2.1rem, 3.7vw, 3.6rem);
}
h3 {
  font-size: 1.35rem;
}
em {
  font-style: normal;
  color: var(--purple);
}
:focus-visible {
  outline: 3px solid #07657b;
  outline-offset: 5px;
}
p {
  color: var(--muted);
}
.skip {
  position: fixed;
  top: -100px;
  left: 16px;
  background: #fff;
  padding: 12px;
  z-index: 100;
}
.skip:focus {
  top: 12px;
}
.announcement {
  background: var(--gradient);
  color: #fff;
  min-height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px max(24px, calc((100vw - 1232px) / 2));
  font-size: 0.72rem;
  font-weight: 700;
}
.header {
  padding: 20px max(24px, calc((100vw - 1232px) / 2));
  background: #fffffff5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}
.logo {
  display: block;
  width: 216px;
  flex-shrink: 0;
}
.logo img {
  width: 100%;
  height: auto;
}
.header nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 0.79rem;
  font-weight: 700;
}
.header nav a:hover {
  color: var(--purple);
}
.header nav .button:hover {
  color: #fff;
}
.menu-toggle {
  display: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--purple);
  border: 1px solid transparent;
  color: #fff;
  border-radius: 100px;
  min-height: 52px;
  padding: 14px 25px;
  font-size: 0.82rem;
  font-weight: 800;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #4c1d9e;
  transform: translateY(-2px);
}
.button.light {
  background: #fff;
  color: var(--purple);
}
.button.light:hover {
  background: #f4eaff;
}
.button.outline {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}
.button.small {
  min-height: 44px;
  padding: 10px 20px;
}
.button:disabled {
  opacity: 0.6;
  cursor: wait;
}
.text-link {
  font-weight: 800;
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  border-bottom: 1px solid currentColor;
}
.text-link:hover {
  color: var(--purple);
}
.actions {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
.eyebrow {
  display: block;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--purple);
}
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 85% 25%, #a0379d75, transparent 50%),
    radial-gradient(ellipse at 70% 100%, #09c7e848, transparent 50%),
    linear-gradient(120deg, #181126, #31206c 55%, #7044dc);
  color: #fff;
}
.hero-inner {
  max-width: 1280px;
  padding: 0 24px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 610px;
  align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: 70px 0;
}
.hero .eyebrow {
  color: #e7d8ff;
}
.hero h1 {
  font-size: clamp(3rem, 5.4vw, 5.4rem);
  line-height: 1.04;
}
.hero h1 em {
  color: #ceaafa;
}
.hero p {
  color: #ede5f9;
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 440px;
  margin-top: 25px;
}
.hero .text-link:hover {
  color: #eed2ff;
}
.hero-caption {
  display: block;
  font-size: 0.69rem;
  letter-spacing: 0.12em;
  margin-top: 42px;
  color: #ddd1ef;
}
.hero-art {
  position: relative;
  isolation: isolate;
  height: 520px;
  min-width: 0;
}
.orbit {
  position: absolute;
  width: 440px;
  height: 440px;
  border: 1px solid #ffffff36;
  border-radius: 50%;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.orbit:after {
  content: "";
  position: absolute;
  inset: 35px -28px;
  border: 1px solid #a8eaff33;
  border-radius: 50%;
  transform: rotate(-28deg);
}
.product {
  position: absolute;
  width: 76%;
  max-width: none;
  filter: drop-shadow(0 22px 20px #13072b70);
  object-fit: contain;
  top: 55px;
}
.product.left {
  left: -22%;
  transform: rotate(-14deg);
  z-index: 1;
}
.product.center {
  left: 12%;
  top: 4px;
  z-index: 3;
}
.product.right {
  right: -22%;
  transform: rotate(14deg);
  z-index: 2;
}
.art-label {
  position: absolute;
  bottom: 20px;
  text-align: center;
  width: 100%;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: #f1dcff;
}
.brand-statement {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  background: #f7f2fc;
  color: #51416b;
  padding: 24px;
  font-size: 0.8rem;
  font-weight: 700;
}
.brand-statement b {
  color: #a366d5;
}
.section {
  max-width: 1280px;
  margin: auto;
  padding: 95px 24px;
}
.section-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 35px;
  margin-bottom: 38px;
}
.section-top p {
  font-size: 0.9rem;
  max-width: 370px;
}
.categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.category {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: #f6f0ff;
  transition: transform 0.2s;
}
.category:hover {
  transform: translateY(-5px);
}
.category.hidratantes {
  background: #fff0f0;
}
.category.esfoliantes {
  background: #fff0f7;
}
.category.sabonetes {
  background: #fff6d9;
}
.category-image {
  height: 280px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.category-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  transition: transform 0.25s;
}
.category:hover img {
  transform: scale(1.04);
}
.category-copy {
  padding: 8px 22px 26px;
  display: block;
}
.category-copy small {
  display: block;
  color: var(--muted);
  font-size: 0.66rem;
  margin-bottom: 7px;
}
.category-copy strong {
  display: block;
  font-size: 1.28rem;
  letter-spacing: -0.04em;
}
.category-arrow {
  position: absolute;
  right: 20px;
  bottom: 22px;
  font-size: 1.3rem;
}
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  align-items: center;
  padding-top: 25px;
}
.about-art {
  border-radius: 28px;
  overflow: hidden;
  background: var(--cream);
}
.about-art img {
  width: 100%;
  aspect-ratio: 1/1.1;
  object-fit: cover;
}
.about-copy p {
  margin-top: 22px;
  font-size: 0.93rem;
}
.about-copy .text-link {
  margin-top: 26px;
  color: var(--purple);
}
.partner-banner {
  background:
    radial-gradient(ellipse at 2% 60%, #6839ba, transparent 50%), #22113d;
  color: #fff;
  padding: 78px max(24px, calc((100vw - 1232px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.partner-banner .eyebrow {
  color: #d7bcfa;
}
.partner-banner p {
  color: #dfd1ed;
  margin: 22px 0 26px;
  max-width: 470px;
  font-size: 0.94rem;
}
.partner-options {
  align-self: center;
}
.partner-options a {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid #ffffff30;
}
.partner-options a:first-child {
  border-top: 1px solid #ffffff30;
}
.partner-options a > span {
  font-size: 0.8rem;
  color: #d8b3ff;
}
.partner-options h3 {
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}
.partner-options p {
  font-size: 0.8rem;
  margin: 8px 0 0;
}
.partner-options b {
  margin-left: auto;
}
.partner-options a:hover h3 {
  color: #d8b3ff;
}
.form-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.form-intro {
  position: sticky;
  top: 45px;
  padding-top: 22px;
}
.form-intro p {
  font-size: 0.95rem;
  margin-top: 26px;
}
.form-help {
  padding: 25px 0;
  margin-top: 26px;
  border-block: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
}
.form-help span {
  color: var(--muted);
}
.form-help a {
  color: var(--purple);
  font-weight: 700;
  min-height: 34px;
}
.form-intro .small-note,
.small-note {
  font-size: 0.73rem;
  line-height: 1.6;
  color: var(--muted);
}
.lead-form {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 32px;
  position: relative;
}
.form-caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  font-weight: 800;
  color: var(--ink);
  font-size: 0.95rem;
  margin-bottom: 28px;
}
.form-caption span {
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 400;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
}
.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  min-width: 0;
}
.full {
  grid-column: 1/-1;
}
input,
select,
textarea {
  color: var(--ink);
  background: #fff;
  border: 1px solid #d7cbe7;
  border-radius: 10px;
  width: 100%;
  padding: 12px 13px;
  min-height: 48px;
  font-size: 0.85rem;
  min-width: 0;
}
textarea {
  resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
}
input::placeholder,
textarea::placeholder {
  color: #797180;
  opacity: 1;
}
select {
  padding-right: 25px;
}
label small {
  font-size: 0.67rem;
  font-weight: 400;
  color: var(--muted);
}
.form-grid .consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-weight: 400;
  font-size: 0.74rem;
  line-height: 1.65;
  margin-top: 4px;
}
.consent input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  flex-shrink: 0;
  margin: 3px 0;
  accent-color: var(--purple);
}
.consent a {
  text-decoration: underline;
  font-weight: 700;
}
.submit {
  width: 100%;
  margin: 24px 0 15px;
}
.trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-error {
  border: 1px solid #c6425d;
  border-radius: 12px;
  background: #fff4f5;
  padding: 18px;
  margin-bottom: 25px;
  color: #8c1932;
  font-size: 0.82rem;
}
.form-error p {
  color: inherit;
  margin-top: 8px;
}
.contact-strip {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-block: 60px;
}
.footer {
  background: #f7f4fb;
  border-top: 1px solid var(--line);
  padding: 65px max(24px, calc((100vw - 1232px) / 2)) 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 40px;
}
.footer .logo {
  width: 190px;
}
.footer p {
  font-size: 0.82rem;
  margin: 20px 0;
}
.footer a,
.footer-contact span {
  font-size: 0.75rem;
  min-height: 30px;
  overflow-wrap: anywhere;
}
.footer nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer strong {
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  margin-bottom: 9px;
}
.footer a:hover {
  color: var(--purple);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 45px;
  font-size: 0.65rem;
  color: var(--muted);
}
.message-page {
  min-height: 65vh;
  text-align: center;
  max-width: 780px;
}
.message-page p {
  margin-top: 25px;
}
.message-page .actions {
  justify-content: center;
}
.success-symbol {
  display: block;
  font-size: 3rem;
  color: var(--purple);
  margin-bottom: 25px;
}
.legal {
  max-width: 850px;
  min-height: 65vh;
}
.legal h1 {
  margin-bottom: 30px;
}
.legal h2 {
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  margin: 35px 0 15px;
}
.legal p {
  margin-block: 15px;
}
.legal a {
  color: var(--purple);
  text-decoration: underline;
}
.bio-page {
  background:
    radial-gradient(ellipse at top left, #e3f7fd, transparent 40%),
    radial-gradient(ellipse at bottom right, #f4d6ff, transparent 45%), #f3eefb;
  min-height: 100vh;
}
.bio-shell {
  max-width: 560px;
  margin: 35px auto;
  background: #fff;
  border: 1px solid #e3d4f5;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 90px #51238512;
}
.bio-cover {
  height: 230px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 10% 100%, #09c7e870, transparent 60%),
    linear-gradient(120deg, #21163d, #7435b5 65%, #b32aac);
}
.bio-cover img {
  width: 230px;
  height: 230px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 12px 16px #15072d65);
}
.bio-cover img:nth-of-type(1) {
  transform: rotate(-15deg) translateX(50px);
  z-index: 1;
}
.bio-cover img:nth-of-type(2) {
  transform: scale(1.2);
  z-index: 3;
}
.bio-cover img:nth-of-type(3) {
  transform: rotate(15deg) translateX(-50px);
  z-index: 2;
}
.bio-spark {
  position: absolute;
  top: 10px;
  left: 25px;
  color: #ffffff70;
  font-size: 3rem;
}
.bio-content {
  padding: 30px 32px 24px;
  text-align: center;
}
.bio-logo {
  display: block;
  width: 215px;
  margin: 0 auto 24px;
}
.bio-content > .eyebrow {
  font-size: 0.6rem;
  margin-bottom: 14px;
}
.bio-content h1 {
  font-size: 2.7rem;
  line-height: 1.12;
}
.bio-content > p {
  font-size: 0.85rem;
  margin-top: 15px;
  line-height: 1.65;
}
.bio-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.bio-link {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 16px;
  min-height: 80px;
  padding: 15px;
  background: #fff;
  transition:
    transform 0.2s,
    border-color 0.2s;
}
.bio-link:hover {
  transform: translateY(-2px);
  border-color: var(--purple);
}
.bio-link.featured {
  background: linear-gradient(115deg, #5431b4, #8334c5 65%, #a626b6);
  border: 0;
  color: #fff;
}
.bio-link strong {
  display: block;
  font-size: 0.83rem;
  font-weight: 800;
}
.bio-link small {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 4px;
}
.bio-link.featured small {
  color: #f1e7ff;
}
.bio-link > span:nth-child(2) {
  min-width: 0;
  flex: 1;
}
.bio-link > b {
  font-weight: 400;
}
.link-icon {
  border-radius: 12px;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: #f2eafa;
  color: var(--purple);
  font-size: 1.2rem;
}
.featured .link-icon {
  background: #ffffff20;
  color: #fff;
}
.bio-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 26px;
  font-size: 0.71rem;
  font-weight: 700;
}
.bio-social a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.bio-footer {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.65rem;
  color: var(--muted);
}
@media (min-width: 1500px) {
  .hero-art {
    height: 570px;
  }
  .product {
    top: 80px;
  }
  .product.center {
    top: 30px;
  }
}
@media (max-width: 1050px) {
  .header nav {
    gap: 18px;
  }
  .logo {
    width: 180px;
  }
  .hero-inner {
    min-height: 540px;
  }
  .hero-art {
    height: 430px;
  }
  .orbit {
    width: 330px;
    height: 330px;
  }
  .hero-copy {
    padding: 55px 0;
  }
  .hero h1 {
    font-size: 3.7rem;
  }
  .art-label {
    bottom: 5px;
  }
  .category-image {
    height: 220px;
  }
  .category-copy {
    padding-inline: 16px;
  }
  .category-copy small {
    max-width: 140px;
    min-height: 34px;
  }
  .category-copy strong {
    font-size: 1.1rem;
  }
  .about {
    gap: 40px;
  }
  .form-section {
    gap: 40px;
  }
  .partner-banner {
    gap: 40px;
  }
  .footer-grid {
    gap: 25px;
  }
}
@media (max-width: 850px) {
  .header {
    padding-block: 18px;
    flex-wrap: wrap;
    gap: 15px;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 100px;
    min-height: 44px;
    padding: 10px 17px;
    font-size: 0.78rem;
    font-weight: 700;
  }
  .header nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 15px;
    border-top: 1px solid var(--line);
  }
  .header nav.open {
    display: flex;
  }
  .header nav a {
    padding: 10px;
  }
  .hero h1 {
    font-size: 3.15rem;
  }
  .hero-art {
    height: 380px;
  }
  .product {
    top: 60px;
  }
  .product.center {
    top: 25px;
  }
  .orbit {
    width: 270px;
    height: 270px;
  }
  .hero p {
    font-size: 0.95rem;
  }
  .actions {
    gap: 18px;
  }
  .hero .actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .brand-statement {
    gap: 20px;
    font-size: 0.69rem;
  }
  .categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .category-image {
    height: 290px;
  }
  .category-copy small {
    min-height: 0;
    max-width: none;
  }
  .category-copy strong {
    font-size: 1.3rem;
  }
  .section {
    padding-block: 65px;
  }
  .about {
    gap: 35px;
  }
  .about h2 {
    font-size: 2.35rem;
  }
  .form-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .form-intro {
    position: static;
    max-width: 680px;
  }
  .form-help {
    margin-top: 20px;
    padding-block: 18px;
  }
  .form-intro .small-note {
    margin-top: 18px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px;
  }
  .partner-banner {
    gap: 35px;
  }
  .partner-banner h2 {
    font-size: 2.8rem;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 20px;
  }
  .announcement {
    justify-content: center;
    padding: 7px 18px;
    font-size: 0.63rem;
  }
  .announcement > a {
    display: none;
  }
  .header {
    padding: 14px 20px;
  }
  .logo {
    width: 190px;
  }
  .hero-inner {
    display: block;
    min-height: 0;
    padding: 0 22px;
  }
  .hero-copy {
    padding: 53px 0 42px;
  }
  .hero h1 {
    font-size: clamp(2.8rem, 9.8vw, 3.8rem);
  }
  .hero p {
    font-size: 1rem;
    max-width: 440px;
  }
  .hero .actions {
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }
  .hero .button {
    padding-inline: 19px;
    font-size: 0.76rem;
  }
  .hero .text-link {
    font-size: 0.76rem;
  }
  .hero-caption {
    margin-top: 28px;
    font-size: 0.6rem;
  }
  .hero-art {
    display: none;
  }
  .eyebrow {
    font-size: 0.61rem;
    letter-spacing: 0.15em;
  }
  .brand-statement {
    padding: 19px 14px;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 0.62rem;
  }
  .brand-statement > span:last-child,
  .brand-statement > b:last-of-type {
    display: none;
  }
  .section {
    padding: 52px 20px;
  }
  .section-top {
    display: block;
    margin-bottom: 26px;
  }
  .section-top p {
    margin-top: 20px;
    font-size: 0.85rem;
  }
  .categories {
    gap: 12px;
  }
  .category {
    border-radius: 18px;
  }
  .category-image {
    height: 200px;
  }
  .category-image img {
    padding: 0;
  }
  .category-copy {
    padding: 0 13px 20px;
  }
  .category-copy small {
    font-size: 0.59rem;
    min-height: 34px;
    line-height: 1.5;
    padding-right: 5px;
  }
  .category-copy strong {
    font-size: 1.1rem;
  }
  .category-arrow {
    right: 12px;
    bottom: 16px;
    font-size: 1.05rem;
  }
  .about {
    display: flex;
    flex-direction: column;
    padding-top: 8px;
    gap: 30px;
    align-items: stretch;
  }
  .about-art img {
    aspect-ratio: 1.45;
    object-position: center;
  }
  .about h2 {
    font-size: 2.5rem;
  }
  .about-copy p {
    font-size: 0.89rem;
  }
  .partner-banner {
    padding: 48px 22px;
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .partner-banner h2 {
    font-size: 2.75rem;
  }
  .partner-options a {
    padding: 22px 0;
  }
  .partner-options p {
    font-size: 0.76rem;
  }
  .form-section {
    gap: 25px;
  }
  .form-intro {
    padding-top: 0;
  }
  .form-intro h1,
  .form-intro h2 {
    font-size: 2.5rem;
  }
  .lead-form {
    padding: 23px 18px;
    border-radius: 20px;
  }
  .form-caption {
    align-items: flex-start;
    font-size: 0.86rem;
  }
  .form-caption span {
    max-width: 84px;
    text-align: right;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .form-grid label {
    font-size: 0.78rem;
  }
  input,
  select,
  textarea {
    font-size: 16px;
  }
  .form-grid .consent {
    font-size: 0.73rem;
  }
  .contact-strip {
    display: block;
  }
  .contact-strip .button {
    margin-top: 26px;
  }
  .footer {
    padding: 45px 22px 20px;
  }
  .footer-grid {
    gap: 30px 18px;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer .logo {
    width: 210px;
  }
  .footer-contact {
    grid-column: 1/-1;
  }
  .footer a {
    font-size: 0.75rem;
    min-height: 34px;
  }
  .footer-bottom {
    font-size: 0.6rem;
    flex-direction: column;
    gap: 8px;
  }
  .bio-shell {
    margin: 0 auto;
    border-radius: 0;
    border: 0;
    box-shadow: none;
  }
  .bio-cover {
    height: 205px;
  }
  .bio-cover img {
    width: 215px;
    height: 215px;
  }
  .bio-content {
    padding: 26px 22px 23px;
  }
  .bio-content h1 {
    font-size: 2.55rem;
  }
  .bio-content > .eyebrow {
    font-size: 0.58rem;
  }
  .bio-logo {
    width: 215px;
    margin-bottom: 22px;
  }
  .bio-link {
    gap: 12px;
    padding: 14px 12px;
  }
  .bio-link strong {
    font-size: 0.8rem;
  }
  .bio-link small {
    font-size: 0.65rem;
  }
  .bio-social {
    gap: 16px;
    font-size: 0.67rem;
  }
}
@media (max-width: 360px) {
  .header .logo {
    width: 160px;
  }
  .menu-toggle {
    padding: 8px 12px;
  }
  .hero h1 {
    font-size: 2.7rem;
  }
  .hero .actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .category-image {
    height: 165px;
  }
  .category-copy strong {
    font-size: 0.97rem;
  }
  .category-arrow {
    font-size: 0.95rem;
    right: 10px;
  }
  .bio-content {
    padding-inline: 16px;
  }
  .bio-content h1 {
    font-size: 2.3rem;
  }
  .bio-cover {
    height: 175px;
  }
  .bio-cover img {
    width: 190px;
    height: 190px;
  }
  .bio-link strong {
    font-size: 0.74rem;
  }
  .bio-link small {
    font-size: 0.62rem;
  }
  .link-icon {
    width: 32px;
    height: 36px;
  }
  .bio-social {
    font-size: 0.61rem;
    gap: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
/* Fotos oficiais de catálogo preservadas em cartões, sem recortes artificiais. */
.hero-art {
  height: 440px;
  margin-left: 24px;
}
.product {
  width: 40%;
  height: 300px;
  max-width: 100%;
  object-fit: contain;
  background: #fff;
  border-radius: 24px;
  padding: 6px;
  top: 90px;
}
.product.left {
  left: 0;
  transform: rotate(-12deg);
}
.product.center {
  left: 30%;
  top: 42px;
  transform: rotate(0);
}
.product.right {
  right: 0;
  transform: rotate(12deg);
}
.art-label {
  bottom: 0;
}
.bio-cover {
  gap: 0;
}
.bio-cover img {
  width: 145px;
  height: 180px;
  border-radius: 18px;
  background: #fff;
  padding: 4px;
}
.bio-cover img:nth-of-type(1) {
  transform: rotate(-12deg) translateX(15px);
}
.bio-cover img:nth-of-type(2) {
  transform: scale(1.08);
}
.bio-cover img:nth-of-type(3) {
  transform: rotate(12deg) translateX(-15px);
}
@media (max-width: 1050px) {
  .hero-art {
    height: 370px;
  }
  .product {
    height: 230px;
    top: 80px;
  }
  .product.center {
    top: 35px;
  }
}
@media (max-width: 850px) {
  .hero-art {
    height: 320px;
    margin-left: 12px;
  }
  .product {
    height: 190px;
    top: 80px;
  }
  .product.center {
    top: 40px;
  }
}
@media (max-width: 600px) {
  .hero-art {
    display: none;
  }
  .bio-cover img {
    width: 118px;
    height: 155px;
  }
  .category-image img {
    mix-blend-mode: multiply;
  }
}
@media (max-width: 360px) {
  .bio-cover img {
    width: 104px;
    height: 132px;
  }
}
.category-image img {
  mix-blend-mode: multiply;
}
