@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --magenta: #b42373;
  --magenta-deep: #97145e;
  --mint: #a3ffdb;
  --ink: #1b1c54;
  --paper: #f6f5fa;
  --white: #ffffff;
  --berry: #ed3cad;
  --cacao: #4c302a;
  --peanut: #bd7422;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--magenta);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--magenta);
  color: var(--ink);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input,
textarea {
  font: inherit;
}

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

::selection {
  background: var(--mint);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 700;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  box-shadow: none;
}

.topbar {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 54px;
  background: var(--magenta);
  color: var(--mint);
}

.brand-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.nav-logo {
  width: 252px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-link,
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.social-link {
  width: 28px;
  height: 28px;
}

.social-link svg,
.footer-social svg {
  width: 100%;
  height: 100%;
}

.social-link rect,
.social-link circle,
.footer-social rect,
.footer-social circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.social-link .icon-fill,
.footer-social .icon-fill {
  fill: currentColor;
  stroke: none;
}

.social-link path,
.footer-social path {
  fill: currentColor;
  stroke: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.button-contact {
  min-width: 126px;
  min-height: 38px;
  padding: 0 20px;
  background: var(--mint);
  color: var(--ink);
  font-size: 0.82rem;
}

.button-contact:hover,
.submit-button:hover,
.back-to-top:hover {
  background: var(--white);
  color: var(--magenta);
}

.hero {
  position: relative;
  min-height: 625px;
  overflow: hidden;
  isolation: isolate;
  background-image: url("assets/hero.webp");
  background-position: center calc(58% + var(--parallax-bg, 0px));
  background-size: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(8, 9, 23, 0.24), rgba(8, 9, 23, 0.24)),
    linear-gradient(90deg, rgba(19, 22, 51, 0.38) 0%, rgba(19, 22, 51, 0.05) 58%),
    linear-gradient(0deg, rgba(20, 17, 45, 0.42) 0%, rgba(20, 17, 45, 0) 52%);
}

.hero-copy {
  position: absolute;
  bottom: 66px;
  left: 70px;
  color: var(--white);
}

.hero h1 {
  margin: 0;
  font-size: clamp(4.4rem, 7.5vw, 6.6rem);
  font-weight: 900;
  letter-spacing: -0.072em;
  line-height: 0.86;
  text-shadow: 0 5px 18px rgba(27, 28, 84, 0.38);
}

.hero-brand {
  position: absolute;
  top: 34px;
  right: 46px;
  width: 248px;
  height: 214px;
  object-fit: contain;
}

.hero-seal {
  position: absolute;
  right: 58px;
  bottom: 47px;
  width: 190px;
  filter: drop-shadow(0 7px 10px rgba(27, 28, 84, 0.2));
}

.new-badge {
  --base-rotate: -3deg;
  position: absolute;
  top: 300px;
  left: 70px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.future-section {
  position: relative;
  display: grid;
  min-height: 505px;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background-image: url("assets/grapes-scatter.webp");
  background-position: center calc(50% + var(--parallax-bg, 0px));
  background-size: cover;
}

.future-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(116, 2, 69, 0.05), rgba(75, 0, 41, 0.22));
}

.future-copy {
  width: min(90%, 980px);
  padding: 40px 20px;
  text-align: center;
  text-shadow: 0 4px 18px rgba(70, 0, 45, 0.28);
}

.future-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.9rem, 5.2vw, 5.25rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.future-copy h2 span,
.future-copy h2 strong {
  display: block;
}

.future-copy h2 span {
  color: var(--mint);
}

.future-copy h2 strong {
  font-weight: 900;
}

.future-copy p {
  margin: 24px auto 0;
  color: var(--white);
  font-size: clamp(0.9rem, 1.35vw, 1.12rem);
  font-weight: 600;
  line-height: 1.55;
}

.simple-section {
  display: grid;
  min-height: 590px;
  padding-top: clamp(28px, 3vw, 44px);
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
}

.simple-visual {
  min-height: 590px;
  overflow: hidden;
}

.simple-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
}

.simple-visual .parallax-photo {
  --photo-scale: 1.18;
}

.simple-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px 76px 70px;
}

.real-seal {
  --base-rotate: 5deg;
  position: absolute;
  top: 34px;
  right: 42px;
  width: 185px;
}

.simple-copy h2,
.section-heading h2,
.science-copy h2,
.contact-intro h2 {
  color: var(--magenta);
  font-weight: 800;
  letter-spacing: -0.055em;
}

.simple-copy h2,
.section-heading h2 {
  font-weight: 900;
}

.simple-copy h2 {
  max-width: 500px;
  margin: 0 0 22px;
  font-size: clamp(2.7rem, 4vw, 4.15rem);
  line-height: 0.98;
}

.simple-copy p {
  max-width: 530px;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.65;
}

.simple-copy .simple-lead {
  margin-bottom: 10px;
  font-weight: 700;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.benefits li {
  padding: 8px 14px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--mint);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.flavors-section {
  padding: 90px 62px 98px;
  background: var(--paper);
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.8rem, 4.2vw, 4.5rem);
  line-height: 1;
}

.section-heading p {
  max-width: 810px;
  margin: 24px auto 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.65;
}

.product-grid {
  display: grid;
  max-width: 1160px;
  margin: 60px auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  margin: 0;
  text-align: center;
  transition: transform 360ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.product-image-wrap {
  aspect-ratio: 1.2 / 1;
  overflow: hidden;
  background: var(--paper);
  border-radius: 22px;
  transition:
    transform 360ms cubic-bezier(0.2, 0.75, 0.25, 1),
    box-shadow 360ms ease;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.045);
  transition: transform 520ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.flavor-pill {
  display: inline-flex;
  min-width: 176px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 0 24px;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.flavor-pill.berry {
  background: var(--berry);
}

.flavor-pill.cacao {
  background: var(--cacao);
}

.flavor-pill.peanut {
  background: var(--peanut);
}

.science-section {
  display: grid;
  min-height: 640px;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
}

.science-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 78px;
}

.science-copy .eyebrow {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 600;
}

.science-copy h2 {
  margin: 0 0 28px;
  font-size: clamp(4.25rem, 6vw, 6.5rem);
  line-height: 0.8;
}

.science-copy p:not(.eyebrow) {
  max-width: 510px;
  margin: 0 0 22px;
  font-size: 1rem;
  line-height: 1.7;
}

.science-visual {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}

.science-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.science-seal {
  --base-rotate: -7deg;
  position: absolute;
  top: 26px;
  right: 28px;
  width: 210px;
  filter: drop-shadow(0 6px 8px rgba(27, 28, 84, 0.17));
}

.contact-section {
  display: grid;
  min-height: 520px;
  grid-template-columns: 1fr 1fr;
  scroll-margin-top: 0;
}

.contact-visual {
  min-height: 520px;
  overflow: hidden;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 68px;
  background: var(--mint);
}

.contact-intro h2 {
  margin: 0 0 8px;
  font-size: 2.35rem;
  line-height: 1;
}

.contact-intro p {
  margin: 0 0 30px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.contact-intro a {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label > span {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(27, 28, 84, 0.12);
  border-radius: 4px;
  outline: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 0.78rem;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.contact-form input {
  min-height: 42px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 112px;
  padding: 12px 13px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(27, 28, 84, 0.48);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--magenta);
  box-shadow: 0 0 0 2px rgba(180, 35, 115, 0.16);
}

.message-field {
  margin-top: 16px;
}

.required-note {
  margin: 8px 0 16px;
  color: rgba(27, 28, 84, 0.64);
  font-size: 0.65rem;
}

.submit-button {
  min-width: 190px;
  min-height: 42px;
  padding: 0 25px;
  background: var(--magenta);
  color: var(--white);
  font-size: 0.75rem;
}

.sensory-section {
  position: relative;
  display: grid;
  min-height: auto;
  padding: 34px 0;
  place-items: center;
  overflow: hidden;
  border-block: 18px solid var(--magenta);
  background: var(--paper);
}

.finale-photo {
  width: min(100%, 1180px);
  margin: 0;
  aspect-ratio: 1.8 / 1;
  overflow: hidden;
  background: var(--paper);
}

.finale-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.footer {
  display: grid;
  min-height: 150px;
  align-items: center;
  padding: 24px 60px;
  grid-template-columns: 1fr auto 1fr;
  background: var(--magenta);
  color: var(--white);
}

.footer-brand {
  display: inline-flex;
  justify-self: start;
}

.footer-brand img {
  width: 120px;
  height: 100px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.footer-social {
  width: 22px;
  height: 22px;
}

.footer-email {
  margin-left: 9px;
  font-size: 0.75rem;
  font-weight: 600;
}

.copyright {
  justify-self: end;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 500;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 46px;
  height: 46px;
  border: 3px solid var(--magenta);
  background: var(--white);
  color: var(--magenta);
  box-shadow: 0 6px 18px rgba(27, 28, 84, 0.2);
}

.back-to-top svg {
  width: 23px;
  height: 23px;
}

.back-to-top path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

/* Movimiento de marca: progresivo, liviano y sin alterar el contenido. */
[data-parallax-bg] {
  will-change: background-position;
}

.motion-layer,
.hero-brand {
  transform: translate3d(0, var(--parallax-y, 0px), 0)
    rotate(var(--base-rotate, 0deg));
  will-change: transform;
}

.parallax-photo {
  transform: translate3d(0, var(--parallax-y, 0px), 0)
    scale(var(--photo-scale, 1.07));
  will-change: transform;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.motion-ready [data-reveal="left"] {
  transform: translate3d(-44px, 0, 0);
}

.motion-ready [data-reveal="right"] {
  transform: translate3d(44px, 0, 0);
}

.motion-ready [data-reveal="scale"] {
  transform: scale(0.94);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-ready .product-card:nth-child(2) {
  transition-delay: 100ms;
}

.motion-ready .product-card:nth-child(3) {
  transition-delay: 200ms;
}

.motion-ready .back-to-top {
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px) scale(0.9);
  transition:
    opacity 240ms ease,
    transform 240ms ease,
    background-color 220ms ease,
    color 220ms ease;
}

.motion-ready.page-scrolled .back-to-top {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 22px rgba(27, 28, 84, 0.18);
  }

  .social-link,
  .footer-social {
    transition:
      transform 220ms ease,
      opacity 220ms ease;
  }

  .social-link:hover,
  .footer-social:hover {
    opacity: 0.78;
    transform: translateY(-2px) rotate(-5deg) scale(1.08);
  }

  .product-card:hover {
    transform: translateY(-10px);
  }

  .product-card:hover .product-image-wrap {
    box-shadow: 0 24px 42px rgba(27, 28, 84, 0.14);
    transform: rotate(-1deg);
  }

  .product-card:hover .product-image-wrap img {
    transform: scale(1.085);
  }

  .contact-form input:hover,
  .contact-form textarea:hover {
    border-color: rgba(180, 35, 115, 0.42);
  }
}

@media (max-width: 1100px) {
  .topbar {
    padding-inline: 38px;
  }

  .hero-copy,
  .new-badge {
    left: 48px;
  }

  .simple-copy,
  .science-copy {
    padding-inline: 52px;
  }

  .contact-panel {
    padding-inline: 48px;
  }
}

@media (max-width: 840px) {
  .nav-logo {
    width: 218px;
  }

  .hero {
    min-height: 590px;
  }

  .hero-brand {
    top: 30px;
    right: 28px;
    width: 205px;
    height: 185px;
  }

  .hero-seal {
    right: 36px;
    width: 165px;
  }

  .simple-section,
  .science-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .simple-visual,
  .science-visual,
  .contact-visual {
    min-height: 470px;
  }

  .simple-copy {
    min-height: 510px;
    padding: 106px 66px 64px;
  }

  .real-seal {
    right: 54px;
  }

  .flavors-section {
    padding-inline: 34px;
  }

  .product-grid {
    gap: 16px;
  }

  .flavor-pill {
    min-width: 130px;
    padding-inline: 15px;
  }

  .science-copy {
    min-height: 530px;
    padding: 66px;
  }

  .science-visual {
    min-height: 540px;
  }

  .contact-panel {
    min-height: 570px;
    padding: 58px 66px;
  }

  .sensory-section {
    min-height: 390px;
  }

  .footer {
    padding-inline: 36px;
  }
}

@media (max-width: 650px) {
  .topbar {
    min-height: 68px;
    padding: 10px 16px;
  }

  .nav-logo {
    width: 158px;
    height: auto;
  }

  .nav-actions {
    gap: 8px;
  }

  .social-link {
    width: 21px;
    height: 21px;
  }

  .button-contact {
    min-width: 100px;
    min-height: 34px;
    padding-inline: 13px;
    font-size: 0.69rem;
  }

  .hero {
    min-height: 600px;
    background-position: 58% calc(50% + var(--parallax-bg, 0px));
  }

  .hero-shade {
    background:
      linear-gradient(rgba(8, 9, 23, 0.26), rgba(8, 9, 23, 0.26)),
      linear-gradient(90deg, rgba(19, 22, 51, 0.38), rgba(19, 22, 51, 0.04) 72%),
      linear-gradient(0deg, rgba(20, 17, 45, 0.52), rgba(20, 17, 45, 0) 58%);
  }

  .hero-copy {
    bottom: 45px;
    left: 22px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 15vw, 4.45rem);
    line-height: 0.88;
  }

  .hero-brand {
    top: 18px;
    right: 12px;
    width: 144px;
    height: 132px;
  }

  .new-badge {
    top: 324px;
    left: 22px;
    padding: 8px 13px;
    font-size: 0.62rem;
  }

  .hero-seal {
    right: 14px;
    bottom: 44px;
    width: 128px;
  }

  .future-section {
    min-height: 430px;
    background-position: center calc(50% + var(--parallax-bg, 0px));
  }

  .future-copy {
    width: 100%;
    padding-inline: 18px;
  }

  .future-copy h2 {
    font-size: clamp(2.35rem, 11.2vw, 3.25rem);
    line-height: 0.97;
  }

  .future-copy p {
    font-size: 0.78rem;
  }

  .simple-visual {
    min-height: 350px;
  }

  .simple-copy {
    min-height: auto;
    padding: 104px 23px 54px;
  }

  .real-seal {
    top: 28px;
    right: 22px;
    width: 150px;
  }

  .simple-copy h2 {
    max-width: 320px;
    font-size: 2.55rem;
  }

  .simple-copy p {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .benefits {
    gap: 7px;
  }

  .benefits li {
    padding: 7px 10px;
    font-size: 0.57rem;
  }

  .flavors-section {
    padding: 66px 22px 74px;
  }

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

  .section-heading p {
    font-size: 0.86rem;
  }

  .section-heading p br {
    display: none;
  }

  .product-grid {
    max-width: 390px;
    margin-top: 42px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .product-image-wrap {
    aspect-ratio: 1.2 / 1;
  }

  .product-image-wrap img {
    transform: scale(1.035);
  }

  .flavor-pill {
    min-width: 170px;
  }

  .science-copy {
    min-height: auto;
    padding: 56px 24px;
  }

  .science-copy h2 {
    font-size: 4.8rem;
  }

  .science-copy p:not(.eyebrow) {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .science-visual {
    min-height: 420px;
  }

  .science-seal {
    top: 20px;
    right: 16px;
    width: 155px;
  }

  .contact-visual {
    min-height: 350px;
  }

  .contact-panel {
    min-height: auto;
    padding: 48px 22px 54px;
  }

  .contact-intro h2 {
    font-size: 2.1rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .submit-button {
    width: 100%;
  }

  .sensory-section {
    min-height: auto;
    padding: 18px 0;
    border-block-width: 12px;
  }

  .finale-photo {
    width: 100%;
    aspect-ratio: 1.35 / 1;
  }

  .footer {
    min-height: 220px;
    padding: 28px 20px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 13px;
    text-align: center;
  }

  .footer-brand,
  .copyright {
    justify-self: center;
  }

  .footer-brand img {
    width: 100px;
    height: 78px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-email {
    width: 100%;
    margin: 2px 0 0;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 380px) {
  .topbar {
    padding-inline: 10px;
  }

  .nav-logo {
    width: 132px;
  }

  .nav-actions {
    gap: 6px;
  }

  .social-link {
    width: 19px;
    height: 19px;
  }

  .hero h1 {
    font-size: 2.95rem;
  }

  .hero-seal {
    right: 10px;
    width: 108px;
  }

  .button-contact {
    min-width: 92px;
    padding-inline: 11px;
  }

  .science-copy h2 {
    font-size: 4.25rem;
  }
}

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

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

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  [data-parallax-bg] {
    background-position-y: center !important;
  }

  .motion-layer,
  .hero-brand {
    transform: rotate(var(--base-rotate, 0deg)) !important;
  }

  .parallax-photo {
    transform: scale(var(--photo-scale, 1.03)) !important;
  }
}

/* Formulario seguro y feedback de envío */
.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.form-status {
  min-height: 1.35em;
  margin-top: 14px;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.45;
}

.form-status.is-success {
  color: #155b43;
}

.form-status.is-error {
  color: #8d174b;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
  box-shadow: none;
}
