:root {
  --green-900: #045049;
  --green-800: #1a4c49;
  --green-700: #2b6b61;
  --green-500: #4b9777;
  --orange-700: #9b4b16;
  --orange-500: #e0a748;
  --orange-400: #ff9b21;
  --gold-soft: #f6e4c3;
  --surface: #fffdf8;
  --surface-alt: #f5faf8;
  --white: #ffffff;
  --text-main: #19302c;
  --text-soft: #4e635f;
  --line: rgba(4, 80, 73, 0.12);
  --shadow-sm: 0 12px 26px rgba(4, 80, 73, 0.1);
  --shadow-md: 0 20px 44px rgba(4, 80, 73, 0.14);
  --shadow-lg: 0 28px 60px rgba(4, 80, 73, 0.16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: min(1180px, calc(100% - 2rem));
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top right, rgba(224, 167, 72, 0.18), transparent 24%),
    radial-gradient(circle at top left, rgba(75, 151, 119, 0.18), transparent 28%),
    linear-gradient(180deg, #fefcf7 0%, #ffffff 33%, #f8fbfa 100%);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: absolute;
  top: -48px;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--green-900);
  color: var(--white);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.95rem;
  border: 1px solid rgba(4, 80, 73, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--green-900);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.section-kicker::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-500), var(--orange-500));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-heading h2,
.hero-copy h1,
.about-copy h2,
.data-intro h2,
.contact-copy h2 {
  margin: 0 0 1rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 5.3vw, 4.9rem);
  max-width: 13ch;
}

.section-heading h2,
.about-copy h2,
.data-intro h2,
.contact-copy h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

.mini-kicker {
  margin-bottom: 0.5rem;
  color: var(--green-900);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease,
    border-color 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--green-900), var(--green-500));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(4, 80, 73, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 32px rgba(4, 80, 73, 0.25);
}

.button-secondary {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  color: #23170a;
  box-shadow: 0 14px 28px rgba(224, 167, 72, 0.28);
}

.button-outline {
  border-color: rgba(4, 80, 73, 0.18);
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-900);
}

.button-ghost {
  border-color: rgba(224, 167, 72, 0.35);
  background: rgba(246, 228, 195, 0.6);
  color: var(--orange-700);
}

.button-outline:hover,
.button-outline:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible {
  box-shadow: var(--shadow-sm);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 12px 28px rgba(17, 49, 44, 0.08);
  border-color: rgba(4, 80, 73, 0.08);
  background: rgba(255, 253, 248, 0.94);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-logo {
  width: 84px;
  height: 62px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(4, 80, 73, 0.08);
  background: var(--white);
  padding: 0.18rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-name {
  color: var(--green-900);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
}

.brand-slogan {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}

.site-nav a {
  position: relative;
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.97rem;
}

.site-nav > a::after,
.footer-links > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-500), var(--orange-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.footer-links > a:hover::after,
.footer-links > a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions,
.mobile-actions,
.hero-actions,
.contact-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.mobile-actions {
  display: none;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(4, 80, 73, 0.1);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 0.8rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 0.25rem 0;
  background: var(--green-900);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  height: calc(100vh - var(--header-height));
  padding: 0;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.5;
  pointer-events: none;
}

.hero::before {
  width: 18rem;
  height: 18rem;
  background: rgba(224, 167, 72, 0.18);
  top: 2rem;
  right: -3rem;
}

.hero::after {
  width: 22rem;
  height: 22rem;
  background: rgba(75, 151, 119, 0.16);
  bottom: 0;
  left: -6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text {
  max-width: 60ch;
  font-size: 1.05rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.hero-highlights span {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(4, 80, 73, 0.1);
  box-shadow: var(--shadow-sm);
  color: var(--green-900);
  font-weight: 700;
  font-size: 0.92rem;
}

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

.hero-card,
.info-tile,
.feature-card,
.value-card,
.data-card,
.testimonial-card,
.contact-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(4, 80, 73, 0.08);
  box-shadow: var(--shadow-md);
}

.hero-brand-card {
  display: grid;
  grid-template-columns: minmax(0, 230px) minmax(0, 1fr);
  gap: 1.3rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  align-items: center;
}

.hero-card-image img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  background: var(--white);
}

.hero-card-copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.08;
}

.hero-card-copy p:last-child {
  margin-bottom: 0;
}

.info-tile,
.feature-card,
.value-card,
.data-card,
.testimonial-card {
  border-radius: 24px;
}

.info-tile {
  padding: 1.2rem;
}

.tile-number,
.data-number,
.value-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(75, 151, 119, 0.16), rgba(224, 167, 72, 0.22));
  color: var(--green-900);
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.info-tile h3,
.feature-card h3,
.value-card h3,
.data-card h3,
.contact-card h3 {
  margin: 0 0 0.6rem;
  line-height: 1.18;
}

.info-tile p,
.feature-card p,
.value-card p,
.data-card p,
.testimonial-card p,
.contact-card p {
  margin-bottom: 0;
}

.about {
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.feature-card {
  padding: 1.3rem;
}

.video-card {
  display: grid;
  gap: 1rem;
}

.video-frame {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(4, 80, 73, 0.92), rgba(75, 151, 119, 0.86)),
    linear-gradient(135deg, rgba(255, 155, 33, 0.2), transparent 60%);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.video-frame::before,
.video-frame::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.26;
}

.video-frame::before {
  width: 18rem;
  height: 18rem;
  background: rgba(255, 155, 33, 0.4);
  top: -6rem;
  right: -4rem;
}

.video-frame::after {
  width: 14rem;
  height: 14rem;
  background: rgba(255, 255, 255, 0.2);
  bottom: -4rem;
  left: -3rem;
}

.video-placeholder,
.video-embed {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.video-placeholder {
  min-height: inherit;
  display: grid;
  place-content: center;
  place-items: center;
  padding: 2rem;
  text-align: center;
  color: var(--white);
}

.video-placeholder h3 {
  margin: 1rem 0 0.5rem;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.video-placeholder p {
  max-width: 32ch;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.85);
}

.video-icon {
  display: grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  font-size: 1.6rem;
  padding-left: 0.25rem;
}

.video-frame iframe.video-embed {
  border: 0;
  aspect-ratio: 16 / 9;
  min-height: inherit;
}

.video-caption {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(4, 80, 73, 0.08);
  box-shadow: var(--shadow-sm);
  color: var(--text-soft);
}

.value-proposition {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(245, 250, 248, 0.95));
}

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

.value-card {
  padding: 1.4rem;
}

.data-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.data-intro {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}

.data-quote {
  margin-top: 1.6rem;
  padding: 1.4rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(4, 80, 73, 0.98), rgba(75, 151, 119, 0.92));
  box-shadow: var(--shadow-lg);
}

.data-quote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.06rem;
}

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

.data-card {
  padding: 1.4rem;
}

.testimonials {
  background: linear-gradient(180deg, rgba(245, 250, 248, 0.2), rgba(255, 255, 255, 0.95));
}

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

.testimonial-card {
  padding: 1.5rem;
  height: 100%;
}

.testimonial-rating {
  margin-bottom: 0.9rem;
  color: var(--orange-500);
  letter-spacing: 0.12em;
  font-size: 1rem;
}

.testimonial-author {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testimonial-author strong {
  font-size: 1rem;
}

.testimonial-author span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.contact-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 1rem;
}

.contact-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(4, 80, 73, 0.08);
}

.contact-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-list span {
  color: var(--text-main);
  font-weight: 700;
}

.contact-link {
  color: var(--green-900);
  text-align: right;
  font-weight: 700;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--orange-700);
}

.site-footer {
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
  color: rgba(255, 255, 255, 0.92);
}

.footer-inner,
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 2rem;
}

.footer-inner {
  padding: 2rem 0;
}

.footer-inner h2 {
  margin: 0 0 0.35rem;
  font-size: 1.4rem;
}

.footer-inner p,
.footer-bottom span,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem 1.2rem;
}

.footer-links a,
.footer-bottom a {
  position: relative;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
  padding: 1rem 0 1.3rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #1ba15d, #0b6d45);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(11, 109, 69, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 38px rgba(11, 109, 69, 0.34);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Carousel Styles */
.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-inner {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.5s ease;
}

.carousel-slide {
  width: 33.333%;
  height: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-note {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  max-width: 34rem;
  padding: 1.5rem 1.75rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 40px rgba(17, 49, 44, 0.12);
  color: var(--text-main);
  opacity: 0;
  transform: translateY(24px);
  animation: slideNoteIn 0.8s ease forwards;
}

.carousel-slide.active .carousel-note {
  opacity: 1;
  transform: translateY(0);
}

.carousel-note h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.08;
}

.carousel-note p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

@keyframes slideNoteIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(4, 80, 73, 0.1);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--green-900);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-md);
}

.carousel-prev {
  left: 1rem;
}

.carousel-next {
  right: 1rem;
}

.carousel-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(4, 80, 73, 0.2);
  cursor: pointer;
  transition: background 0.25s ease;
}

.indicator.active {
  background: var(--green-500);
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .desktop-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    width: var(--container);
    max-width: calc(100% - 2rem);
    padding: 1.25rem;
    border-radius: 26px;
    background: rgba(255, 253, 248, 0.98);
    border: 1px solid rgba(4, 80, 73, 0.12);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .site-nav > a {
    padding: 0.7rem 0.2rem;
    border-bottom: 1px solid rgba(4, 80, 73, 0.08);
  }

  .site-nav > a::after {
    display: none;
  }

  .mobile-actions {
    display: flex;
    margin-top: 0.4rem;
  }

  .hero-grid,
  .about-grid,
  .data-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .data-intro {
    position: static;
  }
}

@media (max-width: 860px) {
  .about-points,
  .data-grid,
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-brand-card {
    grid-template-columns: 1fr;
  }

  .footer-inner,
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .contact-list li {
    flex-direction: column;
  }

  .contact-link {
    text-align: left;
  }
}

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

  .section {
    padding: 4rem 0;
  }

  .brand {
    gap: 0.7rem;
  }

  .brand-logo {
    width: 66px;
    height: 48px;
    border-radius: 14px;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .brand-slogan {
    font-size: 0.8rem;
  }

  .hero-copy h1 {
    max-width: 11.5ch;
  }

  .carousel-prev,
  .carousel-next {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }

  .carousel-indicators {
    bottom: 1rem;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }

  .hero-actions,
  .contact-actions,
  .mobile-actions,
  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .about-points,
  .value-grid,
  .data-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .video-frame {
    min-height: 280px;
  }

  .floating-whatsapp {
    right: 0.8rem;
    bottom: 0.8rem;
    padding: 0.85rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

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