/* =========================================================
   Roda Guincho — Modern Redesign
   Design tokens, fluid typography, glassmorphism, micro-interactions
   ========================================================= */

:root {
  --bg: #f7f6f2;
  --bg-soft: #efece4;
  --surface: #ffffff;
  --ink: #0b0b0c;
  --ink-2: #1a1a1d;
  --muted: #6b6b73;
  --line: rgba(11, 11, 12, 0.08);
  --line-strong: rgba(11, 11, 12, 0.14);

  --red: #e6262d;
  --red-2: #ff5a47;
  --red-grad: linear-gradient(135deg, #ff5a47 0%, #e6262d 50%, #b8141f 100%);

  --green: #22c55e;
  --green-2: #16a34a;
  --green-grad: linear-gradient(135deg, #25d366 0%, #128c7e 100%);

  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(11,11,12,0.06), 0 1px 3px rgba(11,11,12,0.04);
  --shadow-md: 0 6px 20px -4px rgba(11,11,12,0.10), 0 4px 8px -2px rgba(11,11,12,0.06);
  --shadow-lg: 0 24px 48px -12px rgba(11,11,12,0.18), 0 8px 16px -4px rgba(11,11,12,0.08);
  --shadow-red: 0 14px 32px -10px rgba(230,38,45,0.55);
  --shadow-green: 0 14px 32px -10px rgba(34,197,94,0.55);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container { width: min(1240px, 92%); margin: 0 auto; }

/* ---------- TOPBAR ---------- */
.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 13px;
}
.topbar-inner {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 0;
  font-weight: 500;
}
.topbar-inner span:nth-child(2) { flex: 1; opacity: .85; }
.topbar-link {
  color: #fff;
  font-weight: 700;
  letter-spacing: .02em;
  transition: color .2s var(--ease);
}
.topbar-link:hover { color: var(--red-2); }

.pulse-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e;
  position: relative;
  flex-shrink: 0;
}
.pulse-dot.small { width: 10px; height: 10px; }
.pulse-dot::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: #22c55e;
  opacity: .4;
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0% { transform: scale(.6); opacity: .5; }
  100% { transform: scale(1.6); opacity: 0; }
}


/* ---------- HEADER ---------- */
.site-header {
  /* position: sticky; top: 0; z-index: 50;  Assim melhora a navegacao pelo usuario */
  position: static; /* o menu ficara fixo*/
  background: rgba(247, 246, 242, 0.78);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; gap: 28px;
  padding: 16px 0;
}

.logo { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.logo-icon { width: 42px; height: 42px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .04em;
}
.logo-text em { font-style: normal; font-size: 11px; color: var(--muted); letter-spacing: .15em; text-transform: uppercase; }
.accent { color: var(--red); }

.main-nav {
  display: flex; gap: 4px; margin-left: auto;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--line);
  padding: 5px;
  border-radius: 999px;
}
.main-nav a {
  font-size: 13.5px;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--ink-2);
  transition: all .25s var(--ease);
  position: relative;
}
.main-nav a:hover { background: rgba(11,11,12,0.05); }
.main-nav a.active {
  background: var(--ink);
  color: #fff;
}

.header-cta {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 16px 6px 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: all .3s var(--ease);
  box-shadow: var(--shadow-sm);
}
.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.wa-circle {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--green-grad);
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px -2px rgba(34,197,94,0.5);
}
.wa-circle.small { width: 30px; height: 30px; }
.phone-text { display: flex; flex-direction: column; line-height: 1.1; }
.phone-text strong { font-size: 14px; font-weight: 700; }
.phone-text em { font-style: normal; font-size: 11px; color: var(--muted); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 34px 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
 /*  background-image:url('images/hero-trucks.jpg');
  background-size: cover;
  background-position: center; */
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(11,11,12,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,11,12,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(230,38,45,0.18), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 56px; align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 9.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  padding: 7px 14px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.eyebrow.dark { background: rgba(11,11,12,0.04); }
.eyebrow.light { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.18); color: #fff; }
.dot-red { width: 7px; height: 7px; border-radius: 50%; background: var(--red); }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6.4vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.hero h1 span{
  color: #fc1420;
  font-weight: bold;
}
/*
.accent-grad {
  background: var(--red-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
  */
.hero-sub {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-sub span{
  color: #000000;
  font-weight: bold;
}

.hero-sub b{
  color: #fc1420;
  font-weight: bold;
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: .01em;
  border-radius: 999px;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-call {
  background: var(--red-grad);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(230,38,45,0.7); }
.btn-whats {
  background: var(--green-grad);
  color: #fff;
  box-shadow: var(--shadow-green);
}
.btn-whats:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(34,197,94,0.7); }

.hero-stats {
  display: flex; align-items: center; gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; }
.stat strong {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
}
.stat span { font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.stat-divider { width: 1px; height: 36px; background: var(--line-strong); }

/* Hero image */
.hero-image-inner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  transform: rotate(1.5deg);
  transition: transform .6s var(--ease);
}
.hero-image-inner:hover { transform: rotate(0deg) scale(1.01); }
.hero-image-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.hero-image-inner:hover img { transform: scale(1.04); }

.hero-card {
  position: absolute;
  bottom: 22px; left: 22px;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px 12px 12px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transform: rotate(-1.5deg);
}
.hero-card-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  display: grid; place-items: center;
}
.hero-card strong { display: block; font-size: 14px; font-weight: 700; line-height: 1.2; }
.hero-card em { font-style: normal; font-size: 12px; color: var(--muted); }

/* ---------- STRIP / DIFERENCIAIS ---------- */
.strip {
  background: var(--ink);
  color: #fff;
  padding: 28px 0;
}
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.feature {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  border-radius: 16px;
  transition: background .3s var(--ease);
}
.feature:hover { background: rgba(255,255,255,0.05); }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  color: var(--red-2);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.feature strong { display: block; font-size: 14.5px; font-weight: 700; line-height: 1.2; }
.feature em { font-style: normal; font-size: 12.5px; color: rgba(255,255,255,.6); margin-top: 3px; display: block; }

/* ---------- SERVIÇOS ---------- */
.services { padding: 100px 0 110px; }
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-head.left { text-align: left; max-width: none; margin: 0 0 32px; }

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 16px 0;
}
.section-title-sm {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-top: 14px;
}
.section-sub {
  color: var(--muted);
  font-size: 16.5px;
  margin-top: 14px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  padding: 32px 28px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all .35s var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--red-grad);
  opacity: 0;
  transition: opacity .35s var(--ease);
  z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  color: #fff;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-icon-wrap { background: rgba(255,255,255,0.18); color: #fff; }
.service-card:hover .service-link { color: #fff; }

.service-num {
  position: absolute;
  top: 22px; right: 24px;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600;
  color: var(--muted);
  letter-spacing: .15em;
}
.service-card:hover .service-num { color: rgba(255,255,255,.8); }

.service-icon-wrap {
  width: 64px; height: 56px;
  border-radius: 14px;
  background: var(--bg-soft);
  color: var(--ink);
  display: grid; place-items: center;
  margin-bottom: 22px;
  transition: all .35s var(--ease);
}
.service-icon { width: 38px; height: auto; }
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -.015em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.service-card p {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 18px;
  transition: color .35s var(--ease);
}
.service-card:hover p { color: rgba(255,255,255,.92); }
.service-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--red);
  display: inline-flex; gap: 4px;
  transition: gap .3s var(--ease);
}
.service-card:hover .service-link { gap: 10px; }

/* ---------- GALLERY + REVIEWS ---------- */
.gallery-reviews {
  padding: 100px 0;
  background: var(--bg-soft);
}
.two-cols {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.g-item {
  display: block;
  aspect-ratio: 1/1;
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
  position: relative;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.g-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11,11,12,0.4));
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.g-item:hover img { transform: scale(1.08); }
.g-item:hover::after { opacity: 1; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  font-size: 13.5px;
  font-weight: 600;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  transition: all .25s var(--ease);
}
.btn-outline:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: translateY(-1px);
}

.reviews { display: flex; flex-direction: column; gap: 14px; }
.review {
  display: flex; align-items: center; gap: 16px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: all .3s var(--ease);
}
.review:hover {
  transform: translateX(4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}
.review-text { flex: 1; }
.stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; margin-bottom: 6px; }
.review-text p {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.review-author { font-size: 12.5px; color: var(--muted); font-weight: 600; }
.review-author span { font-weight: 400; opacity: .7; }
.review-wa {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green-grad);
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px -4px rgba(34,197,94,.6);
  transition: transform .25s var(--ease);
}
.review-wa:hover { transform: scale(1.08); }

/* ---------- CTA ---------- */
.cta {
  position: relative;
  padding: 110px 0;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.cta-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) contrast(1.05);
  z-index: -2;
}
.cta-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(11,11,12,0.92) 0%, rgba(11,11,12,0.7) 50%, rgba(230,38,45,0.55) 100%);
  z-index: -1;
}
.cta-text { max-width: 620px; }
.cta-text h2 span{
  color: #fc1420;
  font-weight: bold;
}
.cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 16px 0 20px;
}
.cta p { font-size: 17px; color: rgba(255,255,255,.85); margin-bottom: 32px; max-width: 520px; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--bg);
  color: #000000;
  padding-top: 60px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.9fr;
  gap: 32px;
  align-items: center;
  padding-bottom: 50px;
}
.logo-footer { color: #fff; }
.logo-footer .accent { color: var(--red-2); }
.logo-footer em { color: rgba(255,255,255,.5); }

.footer-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
}
.footer-item strong { display: block; font-size: 14.5px; font-weight: 700; }
.footer-item em { font-style: normal; font-size: 12px; color: rgba(0, 0, 0, 0.55); display: block; margin-top: 2px; }
.circle-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: grid; place-items: center;
  flex-shrink: 0;
}

.social { flex-direction: column; align-items: flex-start; }
.social strong { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: #000; margin-bottom: 4px; }
.social-icons { display: flex; gap: 8px; }
.social-icons a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  transition: all .25s var(--ease);
}
.social-icons a:hover { background: var(--red); transform: translateY(-2px); }

.copy {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  font-size: 12.5px;
  color: rgba(0, 0, 0, 0);
}
.copy .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: #000000}

/* ---------- FLOATING WHATSAPP ---------- */
.float-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px -6px rgba(34,197,94,0.6);
  z-index: 100;
  transition: transform .3s var(--ease);
}
.float-wa::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  background: rgba(34,197,94,0.4);
  z-index: -1;
  animation: pulse 2s var(--ease) infinite;
}
.float-wa:hover { transform: scale(1.08); }

/* ============== RESPONSIVE ============== */
@media (max-width: 1100px) {
  .main-nav { display: none; }
  .header-inner { gap: 16px; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .two-cols { grid-template-columns: 1fr; gap: 56px; }
}

@media (max-width: 820px) {
  .topbar-inner { font-size: 12px; }
  .topbar-inner span:nth-child(2) { display: none; }
  .topbar-inner { justify-content: space-between; }

  .menu-toggle { display: flex; margin-left: auto; }
  .header-cta .phone-text { display: none; }
  .header-cta { padding: 5px; }

  .hero { padding: 34px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-inner { transform: rotate(0deg); }
  .hero-card { transform: none; }

  .strip { padding: 20px 0; }
  .feature { padding: 14px; }
  .feature em { display: none; }

  .services { padding: 70px 0 80px; }
  .gallery-reviews { padding: 70px 0; }
  .cta { padding: 80px 0; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding-bottom: 40px;
  }
  .copy .container { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 540px) {
  .features { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 16px; }
  .hero { padding: 34px 0 64px; }
  .stat strong { font-size: 24px; }
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
  .btn { width: 100%; justify-content: center; }
  .review { flex-direction: column; align-items: flex-start; gap: 14px; }
  .review-wa { align-self: flex-end; margin-top: -50px; }
  .float-wa { width: 54px; height: 54px; bottom: 16px; right: 16px; }
}
