:root {
  color-scheme: light;
  --indigo-950: #070d35;
  --indigo-900: #10175a;
  --indigo-800: #19227a;
  --indigo-700: #24329e;
  --blue-500: #2f80ed;
  --cyan-300: #67e8f9;
  --green-400: #38d78a;
  --amber-300: #f4c95d;
  --white: #ffffff;
  --cloud: #f5f8ff;
  --slate-900: #111827;
  --slate-700: #334155;
  --slate-500: #64748b;
  --border: #dfe7f5;
  --shadow: 0 18px 60px rgba(14, 23, 60, 0.16);
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1120px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--slate-900);
  background: var(--cloud);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

#top {
  scroll-margin-top: 0;
}

.material-symbols-rounded {
  font-family: 'Material Symbols Rounded';
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  flex: 0 0 auto;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-height);
  padding: 14px clamp(18px, 4vw, 44px);
  color: var(--white);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 13, 52, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(4, 9, 35, 0.24);
  backdrop-filter: blur(14px);
}

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

.brand-logo {
  width: 170px;
  height: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 42px) 18px 54px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7, 13, 53, 0.16), rgba(7, 13, 53, 0.52)),
    linear-gradient(135deg, var(--indigo-900), var(--indigo-800) 52%, #0d2f68);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 13, 53, 0.9), rgba(7, 13, 53, 0.66) 52%, rgba(7, 13, 53, 0.34)),
    linear-gradient(180deg, rgba(7, 13, 53, 0.36), rgba(7, 13, 53, 0.72));
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 130px;
  background: linear-gradient(180deg, transparent, rgba(245, 248, 255, 0.08));
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.88;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--container));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan-300);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--indigo-700);
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.04;
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(42px, 9vw, 86px);
  font-weight: 800;
}

.is-typewriter {
  position: relative;
}

.typewriter-reserve {
  display: block;
  visibility: hidden;
}

.typewriter-live {
  position: absolute;
  inset: 0;
  display: block;
}

.hero-subtitle {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2.6vw, 21px);
}

.hero-actions,
.quick-analysis-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn .material-symbols-rounded {
  font-size: 20px;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #062416;
  background: var(--green-400);
  box-shadow: 0 12px 34px rgba(56, 215, 138, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #51e89e;
  box-shadow: 0 16px 44px rgba(56, 215, 138, 0.34);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.microcopy {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.quick-analysis {
  width: min(100%, 620px);
  margin-top: 34px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(8, 13, 52, 0.44);
  backdrop-filter: blur(14px);
}

.quick-analysis label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.quick-analysis input {
  flex: 1 1 230px;
  min-height: 48px;
  min-width: 0;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.quick-analysis input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.quick-analysis button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  color: #062416;
  background: var(--green-400);
  font-weight: 800;
  cursor: pointer;
}

.quick-analysis span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.trust-strip,
.section,
.final-cta,
.site-footer {
  padding-left: 18px;
  padding-right: 18px;
}

.trust-strip {
  display: grid;
  gap: 12px;
  width: min(100%, var(--container));
  margin: -34px auto 0;
  position: relative;
  z-index: 4;
}

.trust-strip div {
  padding: 18px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 8px;
  color: var(--indigo-800);
  background: rgba(47, 128, 237, 0.1);
  font-size: 21px;
}

.trust-strip strong,
.trust-strip div > span:not(.trust-icon) {
  display: block;
}

.trust-strip strong {
  color: var(--indigo-800);
  font-size: 15px;
}

.trust-strip div > span:not(.trust-icon) {
  margin-top: 4px;
  color: var(--slate-500);
  font-size: 13px;
}

.section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.section-light {
  background: var(--cloud);
}

.section-indigo {
  color: var(--white);
  background: var(--indigo-900);
}

.section-header {
  width: min(100%, var(--container));
  margin: 0 auto 32px;
}

.section-header.compact {
  margin-bottom: 24px;
}

.section h2 {
  max-width: 780px;
  color: var(--slate-900);
  font-size: clamp(30px, 6vw, 50px);
}

.section-lead {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--slate-500);
  font-size: 18px;
}

.section-indigo h2 {
  color: var(--white);
}

.question-grid,
.solution-grid,
.package-grid,
.proof-grid,
.difference-grid,
.case-placeholders,
.steps {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.question-grid {
  display: grid;
  gap: 12px;
}

.question-grid p,
.problem-tags > span,
.niche-list span,
.difference-grid span {
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
}

.question-grid p {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 0;
  padding: 18px;
  color: var(--slate-700);
  font-weight: 700;
}

.question-grid p .material-symbols-rounded {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  color: var(--indigo-700);
  background: rgba(36, 50, 158, 0.08);
  font-size: 18px;
}

.section-close {
  width: min(100%, var(--container));
  margin: 24px auto 0;
  color: var(--indigo-800);
  font-size: 18px;
  font-weight: 800;
}

.problem-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(100%, var(--container));
  margin: 24px auto 0;
}

.problem-tags > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  color: var(--slate-700);
  font-size: 13px;
  font-weight: 700;
}

.problem-tags .material-symbols-rounded {
  color: var(--indigo-700);
  font-size: 17px;
}

.urgency {
  display: grid;
  gap: 22px;
  align-items: center;
}

.urgency > * {
  width: min(100%, var(--container));
  margin-left: auto;
  margin-right: auto;
}

.solution-grid,
.package-grid,
.proof-grid,
.case-placeholders {
  display: grid;
  gap: 16px;
}

.card,
.package,
.proof-grid article,
.case-placeholders article,
.steps article {
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
}

.card {
  padding: 22px;
  min-height: 218px;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--indigo-800);
  background: rgba(47, 128, 237, 0.1);
  font-size: 23px;
}

.card h3,
.package h3,
.steps h3 {
  margin: 0;
  color: var(--slate-900);
  font-size: 20px;
  line-height: 1.2;
}

.card p,
.package li,
.steps p,
.case-placeholders p,
.section-copy p,
.final-cta p {
  color: var(--slate-500);
}

.card p {
  margin: 12px 0 18px;
}

.card strong {
  color: var(--indigo-800);
  font-size: 14px;
}

.section-split {
  display: grid;
  gap: 30px;
  background: var(--white);
}

.section-copy,
.steps {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.section-copy h2 {
  max-width: 720px;
}

.section-copy p:not(.eyebrow) {
  max-width: 600px;
  margin: 18px 0 0;
  font-size: 17px;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  padding: 22px;
}

.steps .step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--indigo-800);
  font-size: 22px;
}

.steps p {
  margin: 10px 0 0;
}

.niches {
  overflow: hidden;
}

.niche-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(100%, var(--container));
  margin: 0 auto;
}

.niche-list span {
  padding: 10px 14px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.package {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(14, 23, 60, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.package.featured {
  border-color: rgba(56, 215, 138, 0.46);
  box-shadow: 0 18px 44px rgba(14, 23, 60, 0.12);
}

.package.is-floating-target {
  border-color: rgba(56, 215, 138, 0.62);
  box-shadow: 0 20px 46px rgba(14, 23, 60, 0.16);
  transform: translateY(-2px);
}

.recommended-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 8px;
  color: #0f3b25;
  background: rgba(56, 215, 138, 0.18);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-label {
  margin: 0;
  color: var(--indigo-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.package li {
  position: relative;
  padding-left: 28px;
}

.package li::before {
  content: 'check_circle';
  position: absolute;
  left: 0;
  top: 0.15em;
  color: var(--green-400);
  font-family: 'Material Symbols Rounded';
  font-size: 18px;
  line-height: 1;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}

.proof-section {
  padding-top: 28px;
}

.proof-grid article {
  padding: 22px;
}

.proof-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 8px;
  color: var(--indigo-800);
  background: rgba(47, 128, 237, 0.1);
  font-size: 23px;
}

.proof-grid h3 {
  margin: 0;
  color: var(--slate-900);
  font-size: 20px;
  line-height: 1.2;
}

.proof-grid p {
  margin: 10px 0 0;
  color: var(--slate-500);
}

.difference-grid {
  display: grid;
  gap: 12px;
}

.difference-grid span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  color: var(--slate-700);
  font-weight: 800;
}

.difference-grid span::before {
  content: 'check_circle';
  color: var(--indigo-700);
  font-family: 'Material Symbols Rounded';
  font-size: 20px;
  line-height: 1.15;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.future-cases {
  padding-top: 20px;
}

.case-placeholders article {
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(25, 34, 122, 0.04), rgba(47, 128, 237, 0.04)),
    var(--white);
}

.case-placeholders article > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--indigo-800);
  font-weight: 800;
}

.case-placeholders .material-symbols-rounded {
  font-size: 21px;
}

.case-placeholders p {
  margin: 8px 0 0;
}

.final-cta {
  padding-top: 72px;
  padding-bottom: 72px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 23, 90, 0.94), rgba(13, 47, 104, 0.94)),
    var(--indigo-900);
}

.final-cta > * {
  width: min(100%, var(--container));
  margin-left: auto;
  margin-right: auto;
}

.final-cta-split {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .final-cta-split {
    grid-template-columns: 1fr 440px;
    gap: 80px;
  }
}

.final-cta-copy h2 {
  margin-bottom: 20px;
}

.final-form {
  padding: 32px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.final-form label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.final-form label .material-symbols-rounded {
  color: var(--green-400);
}

.final-form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.final-form input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 16px;
  transition: border-color 200ms ease;
}

.final-form input:focus {
  border-color: var(--green-400);
  outline: none;
}

.final-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.final-form input.needs-attention {
  animation: glow-input 0.8s infinite alternate ease-in-out;
}

@keyframes glow-input {
  0% {
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 rgba(56, 215, 138, 0);
    border-color: rgba(255, 255, 255, 0.2);
  }
  100% {
    background: rgba(56, 215, 138, 0.1);
    box-shadow: 0 0 16px rgba(56, 215, 138, 0.4);
    border-color: var(--green-400);
  }
}

.final-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 8px;
  background: var(--green-400);
  color: #062416;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.final-form button:hover {
  transform: translateY(-2px);
  background: #51e89e;
}

.final-form button.is-ready {
  animation: glow-button 0.6s infinite alternate ease-in-out;
}

@keyframes glow-button {
  0% {
    background: var(--green-400);
    box-shadow: 0 0 0 rgba(56, 215, 138, 0);
    transform: translateY(0) scale(1);
  }
  100% {
    background: #6af5af;
    box-shadow: 0 6px 20px rgba(56, 215, 138, 0.6);
    transform: translateY(-2px) scale(1.02);
  }
}

.final-form .form-help {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  text-align: center;
}

.final-cta h2 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(30px, 6vw, 50px);
}

.final-cta p:not(.eyebrow) {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.site-footer {
  display: grid;
  gap: 28px;
  padding-top: 38px;
  padding-bottom: 88px;
  color: var(--slate-500);
  background: var(--white);
}

.site-footer > * {
  width: min(100%, var(--container));
  margin-left: auto;
  margin-right: auto;
}

.site-footer img {
  width: 154px;
}

.site-footer p {
  margin: 14px 0 0;
}

.site-footer address {
  display: grid;
  gap: 8px;
  font-style: normal;
}

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

.site-footer a {
  width: fit-content;
}

.site-footer a:hover {
  color: var(--indigo-800);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 152px;
  max-width: calc(100vw - 36px);
  min-height: 54px;
  padding: 0 20px;
  border-radius: 8px;
  color: #062416;
  background: linear-gradient(135deg, var(--green-400), #67e8a6);
  box-shadow: 0 16px 42px rgba(8, 13, 52, 0.28);
  font-weight: 900;
  overflow: hidden;
  animation: floating-whatsapp-glow 4.2s ease-in-out infinite;
  transition: min-width 220ms ease, transform 180ms ease, box-shadow 180ms ease, background 220ms ease;
}

.floating-whatsapp::before {
  content: '';
  position: absolute;
  inset: -80% -35%;
  z-index: -1;
  background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, 0.52), transparent 68%);
  opacity: 0;
  transform: translateX(-40%) rotate(12deg);
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(8, 13, 52, 0.34);
}


.floating-whatsapp-icon,
.floating-whatsapp-label {
  transition: transform 180ms ease, opacity 180ms ease;
}

.floating-whatsapp-icon {
  font-size: 21px;
}

.floating-whatsapp-label {
  min-width: 0;
  white-space: nowrap;
}


@keyframes floating-whatsapp-glow {
  50% {
    box-shadow: 0 18px 48px rgba(56, 215, 138, 0.34), 0 16px 42px rgba(8, 13, 52, 0.22);
  }
}


@media (min-width: 720px) {
  .site-header::after {
    content: '';
    flex: 1 1 0%;
  }

  .brand {
    flex: 1 1 0%;
  }

  .nav-links {
    display: flex;
    justify-content: center;
  }

  .trust-strip,
  .question-grid,
  .proof-grid,
  .difference-grid,
  .case-placeholders {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .question-grid p:first-child,
  .question-grid p:last-child {
    grid-column: span 2;
  }

  .solution-grid,
  .package-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-split {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    padding-left: max(18px, calc((100vw - var(--container)) / 2));
    padding-right: max(18px, calc((100vw - var(--container)) / 2));
  }

  .section-copy,
  .steps {
    width: auto;
  }

  .steps {
    margin-top: 10px;
  }

  .urgency,
  .site-footer {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .urgency > *,
  .site-footer > * {
    width: auto;
  }
}

@media (min-width: 1040px) {
  .brand-logo {
    width: 190px;
  }

  .hero {
    padding-left: 44px;
    padding-right: 44px;
  }
}

@media (max-width: 719px) {
  .site-header {
    gap: 12px;
  }

  .brand-logo {
    width: 142px;
  }

  .hero-actions .btn,
  .quick-analysis button,
  .quick-analysis input {
    width: 100%;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .card,
  .package,
  .steps article {
    padding: 20px;
  }

  .floating-whatsapp {
    right: 12px;
    top: 12px;
    bottom: auto;
    min-width: 138px;
    min-height: 50px;
    padding: 0 16px;
  }
}

@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;
  }
}
