@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;1,700&family=Barlow:wght@300;400;500;600&display=swap');

/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: color-mix(in srgb, var(--accent) 80%, white); }
ul { list-style: none; }

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .02em;
}
h1 { font-size: clamp(2.4rem, 7vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1rem; letter-spacing: .08em; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: .5rem;
}

/* ── Layout ────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}
.btn-accent:hover {
  background: color-mix(in srgb, var(--accent) 85%, white);
  color: #fff;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: .5rem 1.25rem; font-size: .9rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.15rem; }

/* ── Header ────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .3s;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}
.header-logo img {
  height: 36px;
  width: auto;
  border-radius: 0;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.main-nav ul a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: all .2s;
}
.main-nav ul a:hover,
.main-nav ul a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.nav-cta { margin-left: 1rem; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all .3s;
}

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0f05 50%, #0a0a0a 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 50%, rgba(232,97,10,.12) 0%, transparent 70%);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,97,10,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,97,10,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
}
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 span { color: var(--accent); }
.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badge {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

/* ── Stats bar ─────────────────────────────────────────── */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 2rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { padding: 1rem; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: .85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .25rem;
}

/* ── About ─────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img {
  position: relative;
}
.about-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-img::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid var(--accent);
  z-index: -1;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 100%, 16px 100%);
}
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { color: var(--muted); margin-bottom: 1rem; }
.about-checks { margin: 1.5rem 0; }
.about-checks li {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .95rem;
}
.about-checks li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  clip-path: polygon(0 50%, 40% 100%, 100% 0, 40% 60%);
  flex-shrink: 0;
}

/* ── Services ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,.06);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform .2s, border-color .2s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .3s;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(232,97,10,.3); }
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  color: var(--accent);
}
.service-card h3 { margin-bottom: .75rem; font-size: 1.2rem; }
.service-card p { color: var(--muted); font-size: .9rem; }
.service-card-link { display: block; text-decoration: none; color: inherit; }

/* ── Dealers ───────────────────────────────────────────── */
.dealers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.dealer-card {
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,.06);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.dealer-card:hover { border-color: rgba(232,97,10,.4); transform: translateY(-3px); }
.dealer-logo {
  height: 48px;
  width: auto;
  max-width: 140px;
  margin: 0 auto 1rem;
  filter: brightness(0) invert(1);
  opacity: .7;
  transition: opacity .2s;
}
.dealer-card:hover .dealer-logo { opacity: 1; }
.dealer-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.dealer-type { font-size: .8rem; color: var(--muted); margin-top: .25rem; }

/* ── Agenda / Circuit ──────────────────────────────────── */
.agenda-list { margin-top: 2rem; }
.agenda-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,.06);
  margin-bottom: .75rem;
  transition: border-color .2s;
}
.agenda-item:hover { border-color: rgba(232,97,10,.3); }
.agenda-date {
  text-align: center;
  min-width: 56px;
}
.agenda-day {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  display: block;
}
.agenda-month {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
}
.agenda-info h4 { font-size: 1rem; margin-bottom: .2rem; }
.agenda-info p { font-size: .85rem; color: var(--muted); margin: 0; }
.agenda-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  background: rgba(232,97,10,.15);
  color: var(--accent);
  border: 1px solid rgba(232,97,10,.3);
  white-space: nowrap;
}

/* ── Reviews ───────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.review-card {
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,.06);
  padding: 1.75rem;
}
.review-stars { color: var(--accent); font-size: 1.1rem; margin-bottom: .75rem; }
.review-text { font-size: .9rem; color: var(--muted); margin-bottom: 1rem; font-style: italic; }
.review-author { font-weight: 600; font-size: .9rem; }
.review-date { font-size: .8rem; color: var(--muted); margin-top: .2rem; }

/* ── FAQ ───────────────────────────────────────────────── */
.faq-list { margin-top: 2rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text);
  transition: color .2s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 2px solid var(--muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.faq-icon::after {
  content: '+';
  font-size: 1rem;
  line-height: 1;
  color: var(--muted);
  transition: transform .2s;
}
.faq-item.open .faq-icon { border-color: var(--accent); }
.faq-item.open .faq-icon::after { content: '−'; color: var(--accent); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer-inner { padding: 0 0 1.25rem; color: var(--muted); font-size: .95rem; }

/* ── Instagram ─────────────────────────────────────────── */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  margin-top: 2rem;
}
.instagram-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.instagram-item:hover img { transform: scale(1.05); }

/* ── Photo gallery ─────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── CTA block ─────────────────────────────────────────── */
.cta-block {
  background: linear-gradient(135deg, var(--bg2), rgba(232,97,10,.08));
  border: 1px solid rgba(232,97,10,.2);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(232,97,10,.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-block h2 { margin-bottom: 1rem; }
.cta-block p { color: var(--muted); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Contact ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-top: 3rem;
}
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(232,97,10,.12);
  border: 1px solid rgba(232,97,10,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-item-text label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  display: block;
  margin-bottom: .25rem;
}
.contact-item-text a, .contact-item-text p { font-size: .95rem; margin: 0; }

/* ── Form ──────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .5rem;
  color: var(--muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--text);
  padding: .75rem 1rem;
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  transition: border-color .2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  cursor: pointer;
}
.form-check input[type="checkbox"] { margin-top: 3px; accent-color: var(--accent); flex-shrink: 0; }
.form-error { color: #e84040; font-size: .85rem; margin-top: .35rem; display: block; }
.form-alert {
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid;
}
.form-alert.success { background: rgba(34,197,94,.1); border-color: #22c55e; color: #86efac; }
.form-alert.error   { background: rgba(232,64,64,.1);  border-color: #e84040; color: #fca5a5; }

/* ── Section header ────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: var(--muted); max-width: 560px; margin: 0 auto; }

/* ── Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 4rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}
.footer-brand img { height: 40px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; color: var(--muted); }
.footer-links h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .85rem;
  letter-spacing: .15em;
  color: var(--muted);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.footer-links ul li { margin-bottom: .5rem; }
.footer-links ul a { color: var(--muted); font-size: .9rem; }
.footer-links ul a:hover { color: var(--accent); }
.footer-contact h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .85rem;
  letter-spacing: .15em;
  color: var(--muted);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.footer-contact p { font-size: .9rem; color: var(--muted); margin-bottom: .5rem; }
.footer-contact a { color: var(--muted); }
.footer-contact a:hover { color: var(--accent); }
.footer-social { display: flex; gap: .75rem; margin-top: 1rem; }
.footer-social a {
  color: var(--muted);
  transition: color .2s;
}
.footer-social a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p { font-size: .8rem; color: var(--muted); margin: 0; }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--accent); }

/* ── WhatsApp float ────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { color: #fff; }

/* ── Lightbox ──────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 88vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* ── Admin link ────────────────────────────────────────── */
.admin-bar {
  background: #1a0f05;
  border-bottom: 1px solid rgba(232,97,10,.2);
  padding: .4rem 1.25rem;
  font-size: .78rem;
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
}
.admin-bar a { color: var(--muted); }
.admin-bar a:hover { color: var(--accent); }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img::before { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(10,10,10,.98);
    padding: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.06);
    transform: translateY(-110%);
    transition: transform .3s;
    z-index: 999;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav ul { flex-direction: column; gap: .25rem; }
  .main-nav ul a { display: block; padding: .75rem 0; font-size: 1.2rem; }
  .nav-cta { margin: 1rem 0 0; display: inline-flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .agenda-item { grid-template-columns: auto 1fr; }
  .agenda-badge { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .cta-block { padding: 2.5rem 1.25rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
}
