:root {
  --blue-900: #06234a;
  --blue-800: #0d3b66;
  --blue-700: #0f4f8f;
  --blue-500: #1e6fbf;
  --green-600: #1f9b45;
  --green-500: #2e9e4d;
  --green-400: #70bd35;
  --gray-900: #1f2933;
  --gray-700: #4b5563;
  --gray-200: #d7dee8;
  --gray-100: #eef3f7;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(6, 35, 74, 0.16);
  --shadow-soft: 0 10px 28px rgba(6, 35, 74, 0.1);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  font-family:
    "Montserrat",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 999;
  background: var(--blue-900);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(13, 59, 102, 0.1);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand-mark {
  width: 20rem;  
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.road {
  width: 18px;
  height: 35px;
  background: var(--green-600);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  position: relative;
  z-index: 2;
}

.road::after {
  content: "";
  position: absolute;
  inset: 6px 7px 6px 8px;
  background: repeating-linear-gradient(
    to bottom,
    var(--white),
    var(--white) 7px,
    transparent 7px,
    transparent 13px
  );
}

.brand-text {
  display: grid;
  line-height: 1;
  text-transform: uppercase;
  color: var(--blue-900);
  letter-spacing: 0.06em;
}

.brand-text strong {
  font-size: 1.28rem;
  font-weight: 900;
}

.brand-text small {
  color: var(--green-600);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.5vw, 22px);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue-900);
}

.menu a {
  position: relative;
  padding: 8px 0;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  border-radius: 999px;
  background: var(--green-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.menu a:hover::after,
.menu a:focus-visible::after,
.menu a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--gray-100);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue-900);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  min-height: 48px;
  padding: 0 24px;
  font-weight: 800;
  font-size: 0.94rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  border: 0;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-800), var(--blue-500));
}

.btn-secondary {
  color: var(--blue-900);
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(13, 59, 102, 0.18);
}

.btn-whatsapp {
  color: var(--white);
  background: linear-gradient(135deg, #14953b, #32bd54);
  box-shadow: 0 12px 28px rgba(31, 155, 69, 0.26);
}

.btn-whatsapp::before {
  content: "☎";
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 0.76rem;
}

.section {
  padding: clamp(64px, 7vw, 104px) 0;
}

.hero {
  position: relative;
  min-height: 680px;

  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,.92) 0%,
      rgba(255,255,255,.85) 35%,
      rgba(255,255,255,.40) 60%,
      rgba(255,255,255,0) 100%
    ),
    url("assets/bgrodrigotreinamento.png")
    center center / cover no-repeat;
}



.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(32px, 6vw, 70px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-600);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
  opacity: 0.7;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.fleet-copy h2,
.faq-copy h2,
.cta-card h2 {
  color: var(--blue-900);
  line-height: 1.08;
  margin: 14px 0 16px;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 5.35rem);
  max-width: 820px;
}

.hero p {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  color: var(--gray-700);
  max-width: 660px;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-list span,
.about-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-800);
  box-shadow: inset 0 0 0 1px rgba(13, 59, 102, 0.12);
  font-weight: 700;
  font-size: 0.86rem;
}

.hero-card {
  position: relative;
  isolation: isolate;
}

.hero-photo {
  position: relative;
  border-radius: 50px 0 50px 50px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 540px;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 48%, rgba(6, 35, 74, 0.72));
}

.hero-photo img {
  height: 540px;
  object-fit: cover;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -28px -28px auto auto;
  width: 70%;
  height: 70%;
  z-index: -1;
  border-top: 16px solid var(--green-600);
  border-right: 16px solid var(--green-600);
  border-radius: 0 70px 0 0;
}

.floating-card {
  position: absolute;
  right: -10px;
  bottom: 21rem;
  width: 15rem;
  padding: 2px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  display: grid;
  gap: 2px;
  color: var(--blue-900);
}

.floating-card strong {
  color: var(--green-600);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.84rem;
}

.floating-card span {
  font-size: 1.05rem;
  font-weight: 800;
  padding-left: 18px;
  position: relative;
}

.floating-card span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  position: absolute;
  left: 0;
  top: 11px;
}

.value-strip {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
  color: var(--white);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.value-grid article {
  padding: 34px 28px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.value-grid article:first-child {
  border-left: 0;
}

.icon {
  display: block;
  color: var(--green-400);
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 12px;
}

.value-grid h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 8px;
}

.value-grid p {
  margin: 0;
  opacity: 0.85;
  font-size: 0.92rem;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.section-heading h2,
.about-copy h2,
.fleet-copy h2,
.faq-copy h2,
.cta-card h2 {
  font-size: clamp(2rem, 3.4vw, 3.3rem);
}

.section-heading p,
.about-copy p,
.fleet-copy p,
.faq-copy p,
.cta-card p {
  color: var(--gray-700);
  margin: 0;
}

.cards.two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.service-card,
.diff-card,
.step,
.testimonial,
.accordion-item {
  background: var(--white);
  border: 1px solid rgba(13, 59, 102, 0.12);
  box-shadow: var(--shadow-soft);
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 3vw, 42px);
  border-radius: var(--radius-lg);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -8% -38% 38%;
  height: 75%;
  background: url("assets/frota-traseira-lateral.jpeg") center/cover no-repeat;
  opacity: 0.06;
  filter: grayscale(1);
}

.service-card.highlight {
  border-top: 8px solid var(--green-500);
}

.card-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-500));
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.highlight .card-icon {
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
}

.service-card h3 {
  color: var(--blue-900);
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  line-height: 1.12;
  margin: 0 0 12px;
}

.service-card p {
  color: var(--gray-700);
  margin: 0 0 18px;
}

.service-card ul,
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
}

.service-card li,
.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 600;
}

.service-card li::before,
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-500);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
}

.text-link {
  color: var(--blue-800);
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.text-link::after {
  content: "→";
  color: var(--green-600);
}

.fleet {
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,.92) 0%,
      rgba(255,255,255,.85) 35%,
      rgba(255,255,255,.40) 60%,
      rgba(255,255,255,0) 100%
    ),
    url("assets/bgrodrigotreinamento2.png")
    center center / cover no-repeat;
}

.fleet-layout,
.about-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.fleet-copy,
.about-copy,
.faq-copy {
  max-width: 540px;
  
}


.fleet-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fleet-gallery img {
  height: 245px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.fleet-gallery img:first-child {
  grid-row: span 2;
  height: 506px;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.diff-card {
  border-radius: 22px;
  padding: 24px 18px;
  text-align: center;
}

.diff-card span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 18px;
  background: #eff8f0;
  color: var(--green-600);
  font-weight: 900;
}

.diff-card h3 {
  color: var(--blue-900);
  font-size: 0.95rem;
  text-transform: uppercase;
  margin: 0 0 8px;
  line-height: 1.25;
}

.diff-card p {
  margin: 0;
  color: var(--gray-700);
  font-size: 0.86rem;
}

.about {
 background:
    linear-gradient(
      90deg,
      rgba(255,255,255,.92) 0%,
      rgba(255,255,255,.85) 35%,
      rgba(255,255,255,.40) 60%,
      rgba(255,255,255,0) 100%
    ),
    url("assets/bgrodrigotreinamento3.png")
    center center / cover no-repeat;
}

.about-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.about-image img {
  height: 520px;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}

.step {
  position: relative;
  border-radius: 24px;
  padding: 30px 22px;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 48px;
  right: -18px;
  width: 18px;
  height: 2px;
  background: var(--green-500);
}

.step-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-800);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 18px;
}

.step h3 {
  color: var(--blue-900);
  margin: 0 0 8px;
}

.step p {
  margin: 0;
  color: var(--gray-700);
}

.testimonials {
  background: var(--gray-100);
}

.testimonial-slider {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.testimonial-track {
  overflow: hidden;
}

.testimonial {
  display: none;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 48px);
  text-align: center;
}

.testimonial.active {
  display: block;
  animation: fade 0.35s ease both;
}

.stars {
  color: #f3b51a;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  font-size: 1.2rem;
}

.testimonial p {
  color: var(--blue-900);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 700;
  margin: 0 auto 22px;
}

.testimonial strong {
  display: block;
  color: var(--blue-900);
}

.testimonial span {
  color: var(--gray-700);
  font-size: 0.9rem;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--blue-800);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.slider-btn.prev {
  left: -22px;
}
.slider-btn.next {
  right: -22px;
}

.faq-grid {
  align-items: start;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  border-radius: 18px;
  overflow: hidden;
}

.accordion-item button {
  width: 100%;
  min-height: 62px;
  padding: 0 54px 0 22px;
  text-align: left;
  background: var(--white);
  color: var(--blue-900);
  border: 0;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  position: relative;
}

.accordion-item button::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green-600);
  font-size: 1.4rem;
}

.accordion-item button[aria-expanded="true"]::after {
  content: "−";
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.24s ease;
}

.accordion-content p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--gray-700);
}

.final-cta {
  padding: 42px 0 72px;
  background:
    linear-gradient(135deg, rgba(6, 35, 74, 0.98), rgba(13, 59, 102, 0.94)),
    url("assets/frota-frontal-lateral.jpeg") center/cover no-repeat;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  border-radius: 34px;
  padding: clamp(30px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.cta-card h2,
.cta-card p {
  color: var(--white);
}

.cta-card .eyebrow {
  color: var(--green-400);
}

.btn-large {
  min-height: 62px;
  padding-inline: 32px;
  font-size: 1rem;
}

.site-footer {
  background: var(--blue-900);
  color: var(--white);
  padding: 38px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 28px;
}

.footer-brand .brand-text strong,
.footer-brand .brand-text small {
  color: var(--white);
}

.site-footer p {
  opacity: 0.78;
  max-width: 420px;
}

.site-footer div:not(:first-child) {
  display: grid;
  gap: 10px;
  align-content: start;
}

.site-footer strong {
  color: var(--green-400);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.site-footer a,
.site-footer span {
  opacity: 0.82;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #22b948;
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(34, 185, 72, 0.3);
}

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

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

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .header-cta {
    display: none;
  }
  .hero-grid,
  .fleet-layout,
  .about-grid,
  .faq-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: unset;
    
  }
  .hero-photo,
  .hero-photo img {
    height: 460px;
    min-height: unset;
  }
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .value-grid article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }
  .value-grid article:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }
  .diff-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .step::after {
    display: none;
  }
  .cta-card .btn {
    justify-self: start;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
    order: 3;
  }

  .menu {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 18px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

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

  .menu a {
    padding: 12px;
    border-radius: 12px;
  }

  .menu a:hover,
  .menu a:focus-visible {
    background: var(--gray-100);
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .cards.two-columns,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-card::before {
    inset: -16px -16px auto auto;
  }
  .floating-card {
    left: 14rem;
    bottom: 15rem;
    right: 10 px;
    width: 10rem;
  }
  .fleet-gallery {
    grid-template-columns: 1fr;
  }
  .fleet-gallery img,
  .fleet-gallery img:first-child {
    height: 310px;
    grid-row: auto;
  }
  .about-image img {
    height: 380px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }
  .nav {
    min-height: 68px;
  }
  .brand-mark {
    width: 15rem;
    
    border-width: 4px;
  }
  .brand-text strong {
    font-size: 1rem;
  }
  .brand-text small {
    font-size: 0.62rem;
  }
  .menu {
    top: 68px;
  }
  .hero {
    padding: 48px 0 0;
     background:
      linear-gradient(
        180deg,
        rgba(255,255,255,.95) 0%,
        
        rgba(255,255,255,.75) 50%
      ),
      url("./assets/bgrodrigotreinamento.png")
      center center / cover no-repeat;
  
  }
  .hero h1 {
    font-size: clamp(2.1rem, 12vw, 3.1rem);
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-photo,
  .hero-photo img {
    height: 360px;
  }
  .hero-photo {
    border-radius: 28px;
  }
  .value-grid,
  .diff-grid,
  .steps {
    grid-template-columns: 1fr;
  }
  .value-grid article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }
  .value-grid article:first-child {
    border-top: 0;
  }
  .section {
    padding: 56px 0;
  }
  .section-heading {
    margin-bottom: 28px;
  }
  .section-heading h2,
  .about-copy h2,
  .fleet-copy h2,
  .faq-copy h2,
  .cta-card h2 {
    font-size: 2rem;
  }
  .service-card {
    border-radius: 22px;
  }
  .slider-btn {
    position: static;
    transform: none;
    margin: 18px 6px 0;
  }
  .testimonial-slider {
    text-align: center;
  }
  .cta-card {
    padding: 28px 20px;
    border-radius: 24px;
  }
  .btn-large {
    width: 100%;
  }
  .floating-whatsapp {
    right: 14px;
    left: 14px;
    bottom: 14px;
  }
  .site-footer {
    padding-bottom: 82px;
  }
}

@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;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
