/* ========================================
   UNION EBOUE ACERO — Estilos principales
   Paleta: teal oscuro, magenta, verde vivo
   ======================================== */

:root {
  --teal: #0a4a47;
  --teal-deep: #063634;
  --teal-mid: #0f6b66;
  --magenta: #c2185b;
  --magenta-hot: #e91e63;
  --magenta-soft: #f8e7ef;
  --green: #2e9e4f;
  --green-bright: #3cb85c;
  --white: #ffffff;
  --off-white: #f5f8f7;
  --ink: #12201f;
  --muted: #4a5f5d;
  --line: rgba(10, 74, 71, 0.14);
  --shadow: 0 18px 40px rgba(6, 54, 52, 0.12);
  --radius: 14px;
  --font-display: "Outfit", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --header-w: 90vw;
  --body-w: 80vw;
  --toolbar-h: 42px;
  --header-h: 130px;
  --wa-size: 58px;
  --wa-right: 22px;
  --wa-bottom: 22px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* ---------- Toolbar (90%) ---------- */
.toolbar {
  background: var(--teal-deep);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
}

.toolbar__inner {
  width: var(--header-w);
  margin: 0 auto;
  min-height: var(--toolbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.toolbar__left,
.toolbar__right {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.toolbar__right {
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.toolbar a {
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s ease;
}

.toolbar a:hover {
  color: var(--green-bright);
}

.toolbar i {
  color: var(--green-bright);
}

/* ---------- Header (90%, fondo blanco) ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 5px solid var(--magenta);
  box-shadow: 0 4px 18px rgba(6, 54, 52, 0.06);
}

.header__inner {
  width: var(--header-w);
  margin: 0 auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header__brand {
  flex-shrink: 0;
}

.header__logo {
  height: 112px;
  width: auto;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav__link {
  display: inline-block;
  padding: 0.55rem 0.9rem;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.2s ease;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.25rem;
  height: 2px;
  background: var(--magenta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav__link:hover,
.nav__link.active {
  color: var(--magenta);
}

.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.badge-oficial {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.7rem 0.35rem 0.4rem;
  border: 1.5px solid var(--green);
  border-radius: 999px;
  background: linear-gradient(135deg, #f0faf3, #ffffff);
}

.badge-oficial__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--teal), var(--green));
  color: var(--white);
  font-size: 0.85rem;
}

.badge-oficial__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.badge-oficial__text strong {
  font-size: 0.78rem;
  color: var(--teal);
  letter-spacing: 0.02em;
}

.badge-oficial__text small {
  font-size: 0.68rem;
  color: var(--green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--teal);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero animado ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--toolbar-h) - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  border-bottom: 15px solid var(--teal-deep);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../assets/foto-hero.jpg") center / cover no-repeat;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(6, 54, 52, 0.78) 0%, rgba(10, 74, 71, 0.62) 42%, rgba(194, 24, 91, 0.42) 100%),
    radial-gradient(circle at 78% 28%, rgba(60, 184, 92, 0.22), transparent 42%);
}

.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: patternDrift 28s linear infinite;
}

.hero__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 28% 72% 45% 55% / 55% 35% 65% 45%;
  filter: blur(2px);
  opacity: 0.45;
  animation: floatShape 10s ease-in-out infinite;
}

.shape--1 {
  width: 340px;
  height: 340px;
  right: 8%;
  top: 12%;
  background: linear-gradient(145deg, var(--magenta-hot), transparent);
}

.shape--2 {
  width: 220px;
  height: 220px;
  right: 28%;
  bottom: 18%;
  background: linear-gradient(145deg, var(--green-bright), transparent);
  animation-delay: -3s;
}

.shape--3 {
  width: 160px;
  height: 160px;
  left: 12%;
  bottom: 22%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.25), transparent);
  animation-delay: -6s;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: var(--body-w);
  margin: 0 auto;
  padding: 4.5rem 0 5.5rem;
  max-width: 820px;
  margin-left: 10vw;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #ffffff, #b8f0c8 50%, #ffb6d3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fadeUp 0.9s ease both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 3.15rem);
  font-weight: 700;
  line-height: 1.12;
  max-width: 16ch;
  margin-bottom: 1.1rem;
  animation: fadeUp 0.9s ease 0.12s both;
}

.hero__lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  animation: fadeUp 0.9s ease 0.24s both;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: fadeUp 0.9s ease 0.36s both;
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 16px;
}

.hero__scroll span {
  display: block;
  width: 4px;
  height: 8px;
  margin: 8px auto 0;
  border-radius: 4px;
  background: var(--green-bright);
  animation: scrollPulse 1.6s ease-in-out infinite;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.45rem;
  border-radius: 10px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--magenta);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(194, 24, 91, 0.28);
}

.btn--primary:hover {
  background: var(--magenta-hot);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn--magenta {
  background: var(--magenta);
  color: var(--white);
}

.btn--block {
  width: 100%;
}

/* ---------- Banner autenticidad ---------- */
.auth-banner {
  background: linear-gradient(90deg, #f0faf3, #fff5f9);
  border-bottom: 1px solid var(--line);
}

.auth-banner__inner {
  width: var(--body-w);
  margin: 0 auto;
  padding: 1.6rem 0;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.auth-banner__seal {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  color: var(--white);
  background: conic-gradient(from 210deg, var(--teal), var(--green), var(--magenta), var(--teal));
  box-shadow: 0 8px 20px rgba(10, 74, 71, 0.2);
  animation: sealSpin 12s linear infinite;
}

.auth-banner__copy h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--teal);
  margin-bottom: 0.25rem;
}

.auth-banner__copy p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Secciones (cuerpo 80%) ---------- */
.section {
  padding: 5rem 0;
}

.section--alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(245, 248, 247, 0.95)),
    radial-gradient(circle at 10% 20%, rgba(194, 24, 91, 0.06), transparent 35%),
    radial-gradient(circle at 90% 80%, rgba(46, 158, 79, 0.08), transparent 40%);
}

.section__inner {
  width: var(--body-w);
  margin: 0 auto;
}

.section__head {
  max-width: 640px;
  margin-bottom: 2.75rem;
}

.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  color: var(--teal);
  line-height: 1.15;
  margin-bottom: 0.7rem;
}

.section__head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.about-block h3 {
  font-family: var(--font-display);
  color: var(--teal);
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
  padding-bottom: 0.55rem;
  border-bottom: 3px solid var(--magenta);
  display: inline-block;
}

.about-block p {
  color: var(--muted);
}

.categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem 1.5rem;
}

.category {
  padding: 0.25rem 0.5rem 0.25rem 0;
}

.category__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 0.9rem;
  color: var(--white);
  background: linear-gradient(145deg, var(--teal), var(--teal-mid));
  font-size: 1.2rem;
  transition: transform 0.25s ease, background 0.25s ease;
}

.category:hover .category__icon {
  transform: translateY(-4px) rotate(-4deg);
  background: linear-gradient(145deg, var(--magenta), var(--magenta-hot));
}

.category:nth-child(even) .category__icon {
  background: linear-gradient(145deg, var(--green), var(--teal-mid));
}

.category:nth-child(even):hover .category__icon {
  background: linear-gradient(145deg, var(--magenta), var(--magenta-hot));
}

.category h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--teal);
  margin-bottom: 0.45rem;
}

.category p {
  color: var(--muted);
  font-size: 0.96rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: none;
}

.step__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.85rem;
  background: linear-gradient(90deg, var(--magenta), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.step h3 {
  font-family: var(--font-display);
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--muted);
}

/* ---------- Contacto ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display);
  color: var(--teal);
  margin-bottom: 1.25rem;
  font-size: 1.35rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.contact-list i {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--magenta-soft);
  color: var(--magenta);
  flex-shrink: 0;
}

.contact-list .fa-whatsapp {
  background: #e8f8ee;
  color: var(--green);
}

.contact-list strong {
  display: block;
  font-size: 0.82rem;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-list span,
.contact-list a {
  color: var(--muted);
}

.contact-list a:hover {
  color: var(--magenta);
}

.contact-seal {
  margin-top: 1.75rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.contact-seal i {
  color: var(--green);
  font-size: 1.35rem;
  margin-top: 0.15rem;
}

.contact-seal p {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-form {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 1rem;
}

.form-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: var(--teal);
  font-size: 0.9rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fbfcfc;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--teal-mid);
  box-shadow: 0 0 0 3px rgba(15, 107, 102, 0.15);
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: var(--muted);
  min-height: 1.2em;
}

.form-note.is-error {
  color: var(--magenta);
}

.form-note.is-ok {
  color: var(--green);
}

/* ---------- Footer (4 cols, 80%) ---------- */
.footer {
  background: linear-gradient(180deg, var(--teal), var(--teal-deep));
  color: rgba(255, 255, 255, 0.88);
  padding-top: 3.5rem;
}

.footer__inner {
  width: var(--body-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer__logo {
  height: 52px;
  width: auto;
  margin-bottom: 1rem;
  background: var(--white);
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
}

.footer__col p {
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-bright);
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__menu li {
  margin-bottom: 0.55rem;
  padding-left: 1rem;
  position: relative;
}

.footer__menu li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--green-bright);
  font-weight: 700;
}

.footer__menu a:hover {
  color: var(--green-bright);
}

.footer__contact li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  font-size: 0.92rem;
}

.footer__contact i {
  color: var(--green-bright);
  margin-top: 0.2rem;
  width: 1rem;
  text-align: center;
}

.footer__contact a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__bottom-inner {
  width: var(--body-w);
  margin: 0 auto;
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
}

.footer__bottom a {
  color: var(--green-bright);
  font-weight: 600;
}

.footer__bottom a:hover {
  text-decoration: underline;
}

/* ---------- Gadgets: WhatsApp + Scroll-up ---------- */
.wa-gadget {
  position: fixed;
  right: var(--wa-right);
  bottom: var(--wa-bottom);
  z-index: 200;
  width: var(--wa-size);
  height: var(--wa-size);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: var(--white);
  font-size: 1.85rem;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: waPulse 2.4s ease-in-out infinite;
}

.wa-gadget:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.55);
}

.scroll-up {
  position: fixed;
  right: calc(var(--wa-right) + (var(--wa-size) - 46px) / 2);
  bottom: calc(var(--wa-bottom) + var(--wa-size) + 50px);
  z-index: 200;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--magenta);
  color: var(--white);
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(194, 24, 91, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.2s ease;
}

.scroll-up.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-up:hover {
  background: var(--magenta-hot);
}

/* ---------- Página aviso ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--teal-deep), var(--teal) 55%, #5a1a3a);
  color: var(--white);
  padding: 3.5rem 0;
}

.page-hero__inner {
  width: var(--body-w);
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 0.5rem;
}

.page-hero p {
  opacity: 0.88;
}

.legal {
  padding: 3.5rem 0 5rem;
}

.legal__inner {
  width: var(--body-w);
  margin: 0 auto;
  max-width: 860px;
}

.legal h2 {
  font-family: var(--font-display);
  color: var(--teal);
  font-size: 1.25rem;
  margin: 1.75rem 0 0.65rem;
}

.legal p,
.legal li {
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.legal ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

/* ---------- Animaciones ---------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatShape {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-28px) rotate(8deg);
  }
}

@keyframes patternDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 48px 48px;
  }
}

@keyframes scrollPulse {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(14px);
  }
}

@keyframes waPulse {
  0%,
  100% {
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(37, 211, 102, 0.15);
  }
}

@keyframes sealSpin {
  to {
    filter: hue-rotate(20deg);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about-grid,
  .categories,
  .steps,
  .footer__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .toolbar__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.55rem 0;
    gap: 0.35rem;
  }

  .toolbar__right {
    gap: 0.85rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .nav.is-open {
    max-height: 360px;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    width: var(--header-w);
    margin: 0 auto;
    padding: 0.75rem 0 1.1rem;
  }

  .nav__link {
    display: block;
    padding: 0.75rem 0;
  }

  .badge-oficial__text {
    display: none;
  }

  .hero__content {
    margin-left: auto;
    margin-right: auto;
  }

  .auth-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .about-grid,
  .categories,
  .steps,
  .footer__inner,
  .form-row--2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  :root {
    --header-w: 92vw;
    --body-w: 90vw;
    --wa-right: 16px;
    --wa-bottom: 16px;
  }

  .toolbar__left span {
    font-size: 0.8rem;
  }

  .header__logo {
    height: 92px;
  }

  .hero {
    min-height: 78vh;
  }
}
