/* =========================================================
   LP TransCruz — Locação de linha amarela
   Padrão Oduo · Tema Navy + Dourado · Space Grotesk + Inter
   Variantes: Hero D-adapt · Stats 3 · Sobre A-evol · Produtos 1 · Diferenciais D
   ========================================================= */

:root {
  --primary: #1a3a52;          /* navy */
  --primary-dark: #112a3d;     /* navy hover */
  --primary-light: #e8eef3;    /* navy tint (pills, soft bg) */
  --accent: #ff8c00;           /* dourado/linha-amarela */
  --accent-dark: #e07b00;
  --accent-soft: #fff1dd;
  --on-accent: #11212e;        /* texto escuro sobre dourado */
  --secondary: #0f2231;        /* navy profundo (footer/cta) */
  --text: #2b2b2b;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f4f6f9;
  --bg-dark: #0f2231;
  --border: #e5e8ec;
  --success: #25d366;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 6px rgba(15,34,49,.06);
  --shadow-md: 0 8px 24px rgba(15,34,49,.10);
  --shadow-lg: 0 18px 44px rgba(15,34,49,.16);
  --header-h: 80px;
  --container: 1200px;
  --transition: .25s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Space Grotesk', 'Inter', sans-serif; line-height: 1.15; color: var(--primary); letter-spacing: -.01em; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 9px; padding: 13px 24px; border-radius: var(--radius);
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 600; font-size: 15px; letter-spacing: .01em;
  transition: var(--transition); cursor: pointer;
  border: 2px solid transparent; white-space: nowrap;
}
.btn--accent  { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.btn--accent:hover  { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 12px 26px -8px rgba(255,140,0,.55); }
.btn--primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn--primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost   { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: #fff; color: var(--primary); border-color: #fff; transform: translateY(-2px); }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--block { width: 100%; }

/* brilho passando (M3) */
.btn--shine { position: relative; overflow: hidden; }
.btn--shine::after {
  content: ''; position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-18deg); transition: left .6s ease;
}
.btn--shine:hover::after { left: 140%; }

/* ---------- Logo wordmark ---------- */
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo__mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--primary); color: #fff;
  display: grid; place-items: center; position: relative; flex-shrink: 0;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 21px;
  box-shadow: inset 0 -6px 0 rgba(0,0,0,.18);
}
.logo__mark::after {
  content: ''; position: absolute; left: 6px; right: 6px; bottom: 7px;
  height: 4px; border-radius: 2px; background: var(--accent);
}
.logo__text { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 22px; letter-spacing: -.02em; color: var(--primary); line-height: 1; }
.logo__text b { color: var(--accent); font-weight: 700; }
/* logo em imagem */
.logo__img { height: 86px; width: 128px; display: block; }
.footer__logo { height: 86pxx; width: 128px; margin-bottom: 18px; }
/* variante clara (footer escuro) */
.logo--light .logo__text { color: #fff; }
.logo--light .logo__mark { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; height: var(--header-h);
  background: rgba(255,255,255,.94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  z-index: 100; border-bottom: 1px solid transparent; transition: var(--transition);
}
.header.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 24px; }
.header__cta { flex-shrink: 0; }

/* ---------- Navigation ---------- */
.nav__list { display: flex; gap: 28px; }
.nav__link { font-weight: 500; font-size: 15px; color: var(--primary); position: relative; padding: 6px 0; }
.nav__link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--accent); transition: var(--transition); }
.nav__link:hover { color: var(--accent-dark); }
.nav__link:hover::after { width: 100%; }
.nav__toggle, .nav__close { display: none; font-size: 24px; color: var(--primary); }

/* ---------- Scroll progress (M2) ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  z-index: 1000; transition: width .1s linear;
}

/* ---------- Hero (D-adapt: split navy + máquina emoldurada) ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 600px at 85% -10%, rgba(255,140,0,.16), transparent 60%),
    linear-gradient(135deg, #0f2231 0%, #1a3a52 55%, #0f2231 100%);
  padding: calc(var(--header-h) + 64px) 0 90px;
  color: #fff;
}
/* malha sutil de pontos */
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 26px 26px;
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; background: rgba(255,140,0,.12);
  border: 1px solid rgba(255,140,0,.4); border-radius: 50px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: #ffd9a6; margin-bottom: 26px;
}
.hero__eyebrow i { color: var(--accent); }
.hero__title {
  font-size: clamp(2.6rem, 6.4vw, 5.6rem);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: -.03em; line-height: .94; color: #fff; margin-bottom: 22px;
}
.hero__title span { display: block; }
.hero__desc { font-size: clamp(1rem, 1.3vw, 1.18rem); color: rgba(255,255,255,.82); max-width: 540px; margin-bottom: 30px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 26px; }
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,.72); }
.hero__trust i { color: var(--accent); font-size: 13px; }

/* máquina emoldurada */
.hero__media { position: relative; justify-self: center; }
.hero__frame {
  position: relative; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.7);
  transform: rotate(-1.5deg);
}
.hero__frame img { width: 100%; max-width: 420px; height: 480px; object-fit: cover; object-position: center; display: block; }
.hero__media::before {
  content: ''; position: absolute; inset: -14px -14px auto auto;
  width: 120px; height: 120px; border-top: 4px solid var(--accent); border-right: 4px solid var(--accent);
  border-top-right-radius: 22px; z-index: 2;
}
.hero__media::after {
  content: ''; position: absolute; inset: auto auto -14px -14px;
  width: 120px; height: 120px; border-bottom: 4px solid var(--accent); border-left: 4px solid var(--accent);
  border-bottom-left-radius: 22px; z-index: 2;
}
.hero__tag {
  position: absolute; bottom: 22px; left: -18px; z-index: 3;
  background: var(--accent); color: var(--on-accent);
  padding: 12px 18px; border-radius: 12px; box-shadow: var(--shadow-lg);
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; transform: rotate(-1.5deg);
}
.hero__tag small { display: block; font-weight: 500; font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; opacity: .8; }

/* ---------- Stats 3 (counters XL sobre navy) ---------- */
.stats { background: var(--bg-dark); border-top: 3px solid var(--accent); padding: 56px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stats__item { text-align: center; position: relative; }
.stats__item:not(:last-child)::after {
  content: ''; position: absolute; right: -12px; top: 14%; height: 72%; width: 1px; background: rgba(255,255,255,.1);
}
.stats__num { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 700; color: var(--accent); line-height: 1; letter-spacing: -.02em; }
.stats__label { display: block; margin-top: 10px; font-size: 14px; color: rgba(255,255,255,.72); text-transform: uppercase; letter-spacing: .08em; }

/* ---------- Section helpers ---------- */
section { padding: 96px 0; }
.section__head { margin-bottom: 54px; }
.section__head--center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.section__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent-dark); margin-bottom: 14px;
}
.section__eyebrow::before {
  content: ''; width: 26px; height: 3px; border-radius: 2px;
  background-image: linear-gradient(90deg, var(--accent) 0 8px, transparent 8px 13px);
  background-size: 13px 3px;  /* tracejado tipo marcação de pista */
}
.section__head--center .section__eyebrow { justify-content: center; }
.section__title { font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 700; margin-bottom: 16px; }
.section__desc { font-size: 17px; color: var(--text-muted); }

/* ---------- Sobre (A-evoluído) ---------- */
.about__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.about__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about__media img { width: 100%; height: 540px; object-fit: cover; }
.about__badge {
  position: absolute; bottom: 22px; left: 22px;
  background: var(--accent); color: var(--on-accent); padding: 16px 22px;
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; align-items: center; min-width: 130px;
}
.about__badge-num { font-family: 'Space Grotesk', sans-serif; font-size: 40px; font-weight: 700; line-height: 1; }
.about__badge-text { font-size: 12.5px; text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; font-weight: 600; }
.about__text p { margin-bottom: 16px; color: var(--text); }
.about__pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 30px 0 34px; }
.about__pillar { position: relative; padding-top: 6px; }
.about__pillar-num { font-family: 'Space Grotesk', sans-serif; font-size: 30px; font-weight: 700; color: var(--accent); line-height: 1; }
.about__pillar h4 { font-size: 16px; margin: 8px 0 4px; color: var(--primary); }
.about__pillar p { font-size: 13.5px; color: var(--text-muted); margin: 0; }

/* ---------- Produtos (grid de frota) ---------- */
.products { background: var(--bg-alt); }
.products__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); display: flex; flex-direction: column; border-top: 3px solid transparent; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px -14px rgba(255,140,0,.32), var(--shadow-md); border-top-color: var(--accent); }
.product-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #11212e; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-card__media img { transform: scale(1.06); }
.product-card__tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(15,34,49,.85); color: #fff; backdrop-filter: blur(4px);
  font-size: 11.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 50px;
}
.product-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.product-card__body h3 { font-size: 21px; margin-bottom: 8px; }
.product-card__body p { color: var(--text-muted); margin-bottom: 18px; flex: 1; font-size: 14.5px; }

.product-card--cta { background: linear-gradient(150deg, #1a3a52, #0f2231); color: #fff; min-height: 340px; border-top: none; }
.product-card--cta:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-top: none; }
.product-card__body--cta { text-align: center; padding: 46px 28px; align-items: center; justify-content: center; gap: 12px; }
.product-card__body--cta i { font-size: 42px; color: var(--accent); margin-bottom: 4px; }
.product-card__body--cta h3 { color: #fff; }
.product-card__body--cta p { color: rgba(255,255,255,.75); }

/* ---------- Diferenciais (D: hover-reveal) ---------- */
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature {
  position: relative; overflow: hidden; padding: 34px 30px;
  border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 4px; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark)); transition: width .45s ease;
}
.feature:hover { transform: translateY(-6px); border-color: transparent; box-shadow: var(--shadow-md); }
.feature:hover::after { width: 100%; }
.feature__icon {
  width: 58px; height: 58px; background: var(--primary-light); color: var(--primary);
  border-radius: var(--radius); display: grid; place-items: center;
  font-size: 25px; margin-bottom: 18px; transition: var(--transition);
}
.feature:hover .feature__icon { background: var(--accent); color: var(--on-accent); transform: rotate(-6deg); }
.feature h3 { font-size: 19px; margin-bottom: 6px; }
.feature__desc {
  font-size: 14.5px; color: var(--text-muted);
  max-height: 0; opacity: 0; transform: translateY(6px); overflow: hidden;
  transition: max-height .45s ease, opacity .35s ease, transform .45s ease;
}
.feature:hover .feature__desc { max-height: 220px; opacity: 1; transform: none; }

/* ---------- CTA Banner ---------- */
.cta-banner { position: relative; padding: 104px 0; overflow: hidden; text-align: center; }
.cta-banner__bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; z-index: -2; }
.cta-banner__overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(15,34,49,.95) 0%, rgba(26,58,82,.86) 55%, rgba(255,140,0,.5) 130%); z-index: -1; }
.cta-banner__content { color: #fff; max-width: 720px; margin: 0 auto; }
.cta-banner__content h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 16px; }
.cta-banner__content p { font-size: 17px; margin-bottom: 32px; color: rgba(255,255,255,.9); }

/* ---------- Contato ---------- */
.contact__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.contact__card { padding: 36px 26px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); text-align: center; transition: var(--transition); display: flex; flex-direction: column; align-items: center; }
.contact__card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: var(--shadow-md); }
.contact__icon {
  width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center;
  font-size: 26px; color: var(--primary); background: var(--primary-light); margin-bottom: 18px; transition: var(--transition);
}
.contact__card:hover .contact__icon { background: var(--accent); color: var(--on-accent); }
.contact__card h3 { font-size: 18px; margin-bottom: 8px; }
.contact__card p { color: var(--text); margin-bottom: 18px; font-size: 14.5px; word-break: break-word; }
.contact__link { margin-top: auto; font-weight: 600; color: var(--accent-dark); display: inline-flex; align-items: center; gap: 6px; font-size: 14px; }
.contact__card:hover .contact__link i { transform: translateX(4px); }
.contact__link i { transition: var(--transition); }

/* ---------- Footer ---------- */
.footer { background: var(--bg-dark); color: rgba(255,255,255,.66); padding-top: 70px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 50px; }
.footer__brand .logo { margin-bottom: 18px; }
.footer__brand p { font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer__social { display: flex; gap: 12px; margin-top: 18px; }
.footer__social a { width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,.07); display: grid; place-items: center; font-size: 16px; color: #fff; }
.footer__social a:hover { background: var(--accent); color: var(--on-accent); }
.footer h4 { color: #fff; font-size: 15px; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .08em; }
.footer__links li, .footer__contact li { margin-bottom: 11px; font-size: 14px; }
.footer__links a:hover, .footer__contact a:hover { color: var(--accent); }
.footer__contact li { display: flex; align-items: flex-start; gap: 10px; }
.footer__contact i { color: var(--accent); margin-top: 5px; flex-shrink: 0; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; }

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px;
  background: var(--success); color: #fff; border-radius: 50%;
  display: grid; place-items: center; font-size: 30px;
  box-shadow: 0 10px 30px rgba(37,211,102,.4); z-index: 99; animation: pulse 2.4s infinite;
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }
@keyframes pulse {
  0%   { box-shadow: 0 10px 30px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 10px 30px rgba(37,211,102,.4), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 30px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; bottom: 96px; right: 28px; width: 44px; height: 44px;
  background: var(--primary); color: #fff; border-radius: 50%;
  display: grid; place-items: center; font-size: 16px;
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: var(--transition); z-index: 98;
}
.to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--accent); color: var(--on-accent); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__media { order: -1; }
  .hero__frame img { height: 380px; max-width: 360px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .stats__item:nth-child(2)::after { display: none; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about__media img { height: 440px; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav__toggle { display: inline-flex; }

  .nav {
    position: fixed; top: 0; right: -100%; width: 280px; max-width: 85vw;
    height: 100vh; background: #fff; padding: 80px 30px 30px;
    box-shadow: -10px 0 30px rgba(0,0,0,.1); transition: right .3s ease; z-index: 200;
  }
  .nav.open { right: 0; }
  .nav__list { flex-direction: column; gap: 20px; }
  .nav__link { font-size: 18px; display: block; }
  .nav__close { display: block; position: absolute; top: 20px; right: 24px; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); opacity: 0; visibility: hidden; transition: var(--transition); z-index: 150; }
  .nav-overlay.active { opacity: 1; visibility: visible; }

  .stats__item::after { display: none !important; }

  /* Sobre: texto antes da imagem no mobile */
  .about__grid { grid-template-columns: 1fr; gap: 36px; }
  .about__media { order: 2; }
  .about__text { order: 1; }
  .about__media img { height: 340px; }
  .about__pillars { gap: 18px; }

  /* Diferenciais: descrição sempre visível sem hover */
  .feature__desc { max-height: 220px; opacity: 1; transform: none; margin-top: 4px; }
  .feature::after { width: 100%; height: 3px; }

  .cta-banner__bg { background-attachment: scroll; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .hero__frame img { height: 320px; }
  .stats__grid { grid-template-columns: 1fr; gap: 30px; }
  .products__grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .about__pillars { grid-template-columns: 1fr; }

  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .header__cta { padding: 9px 15px; font-size: 13px; }

  .whatsapp-float { width: 54px; height: 54px; font-size: 26px; bottom: 18px; right: 18px; }
  .to-top { bottom: 84px; right: 22px; width: 40px; height: 40px; }
}

/* dispositivos sem hover: revela descrição dos diferenciais */
@media (hover: none) {
  .feature__desc { max-height: 220px; opacity: 1; transform: none; margin-top: 4px; }
  .feature::after { width: 100%; height: 3px; }
}

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