:root {
  --blue: #0076a8;
  --blue-dark: #095678;
  --sky: #00aeef;
  --orange: #f7941d;
  --orange-dark: #cf7208;
  --navy: #102f49;
  --ink: #17232d;
  --muted: #5c6b78;
  --line: #d9e7ef;
  --cloud: #f4f9fc;
  --mist: #eaf6fb;
  --white: #ffffff;
  --green: #2d9b71;
  --shadow: 0 18px 45px rgba(16, 47, 73, 0.13);
  --radius: 8px;
  --header: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--blue);
  border-radius: var(--radius);
  transition: transform 160ms ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.icon {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shell {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  min-height: var(--header);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 231, 239, 0.82);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 30px rgba(16, 47, 73, 0.1);
}

.nav {
  min-height: var(--header);
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-right: auto;
}

.brand img {
  width: 132px;
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-menu a {
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  color: var(--blue);
  border-color: var(--orange);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.8rem 1.1rem;
  color: var(--navy);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(16, 47, 73, 0.12);
}

.btn-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 28px rgba(247, 148, 29, 0.28);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-outline {
  color: var(--navy);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
}

.hero .btn-outline,
.page-hero .btn-outline,
.cta-band .btn-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(12px);
}

.btn-small {
  min-height: 42px;
  padding: 0.68rem 0.9rem;
  font-size: 0.92rem;
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(247, 148, 29, 0.55);
  outline-offset: 3px;
}

.section {
  padding: 5.5rem 0;
}

.section-tint {
  background: linear-gradient(180deg, var(--cloud), #ffffff);
}

.section-dark {
  color: var(--white);
  background: var(--navy);
}

.section-head {
  max-width: 780px;
  margin-bottom: 2.4rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow,
.cta-band .eyebrow {
  color: var(--orange);
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: "Poppins", "Inter", Arial, sans-serif;
  line-height: 1.12;
}

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

.section-head h2,
.split-copy h2,
.contact-copy h2 {
  margin-bottom: 1rem;
  font-size: 2.45rem;
}

.section-head p,
.split-copy p,
.contact-copy p {
  color: var(--muted);
}

.section-dark h2,
.section-dark h3,
.section-dark p,
.page-hero h1,
.page-hero p,
.hero h1,
.hero p,
.cta-band h2,
.cta-band p {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 84svh;
  display: flex;
  align-items: center;
  color: var(--white);
  background: url("assets/fundo-ilhasol.png") center right / cover no-repeat;
  overflow: hidden;
}

.hero::before,
.page-hero::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 36, 58, 0.92), rgba(7, 52, 78, 0.68) 48%, rgba(7, 52, 78, 0.16)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.3));
}

.hero-content,
.page-hero-content,
.cta-band .shell {
  position: relative;
  z-index: 1;
  max-width: 100%;
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 1rem;
  font-size: 3.65rem;
}

.title-line {
  display: inline;
}

.hero-lead {
  max-width: 710px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
  overflow-wrap: break-word;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 880px;
  margin: 2.4rem 0 0;
}

.proof-item {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.proof-item strong {
  display: block;
  color: var(--orange);
  font-family: "Poppins", "Inter", Arial, sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}

.proof-item span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 700;
}

.trust-strip {
  padding: 1.2rem 0;
  color: var(--white);
  background: var(--navy);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.8fr);
  gap: 1rem;
  align-items: center;
}

.trust-grid strong {
  color: var(--orange);
}

.trust-grid span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
}

.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 5.5rem 0;
  background: url("assets/fundo-ilhasol.png") center / cover no-repeat;
  overflow: hidden;
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 1rem;
  font-size: 3rem;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: 3rem;
  align-items: start;
}

.media-stack {
  display: grid;
  gap: 1rem;
}

.media-stack img,
.feature-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.metric-panel,
.quote-panel,
.calculator,
.contact-card,
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.metric-panel,
.quote-panel,
.contact-card {
  padding: 1.4rem;
}

.metric-panel {
  display: grid;
  gap: 1rem;
}

.metric-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.metric-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.metric-row strong {
  color: var(--blue);
  font-family: "Poppins", "Inter", Arial, sans-serif;
  font-size: 1.55rem;
}

.metric-row span {
  color: var(--muted);
  font-weight: 700;
}

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

.card,
.product-card,
.project-card,
.process-card,
.benefit-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover,
.product-card:hover,
.project-card:hover,
.process-card:hover,
.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 118, 168, 0.34);
  box-shadow: var(--shadow);
}

.card,
.process-card,
.benefit-card {
  padding: 1.35rem;
}

.icon-box {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--blue);
  background: var(--mist);
  border-radius: var(--radius);
}

.icon-box .icon {
  width: 1.35rem;
  height: 1.35rem;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 56px;
  height: 56px;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.14), rgba(0, 174, 239, 0));
  pointer-events: none;
}

.service-card .icon-box {
  width: 54px;
  height: 54px;
  color: var(--blue);
  background: linear-gradient(135deg, #eaf6fb, #ffffff);
  border: 1px solid rgba(0, 118, 168, 0.18);
  box-shadow: 0 12px 28px rgba(0, 118, 168, 0.12);
}

.service-card .icon-box .icon {
  width: 1.55rem;
  height: 1.55rem;
}

.card h3,
.product-card h3,
.project-card h3,
.process-card h3,
.benefit-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.16rem;
}

.card p,
.process-card p,
.benefit-card p,
.project-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.check-list,
.plain-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  color: var(--navy);
  font-weight: 800;
}

.check-list .icon {
  color: var(--green);
  margin-top: 0.18rem;
}

.plain-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-card .step {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-weight: 900;
}

.products-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.filter-panel {
  position: sticky;
  top: calc(var(--header) + 1rem);
  display: grid;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.filter-panel button {
  width: 100%;
  padding: 0.75rem 0.8rem;
  color: var(--navy);
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.filter-panel button.is-active,
.filter-panel button:hover {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  overflow: hidden;
}

.product-card.is-hidden,
.project-card.is-hidden {
  display: none;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 1rem;
  background: #f7fbfd;
}

.product-card-content {
  padding: 1.1rem;
}

.product-card .category {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.portfolio-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.portfolio-feature-grid .project-card:first-child {
  grid-column: span 2;
}

.portfolio-feature-grid .project-card:first-child img {
  aspect-ratio: 16 / 9;
}

.project-card {
  overflow: hidden;
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-card-content {
  padding: 1rem;
}

.project-card span {
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cta-band {
  position: relative;
  padding: 4.5rem 0;
  color: var(--white);
  background: url("assets/fundo-ilhasol.png") center / cover no-repeat;
  overflow: hidden;
}

.cta-content {
  max-width: 790px;
}

.cta-content h2 {
  margin-bottom: 1rem;
  font-size: 2.4rem;
}

.calculator {
  padding: 1.5rem;
}

.calculator label {
  display: block;
  margin: 1rem 0 0.45rem;
  color: var(--navy);
  font-weight: 900;
}

.calculator label:first-child {
  margin-top: 0;
}

.input-row {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.input-row input {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem;
  border: 0;
}

.input-row span {
  padding: 0 0.85rem;
  color: var(--muted);
  font-weight: 900;
  white-space: nowrap;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--orange);
}

.range-meta,
.result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.range-meta {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.result-grid {
  margin-top: 1.2rem;
}

.result-grid div {
  padding: 1rem;
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.result-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.result-grid strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--blue);
  font-family: "Poppins", "Inter", Arial, sans-serif;
  font-size: 1.18rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1fr);
  gap: 2rem;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 0.75rem;
}

.contact-card {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.contact-card .icon {
  color: var(--orange);
  margin-top: 0.2rem;
}

.contact-card strong {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.form-card {
  overflow: hidden;
}

.form-inner {
  padding: 1.5rem;
}

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

.field {
  display: grid;
  gap: 0.4rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy);
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.82rem 0.85rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.field textarea {
  resize: vertical;
}

.form-note {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.2rem;
}

.form-actions .btn {
  flex: 0 0 auto;
}

.form-actions .form-note {
  max-width: 390px;
  margin: 0;
}

.map-frame {
  height: 330px;
  border-top: 1px solid var(--line);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

summary {
  padding: 1rem 1.1rem;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

details p {
  padding: 0 1.1rem 1.1rem;
  color: var(--muted);
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: #0d283f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 0.95fr 0.8fr;
  gap: 2rem;
  padding: 3rem 0;
}

.footer-grid img {
  width: 132px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-grid h2 {
  margin-bottom: 0.9rem;
  color: var(--white);
  font-size: 1rem;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-top: 0.45rem;
}

.footer-grid a:hover,
.footer-bottom a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.footer-credit {
  color: rgba(255, 255, 255, 0.68);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.hero-content.reveal,
.page-hero-content.reveal {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 1200px) {
  .section {
    padding: 4.5rem 0;
  }

  .section-head h2,
  .split-copy h2,
  .contact-copy h2,
  .cta-content h2 {
    font-size: 2rem;
  }

  .nav-toggle {
    display: inline-flex;
    position: fixed;
    top: 13px;
    right: 1rem;
    z-index: 80;
    color: var(--white);
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 8px 20px rgba(16, 47, 73, 0.12);
  }

  .nav-cta {
    display: none;
  }

  .nav-menu {
    position: fixed;
    inset: var(--header) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 0.75rem 1rem 1rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 38px rgba(16, 47, 73, 0.14);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 78svh;
    background-position: 64% center;
  }

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

  .hero-proof,
  .trust-grid,
  .card-grid,
  .product-grid,
  .portfolio-grid,
  .portfolio-feature-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-feature-grid .project-card:first-child {
    grid-column: 1 / -1;
  }

  .split,
  .products-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  :root {
    --header: 70px;
  }

  .shell {
    width: min(100% - 1.25rem, 1160px);
  }

  .brand img,
  .footer-grid img {
    width: 118px;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero {
    min-height: 420px;
    padding: 5.5rem 0;
    background-position: center top;
    background-size: 150% auto;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.1rem;
  }

  .title-line {
    display: block;
  }

  .hero-lead,
  .page-hero p {
    font-size: 1rem;
  }

  .hero-actions,
  .section-actions,
  .btn {
    width: 100%;
  }

  .hero-proof,
  .trust-grid,
  .card-grid,
  .product-grid,
  .portfolio-grid,
  .portfolio-feature-grid,
  .process-grid,
  .result-grid,
  .range-meta,
  .footer-grid,
  .form-grid,
  .filter-panel {
    grid-template-columns: 1fr;
  }

  .metric-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .portfolio-feature-grid .project-card:first-child {
    grid-column: auto;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::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;
  }
}
