:root {
  --green-dark: #0d4d2b;
  --green: #1c8a4a;
  --green-bright: #2fb95e;
  --red: #d81e2c;
  --red-dark: #a11420;
  --yellow: #f5c518;
  --orange: #f4801f;
  --navy: #1b2733;
  --ink: #17222a;
  --paper: #fbfbf8;
  --paper-alt: #f1f3ee;
  --muted: #5c6b66;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(13, 40, 25, 0.12);
  --font-head: 'Fredoka', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ---------- Topbar ---------- */
.topbar {
  background: var(--green-dark);
  color: #eafff0;
  font-size: 0.82rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 24px;
}
.topbar a { font-weight: 600; }
.topbar a:hover { color: var(--yellow); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: 0 6px 20px rgba(0,0,0,0.18); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: #fff;
}
.logo-gear {
  width: 2.76rem;
  height: 2.76rem;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25));
  transform: scaleX(-1) rotate(-12deg);
}

.logo-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* "Stand" — imita o letreiro amarelo com contorno escuro da placa da loja */
.logo-stand {
  font-family: 'Baloo 2', var(--font-head), sans-serif;
  font-weight: 800;
  font-size: 1.05em;
  color: var(--yellow);
  letter-spacing: 0.5px;
  -webkit-text-stroke: 1.5px var(--green-dark);
  text-shadow:
    2px 2px 0 var(--green-dark),
    -1px 0 0 var(--green-dark),
    0 2px 0 var(--green-dark);
  transform: skewX(-3deg);
}

/* "Bike" — imita as placas quadradas pretas/brancas da fachada */
.logo-bike {
  display: inline-flex;
  gap: 2px;
}
.logo-bike span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15em;
  height: 1.15em;
  font-family: 'Baloo 2', var(--font-head), sans-serif;
  font-weight: 700;
  font-size: 0.82em;
  border-radius: 3px;
  background: var(--navy);
  color: #fff;
  transform: rotate(-3deg);
  box-shadow: 0 1px 2px rgba(0,0,0,0.25);
}
.logo-bike span:nth-child(even) {
  background: #fff;
  color: var(--navy);
  border: 2px solid var(--navy);
  transform: rotate(3deg);
}

.nav {
  display: flex;
  gap: 28px;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav a { position: relative; padding: 4px 0; color: #fff; }
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width 0.25s ease;
}
.nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-close {
  display: none;
}

.nav-backdrop {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 20px rgba(216, 30, 44, 0.35);
}
.btn-primary:hover { background: var(--red-dark); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.8);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); }

.btn-whatsapp {
  position: relative;
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 20px rgba(28, 138, 74, 0.35);
  overflow: hidden;
  isolation: isolate;
}
.btn-whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.12) 45%, rgba(255,255,255,0) 55%);
  pointer-events: none;
}
.btn-whatsapp:hover { background: var(--green-dark); }


/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 33, 20, 0.75) 0%, rgba(10, 26, 18, 0.85) 55%, rgba(8, 20, 14, 0.95) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 90px;
  padding-bottom: 90px;
}
.eyebrow {
  display: inline-block;
  background: rgba(245, 197, 24, 0.18);
  border: 1px solid var(--yellow);
  color: var(--yellow);
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin: 0 0 20px;
}
.hero h1 span { color: var(--orange); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}
.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-badges span {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--red);
  color: #fff;
  padding: 12px 0;
  overflow: hidden;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-left 24s linear infinite;
}
.marquee-track span { padding-right: 8px; white-space: nowrap; font-size: 0.9rem; }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-alt { background: var(--paper-alt); }

.tag {
  display: inline-block;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.tag-center { display: block; text-align: center; }
.tag-light { color: var(--yellow); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--green-dark);
  margin: 0 0 12px;
}
.section-title:not(.no-center) { text-align: center; }
.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 48px;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  color: var(--green-dark);
  margin: 0 0 18px;
}
.about-text p { color: var(--muted); margin-bottom: 20px; }
.about-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.about-list li { font-weight: 600; color: var(--ink); }

/* ---------- Cards / Services ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-top: 4px solid var(--green);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(13, 40, 25, 0.16);
}
.card-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.card h3 {
  font-family: var(--font-head);
  color: var(--green-dark);
  margin: 0 0 10px;
  font-size: 1.2rem;
}
.card p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ---------- Gallery ---------- */
.gallery { display: grid; gap: 20px; }
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ---------- Flag / group section ---------- */
.section-flag {
  position: relative;
  color: #fff;
  padding: 100px 0;
}
.flag-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.flag-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13,77,43,0.88) 0%, rgba(20,20,20,0.75) 50%, rgba(161,20,32,0.88) 100%);
}
.flag-content { position: relative; z-index: 2; max-width: 640px; }
.flag-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin: 0 0 16px;
}
.flag-content p { color: rgba(255,255,255,0.9); font-size: 1.05rem; }

/* ---------- Brasil ---------- */
.section-brasil {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.brasil-bg {
  position: absolute;
  inset: -30px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(6px) saturate(1.2);
  transform: scale(1.15);
}
.brasil-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,77,43,0.55) 0%, rgba(27,39,51,0.65) 100%);
}
.brasil-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brasil-text { max-width: 640px; text-align: center; }
.section-brasil .tag-center { text-align: center; }
.section-brasil .section-title { text-align: center; color: #fff; }
.section-brasil .section-sub {
  text-align: center;
  margin: 0 auto 24px;
  color: rgba(255,255,255,0.95);
}
.verse-card {
  margin: 0;
  padding: 18px 22px;
  background: rgba(255,255,255,0.1);
  border-left: 4px solid var(--yellow);
  border-radius: 8px;
}
.verse-text {
  margin: 0 0 8px;
  font-style: italic;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
}
.verse-ref {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--yellow);
  font-size: 0.85rem;
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.team-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 3/4;
  object-fit: cover;
}
.team-text h2 {
  font-family: var(--font-head);
  color: var(--green-dark);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin: 0 0 18px;
}
.team-text p { color: var(--muted); margin-bottom: 20px; }
.team-quote {
  border-left: 4px solid var(--orange);
  padding-left: 18px;
  font-style: italic;
  color: var(--ink) !important;
  font-weight: 500;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.contact-info h2 {
  font-family: var(--font-head);
  color: var(--green-dark);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin: 0 0 20px;
}
.contact-item { font-weight: 600; margin: 10px 0; }
.contact-item a:hover { color: var(--red); }
.contact-cta { margin-top: 20px; }
.contact-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.contact-card iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}
.contact-card-body {
  padding: 18px 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.contact-card-body strong { display: block; color: var(--green-dark); font-family: var(--font-head); font-size: 1.1rem; }
.contact-card-body span { display: block; color: var(--muted); font-size: 0.9rem; }
.contact-card-body .btn { flex-shrink: 0; }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 48px 0 28px;
  text-align: center;
}
.footer-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: #fff;
  margin-bottom: 16px;
}
.footer-brand strong { color: var(--orange); }
.footer-brand .logo-gear-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  flex-shrink: 0;
}
.footer-brand .logo-gear {
  width: 2.4rem;
  height: 2.4rem;
  filter: none;
}
.footer p { max-width: 480px; margin: 0 auto 8px; font-size: 0.9rem; }
.footer-copy { opacity: 0.6; font-size: 0.8rem; margin-top: 16px; }

/* ---------- Floating buttons ---------- */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(28, 138, 74, 0.45);
  z-index: 90;
  animation: pulse 2.4s ease-in-out infinite;
  overflow: hidden;
  isolation: isolate;
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.15) 42%, rgba(255,255,255,0) 55%);
  pointer-events: none;
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  position: relative;
  z-index: 1;
}

.icon-whatsapp {
  width: 1em;
  height: 1em;
  fill: #25d366;
  vertical-align: -0.15em;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid, .team-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .team-img { max-width: 320px; margin: 0 auto; }
  .contact-card-body .btn { margin-left: auto; }
  .contact-cta { display: flex; margin-left: auto; margin-right: auto; }
  .team-text .btn-primary { display: flex; margin-left: auto; margin-right: auto; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(280px, 78vw);
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 100px 32px 32px;
    box-shadow: -8px 0 24px rgba(0,0,0,0.12);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99;
  }
  .nav.open { transform: translateX(0); }
  .nav a { color: var(--green-dark); }
  .nav-toggle { display: flex; }
  .topbar-inner { font-size: 0.72rem; }
  .section { padding: 64px 0; }

  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: var(--paper-alt);
    color: var(--green-dark);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .nav-close:hover {
    background: var(--red);
    color: #fff;
    transform: rotate(90deg);
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(13, 23, 18, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 98;
  }
  .nav-backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 480px) {
  .hero-content { padding-top: 60px; padding-bottom: 60px; }
  .btn { padding: 12px 20px; font-size: 0.88rem; }
}
