:root {
  --navy: #0c172c;
  --navy-2: #132343;
  --green: #95b862;
  --green-2: #b5d581;
  --white: #ffffff;
  --ink: #142033;
  --muted: #697589;
  --line: rgba(12, 23, 44, 0.12);
  --glass: rgba(255, 255, 255, 0.12);
  --shadow: 0 28px 70px rgba(5, 14, 31, 0.22);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f6f8f4;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
select {
  font: inherit;
}

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

.site-shell {
  overflow: clip;
}

.section-pad {
  padding: 108px max(22px, calc((100vw - var(--max)) / 2));
}

.nav {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--max));
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(12, 23, 44, 0.72);
  box-shadow: 0 12px 36px rgba(7, 15, 31, 0.22);
  color: var(--white);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.nav.scrolled {
  background: rgba(12, 23, 44, 0.94);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), #e8f6cf);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 11px 13px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transform: translateY(-1px);
}

.nav-links .nav-cta {
  background: var(--green);
  color: var(--navy);
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 150px;
  padding-bottom: 84px;
  color: var(--white);
  background: var(--navy);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  background: linear-gradient(180deg, rgba(246, 248, 244, 0), #f6f8f4);
  content: "";
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transform: scale(1.04);
}

.hero-bg::before,
.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
}

.hero-bg::before {
  background:
    radial-gradient(circle at 72% 30%, rgba(149, 184, 98, 0.3), transparent 27%),
    linear-gradient(90deg, rgba(12, 23, 44, 0.98) 0%, rgba(12, 23, 44, 0.78) 44%, rgba(12, 23, 44, 0.2) 100%);
}

.hero-bg::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.7fr);
  gap: 48px;
  align-items: end;
  min-height: calc(100svh - 240px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(4.2rem, 11vw, 9rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-lede {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.12rem, 2.2vw, 1.5rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 20px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn svg {
  width: 20px;
  height: 20px;
  margin-left: 10px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green);
  box-shadow: 0 18px 40px rgba(149, 184, 98, 0.28);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--green-2);
}

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

.btn-ghost.light {
  border-color: rgba(255, 255, 255, 0.35);
}

.btn.full {
  width: 100%;
}

.microcopy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.68);
}

.hero-panel {
  display: grid;
  gap: 14px;
}

.signal-card,
.price-orbit,
.hero-stats {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(12, 23, 44, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.signal-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.signal-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(149, 184, 98, 0.16);
}

.price-orbit {
  position: relative;
  overflow: hidden;
  padding: 30px;
}

.price-orbit::after {
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(149, 184, 98, 0.45);
  border-radius: 50%;
  box-shadow: inset 0 0 40px rgba(149, 184, 98, 0.13);
  content: "";
  animation: pulse-ring 4s ease-in-out infinite;
}

.price-orbit span,
.price-orbit small {
  display: block;
  color: rgba(255, 255, 255, 0.66);
}

.price-orbit strong {
  display: block;
  margin: 8px 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.hero-stats {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
}

.hero-stats div {
  padding: 20px;
}

.hero-stats div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  margin-bottom: 6px;
  color: var(--green);
  font-size: 1.5rem;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.35;
}

.section-head {
  max-width: 860px;
  margin-bottom: 44px;
}

.section-head p:not(.eyebrow) {
  max-width: 700px;
  font-size: 1.08rem;
}

.services-section {
  position: relative;
  background:
    radial-gradient(circle at 82% 12%, rgba(149, 184, 98, 0.16), transparent 30%),
    #f6f8f4;
}

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

.service-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 332px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(12, 23, 44, 0.07);
  flex-direction: column;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--green), transparent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.service-card:hover {
  border-color: rgba(149, 184, 98, 0.56);
  box-shadow: 0 28px 55px rgba(12, 23, 44, 0.12);
  transform: translateY(-6px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card.featured {
  grid-column: span 1;
  background:
    linear-gradient(145deg, rgba(12, 23, 44, 0.96), rgba(19, 35, 67, 0.94)),
    var(--navy);
  color: var(--white);
}

.service-card.featured p,
.service-card.featured .service-label {
  color: rgba(255, 255, 255, 0.72);
}

.service-card.featured .card-icon {
  background: var(--green);
  color: var(--navy);
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 8px;
  background: rgba(149, 184, 98, 0.16);
  color: var(--green);
}

.card-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.service-label {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-line,
.consult-line {
  margin-top: auto;
  margin-bottom: 18px;
  padding: 12px 0 0;
  border-top: 1px solid rgba(12, 23, 44, 0.1);
}

.service-card.featured .price-line {
  border-color: rgba(255, 255, 255, 0.14);
}

.price-line span,
.price-line strong {
  display: block;
}

.price-line span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.price-line strong {
  color: var(--green);
  font-size: 1.24rem;
}

.consult-line {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.card-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  color: var(--navy);
  font-weight: 900;
}

.featured .card-link {
  color: var(--green);
}

.card-link::after {
  width: 26px;
  height: 2px;
  margin-left: 10px;
  background: currentColor;
  content: "";
  transition: width 180ms ease;
}

.card-link:hover::after {
  width: 42px;
}

.allies-strip {
  padding: 26px max(22px, calc((100vw - var(--max)) / 2));
  background: var(--navy);
  color: var(--white);
}

.allies-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 52px rgba(5, 14, 31, 0.18);
}

.allies-kicker,
.allies-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 900;
}

.ally-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ally-logo-card {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid rgba(149, 184, 98, 0.28);
  border-radius: 8px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(12, 23, 44, 0.04);
}

.ally-logo {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.ally-logo-addi {
  height: 48px;
}

.ally-logo-terpel {
  height: 42px;
}

.ally-logo-sistecredito {
  height: 50px;
}

.autoglp-section {
  background: var(--white);
}

.autoglp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 34px;
  align-items: start;
}

.autoglp-cta {
  position: sticky;
  top: 110px;
  padding: 24px;
  border: 1px solid rgba(149, 184, 98, 0.34);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #f7fbef, #fff);
  box-shadow: 0 18px 45px rgba(12, 23, 44, 0.1);
}

.tool-label {
  margin-bottom: 18px;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
}

.autoglp-cta strong,
.autoglp-cta span {
  display: block;
}

.autoglp-cta strong {
  margin-bottom: 12px;
  color: var(--green);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
}

.autoglp-cta span {
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.55;
}

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

.finance-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  gap: 46px;
  align-items: center;
}

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

.finance-section p {
  color: rgba(255, 255, 255, 0.74);
}

.plan-grid {
  display: grid;
  gap: 16px;
}

.plan-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.plan-card::after {
  position: absolute;
  inset: auto -40px -70px auto;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(149, 184, 98, 0.48);
  border-radius: 50%;
  content: "";
}

.plan-card span,
.plan-card strong {
  display: block;
}

.plan-card span {
  margin-bottom: 10px;
  color: var(--green);
  font-weight: 900;
}

.plan-card strong {
  margin-bottom: 10px;
  font-size: 2rem;
  line-height: 1;
}

.quick-quote {
  background:
    linear-gradient(135deg, rgba(149, 184, 98, 0.22), transparent 46%),
    #f6f8f4;
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr) auto;
  gap: 26px;
  align-items: center;
  padding: 32px;
  border: 1px solid rgba(12, 23, 44, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 56px rgba(12, 23, 44, 0.1);
}

.quote-band h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

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

.steps span {
  padding: 11px 12px;
  border: 1px solid rgba(12, 23, 44, 0.1);
  border-radius: 8px;
  background: #f7fbef;
  color: var(--navy);
  font-weight: 800;
}

.agenda-section {
  background: var(--white);
}

.agenda-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 46px;
  align-items: center;
}

.schedule-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9fbf6;
  box-shadow: 0 18px 44px rgba(12, 23, 44, 0.08);
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.schedule-row span {
  color: var(--muted);
}

.schedule-row strong {
  color: var(--navy);
  text-align: right;
}

.schedule-row.muted {
  background: rgba(12, 23, 44, 0.04);
}

.map-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  background: var(--navy);
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 300px;
  border: 0;
  filter: saturate(0.82) contrast(1.03);
}

.map-link {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  max-width: calc(100% - 32px);
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--green);
  box-shadow: 0 16px 32px rgba(12, 23, 44, 0.2);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.map-link:hover,
.map-link:focus-visible {
  background: var(--green-2);
  transform: translateY(-2px);
}

.trust-section {
  background: #f6f8f4;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(3, minmax(0, 0.7fr));
  gap: 14px;
}

.trust-grid h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.trust-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  margin-bottom: 10px;
  color: var(--navy);
}

.trust-item span {
  color: var(--muted);
  line-height: 1.55;
}

.faq-section {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfa;
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 22px;
  color: var(--navy);
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  max-width: 860px;
  margin: 0;
  padding: 0 22px 22px;
}

.final-cta {
  background:
    radial-gradient(circle at 78% 18%, rgba(149, 184, 98, 0.2), transparent 30%),
    var(--navy);
}

.final-box {
  max-width: 900px;
  color: var(--white);
}

.final-box h2 {
  color: var(--white);
}

.final-box p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px max(22px, calc((100vw - var(--max)) / 2));
  background: #081122;
  color: rgba(255, 255, 255, 0.74);
}

.footer a {
  color: var(--green);
  font-weight: 900;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 18px 40px rgba(12, 23, 44, 0.24);
  color: var(--navy);
  transition: transform 180ms ease, background 180ms ease;
}

.floating-whatsapp:hover {
  background: var(--green-2);
  transform: translateY(-3px) scale(1.02);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 90ms;
}

.delay-2 {
  transition-delay: 180ms;
}

@keyframes pulse-ring {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.48;
  }
}

@media (max-width: 980px) {
	  .section-pad {
	    padding: 86px 22px;
	  }
	
	  .hero-grid,
	  .autoglp-layout,
	  .finance-wrap,
	  .agenda-grid,
	  .quote-band,
	  .trust-grid {
	    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-panel {
    max-width: 560px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .allies-inner {
    grid-template-columns: 1fr;
  }

  .allies-note {
    text-align: left;
  }

  .autoglp-cta {
    position: static;
  }
}

@media (max-width: 760px) {
  .nav {
    top: 10px;
    width: min(calc(100% - 20px), var(--max));
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 74px;
    right: 10px;
    left: 10px;
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(12, 23, 44, 0.97);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 14px;
  }

  .hero {
    padding-top: 126px;
  }

  .hero-bg img {
    object-position: 64% center;
  }

  .hero-bg::before {
    background:
      radial-gradient(circle at 70% 34%, rgba(149, 184, 98, 0.22), transparent 28%),
      linear-gradient(180deg, rgba(12, 23, 44, 0.92), rgba(12, 23, 44, 0.8) 48%, rgba(12, 23, 44, 0.96));
  }

  h1 {
    font-size: clamp(3.6rem, 18vw, 6.5rem);
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3.6rem);
  }

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

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .ally-list {
    grid-template-columns: 1fr;
  }

  .ally-logo-card {
    min-height: 64px;
  }

  .ally-logo-addi {
    height: 44px;
  }

  .ally-logo-terpel {
    height: 38px;
  }

  .ally-logo-sistecredito {
    height: 44px;
  }

  .map-link {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .schedule-row {
    display: grid;
  }

  .schedule-row strong {
    text-align: left;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 58px;
    height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
