/* =========================================================
   LOCAR EQUIPAMENTOS — Landing Page
   Paleta: laranja #ca651d + cinzas
   ========================================================= */

:root {
  --primary: #ca651d;
  --primary-dark: #a04f15;
  --primary-light: #f3d9c5;
  --secondary: #1a1a1a;
  --text: #2b2b2b;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f7f5f2;
  --bg-dark: #161616;
  --border: #e5e5e5;
  --success: #25d366;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 6px rgba(0,0,0,.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 16px 40px rgba(0,0,0,.12);
  --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.6;
  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: 'Poppins', 'Inter', sans-serif; line-height: 1.2; color: var(--secondary); }
button { font: inherit; cursor: pointer; border: none; background: none; }

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

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.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--outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn--outline:hover {
  background: #fff;
  color: var(--secondary);
  transform: translateY(-2px);
}
.btn--lg {
  padding: 16px 32px;
  font-size: 16px;
}
.btn--block {
  width: 100%;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,.96);
  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__logo img {
  height: 48px;
  width: auto;
}
.header__cta {
  flex-shrink: 0;
}

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

.nav__toggle, .nav__close {
  display: none;
  font-size: 24px;
  color: var(--secondary);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 60px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.26) 55%, rgba(202,101,29,.3) 100%);
  z-index: -1;
}
.hero__content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.hero__title,
.hero__desc {
  text-shadow: 0 2px 16px rgba(0,0,0,.6);
}
.hero__eyebrow {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(202,101,29,.2);
  border: 1px solid var(--primary);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #fff;
}
.hero__title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero__desc {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  margin: 0 auto 36px;
  color: rgba(255,255,255,.9);
  max-width: 620px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- Stats ---------- */
.stats {
  background: var(--bg-alt);
  padding: 50px 0;
  border-bottom: 1px solid var(--border);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.stats__item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.stats__icon {
  font-size: 32px;
  color: var(--primary);
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.stats__item h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 2px;
}
.stats__item p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ---------- Section helpers ---------- */
section { padding: 90px 0; }
.section__head {
  margin-bottom: 50px;
}
.section__head--center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section__title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -.5px;
}
.section__desc {
  font-size: 17px;
  color: var(--text-muted);
}

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  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: 520px;
  object-fit: cover;
}
.about__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--primary);
  color: #fff;
  padding: 18px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 140px;
}
.about__badge-num {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}
.about__badge-text {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.about__text p {
  margin-bottom: 16px;
  color: var(--text);
}
.about__list {
  margin: 24px 0 32px;
  display: grid;
  gap: 12px;
}
.about__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.about__list i {
  width: 28px;
  height: 28px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* ---------- Products ---------- */
.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;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .4s ease;
}
.product-card:hover .product-card__media img {
  transform: scale(1.04);
}
.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: 15px;
}

/* Card CTA (último card destaque) */
.product-card--cta {
  background: var(--secondary);
  color: #fff;
  min-height: 340px;
}
.product-card--cta:hover { transform: translateY(-6px); }
.product-card__body--cta {
  text-align: center;
  padding: 48px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 12px;
}
.product-card__body--cta i {
  font-size: 44px;
  color: var(--primary);
  margin-bottom: 4px;
}
.product-card__body--cta h3 { color: #fff; }
.product-card__body--cta p { color: rgba(255,255,255,.75); }

/* ---------- Features ---------- */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: var(--transition);
}
.feature:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature__icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
  transition: var(--transition);
}
.feature:hover .feature__icon {
  background: var(--primary);
  color: #fff;
}
.feature h3 {
  font-size: 19px;
  margin-bottom: 10px;
}
.feature p {
  font-size: 15px;
  color: var(--text-muted);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  position: relative;
  padding: 100px 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(135deg, rgba(22,22,22,.92) 0%, rgba(202,101,29,.85) 100%);
  z-index: -1;
}
.cta-banner__content {
  color: #fff;
  max-width: 720px;
}
.cta-banner__content h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  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 28px;
  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(--primary);
  box-shadow: var(--shadow-md);
}
.contact__icon {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 18px;
}
.contact__card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}
.contact__card p {
  color: var(--text);
  margin-bottom: 18px;
  font-size: 15px;
}
.contact__link {
  margin-top: auto;
  font-weight: 600;
  color: var(--primary);
  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,.7);
  padding-top: 70px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer__brand img {
  height: 56px;
  margin-bottom: 18px;
  filter: brightness(1.1);
}
.footer__brand p {
  font-size: 14px;
  line-height: 1.7;
}
.footer h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer__links li,
.footer__contact li {
  margin-bottom: 10px;
  font-size: 14px;
}
.footer__links a:hover,
.footer__contact a:hover {
  color: var(--primary);
}
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer__contact i {
  color: var(--primary);
  margin-top: 4px;
  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;
}
.footer__bottom a { color: var(--primary); }

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--success);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 30px rgba(37,211,102,.4);
  z-index: 99;
  animation: pulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  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(--secondary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: 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(--primary);
}

/* ---------- Animações de entrada ---------- */
.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) {
  .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__grid { gap: 40px; }
  .about__media img { height: 420px; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }

  /* Header mobile */
  .nav__toggle { display: inline-flex; }
  .header__cta span,
  .header__cta { padding: 10px 16px; font-size: 14px; }

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

  /* Hero */
  .hero { min-height: 88vh; }
  .hero__cta .btn { flex: 1; min-width: 0; }

  /* About */
  .about__grid { grid-template-columns: 1fr; }
  .about__media { order: 2; }
  .about__text { order: 1; }
  .about__media img { height: 360px; }

  /* CTA banner */
  .cta-banner__bg { background-attachment: scroll; }

  /* Footer */
  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .products__grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr; }

  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }

  .header__cta {
    padding: 8px 14px;
    font-size: 13px;
  }
  .header__cta i { font-size: 16px; }

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