/* ========================================
   MOTOCITY NICARAGUA - STYLES
   Colors: Black, Orange (#FF6B00), White
   Font: Poppins
   ======================================== */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #FF6B00;
  --orange-dark: #e05e00;
  --orange-light: #ff8533;
  --black: #0a0a0a;
  --dark: #111111;
  --dark-gray: #1a1a1a;
  --medium-gray: #2a2a2a;
  --light-gray: #888;
  --white: #ffffff;
  --font: 'Poppins', sans-serif;
  --transition: 0.3s ease;
}

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

body {
  font-family: var(--font);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul { list-style: none; }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes revealLine {
  from { width: 0; }
  to { width: 80px; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* ---------- TOP BAR ---------- */
.top-bar {
  background: var(--dark);
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--medium-gray);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-info {
  display: flex;
  gap: 25px;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar-info span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--light-gray);
}

.top-bar-info span i {
  color: var(--orange);
}

.top-bar-social {
  display: flex;
  gap: 12px;
}

.top-bar-social a {
  color: var(--light-gray);
  font-size: 1rem;
  transition: color var(--transition), transform var(--transition);
}

.top-bar-social a:hover {
  color: var(--orange);
  transform: scale(1.2);
}

/* ---------- HEADER / NAV ---------- */
.header {
  background: var(--black);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo span:first-child {
  color: var(--orange);
}

.logo span:last-child {
  color: var(--white);
}

.logo img {
  height: 45px;
}

.nav-links {
  display: flex;
  gap: 5px;
  align-items: center;
}

.nav-links a {
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

.header-phone i {
  background: var(--orange);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(10, 10, 10, 0.7) 50%,
    rgba(10, 10, 10, 0.3) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  animation: fadeInLeft 1s ease;
}

.hero-content .subtitle {
  color: var(--orange);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  display: inline-block;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--orange);
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.6), rgba(10,10,10,0.9));
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease;
}

.page-hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.page-hero-content h1 span {
  color: var(--orange);
}

.page-hero-content .breadcrumb {
  margin-top: 15px;
  font-size: 0.95rem;
  color: var(--light-gray);
}

.page-hero-content .breadcrumb a {
  color: var(--orange);
}

/* ---------- HERO CAROUSEL (inner pages) ---------- */
.hero-carousel-section {
  position: relative;
  height: 500px;
  overflow: hidden;
  padding: 0;
}

.hero-carousel {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.7s ease;
}

.hero-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  overflow: hidden;
}

.hero-carousel-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.hero-carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}

.hero-carousel-dot.active {
  background: var(--orange);
  transform: scale(1.3);
}

.hero-carousel-prev,
.hero-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, transform 0.2s;
  font-size: 0.9rem;
}
.hero-carousel-prev { left: 16px; }
.hero-carousel-next { right: 16px; }
.hero-carousel-prev:hover,
.hero-carousel-next:hover { background: #e05a00; transform: translateY(-50%) scale(1.1); }

@media (max-width: 768px) {
  .hero-carousel-prev,
  .hero-carousel-next {
    width: 32px;
    height: 32px;
    font-size: 0.7rem;
  }
  .hero-carousel-prev { left: 8px; }
  .hero-carousel-next { right: 8px; }
}

@media (max-width: 1024px) {
  .hero-carousel-section { height: 360px; }
  .hero-carousel-slide img {
    height: 360px;
    object-fit: contain;
    background: var(--dark);
  }
}

@media (max-width: 768px) {
  .hero-carousel-section { height: 260px; }
  .hero-carousel-slide img {
    height: 260px;
    object-fit: contain;
    background: var(--dark);
  }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* ---------- SECTION STYLES ---------- */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-header h2 span {
  color: var(--orange);
}

.section-header .line {
  width: 80px;
  height: 4px;
  background: var(--orange);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.section-header p {
  color: var(--light-gray);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.bg-dark {
  background: var(--dark);
}

.bg-darker {
  background: var(--dark-gray);
}

/* ---------- CATEGORIES GRID ---------- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.category-card {
  position: relative;
  height: 280px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  group: true;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  transition: background var(--transition);
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(255, 107, 0, 0.8) 0%, transparent 70%);
}

.category-card-overlay h3 {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  transform: translateY(10px);
  transition: transform var(--transition);
}

.category-card:hover .category-card-overlay h3 {
  transform: translateY(0);
}

.category-card-overlay span {
  font-size: 0.85rem;
  color: var(--orange);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
}

.category-card:hover .category-card-overlay span {
  opacity: 1;
  transform: translateY(0);
  color: var(--white);
}

/* ---------- SERVICES / FEATURES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service-card {
  background: var(--dark-gray);
  padding: 35px 25px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--orange);
  transition: all var(--transition);
  margin-bottom: 20px;
}

.service-card:hover .service-card-icon {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--light-gray);
  line-height: 1.6;
}

/* ---------- MOTORCYCLE CARDS ---------- */
.moto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.moto-card {
  background: var(--dark-gray);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid var(--medium-gray);
}

.moto-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: 0 20px 50px rgba(255, 107, 0, 0.15);
}

.moto-card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: var(--medium-gray);
}

.moto-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.moto-card:hover .moto-card-image img {
  transform: scale(1.05);
}

.moto-card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--orange);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.moto-card-year {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.moto-card-body {
  padding: 25px;
}

.moto-card-body h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.moto-card-body h3 span {
  color: var(--orange);
}

.moto-card-type {
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: block;
}

.moto-card-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.moto-spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.moto-spec label {
  font-size: 0.7rem;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.moto-spec span {
  font-size: 0.9rem;
  font-weight: 600;
}

.moto-card-footer {
  display: flex;
  gap: 10px;
  padding-top: 15px;
  border-top: 1px solid var(--medium-gray);
}

.moto-card-footer .btn {
  flex: 1;
  justify-content: center;
  padding: 10px 15px;
  font-size: 0.8rem;
}

/* Moto Filters */
.moto-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.moto-filter-btn {
  padding: 10px 24px;
  background: var(--dark-gray);
  color: var(--white);
  border: 2px solid var(--medium-gray);
  border-radius: 30px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition);
}

.moto-filter-btn:hover,
.moto-filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* ---------- MOTO DETAIL MODAL ---------- */
.moto-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.moto-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.moto-modal {
  background: var(--dark-gray);
  border-radius: 16px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: scaleIn 0.3s ease;
}

.moto-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: var(--orange);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--transition);
}

.moto-modal-close:hover {
  background: var(--orange-dark);
  transform: rotate(90deg);
}

.moto-modal-image {
  height: 350px;
  background: var(--medium-gray);
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}

.moto-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── MODAL SLIDER ── */
.moto-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.moto-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

.moto-slider-track img {
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  background: var(--dark-gray);
}

.moto-slider-prev,
.moto-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.55);
  border: none;
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.2s;
  font-size: 0.9rem;
}

.moto-slider-prev { left: 12px; }
.moto-slider-next { right: 12px; }
.moto-slider-prev:hover,
.moto-slider-next:hover { background: var(--orange); }

.moto-slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 3;
}

.moto-slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.moto-slider-dot.active {
  background: var(--orange);
  transform: scale(1.25);
}

.moto-modal-body {
  padding: 35px;
}

.moto-modal-body h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.moto-modal-body .moto-card-type {
  margin-bottom: 25px;
}

.moto-modal-specs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.moto-modal-spec {
  background: var(--medium-gray);
  padding: 15px;
  border-radius: 8px;
}

.moto-modal-spec label {
  display: block;
  font-size: 0.75rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.moto-modal-spec span {
  font-size: 0.95rem;
  font-weight: 600;
}

.moto-modal-features h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--orange);
}

.moto-modal-features ul {
  display: grid;
  gap: 10px;
}

.moto-modal-features ul li {
  padding-left: 20px;
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.moto-modal-features ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

/* ---------- ABOUT / VALUES ---------- */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-section.reverse {
  direction: rtl;
}

.about-section.reverse > * {
  direction: ltr;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--orange);
  border-radius: 12px;
  transform: translate(15px, 15px);
  z-index: -1;
}

.about-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-text h2 span {
  color: var(--orange);
}

.about-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 25px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.value-card {
  background: var(--dark-gray);
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
}

.value-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--orange);
  transition: all var(--transition);
}

.value-card:hover .value-card-icon {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.1);
}

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--light-gray);
}

/* ---------- WARRANTY / TALLER ---------- */
.warranty-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.warranty-card {
  background: var(--dark-gray);
  padding: 35px;
  border-radius: 12px;
  border-left: 4px solid var(--orange);
}

.warranty-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--orange);
}

.warranty-card ul {
  display: grid;
  gap: 10px;
}

.warranty-card ul li {
  padding-left: 20px;
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.warranty-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

.warranty-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.warning-box {
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid var(--orange);
  border-radius: 10px;
  padding: 30px;
  margin-top: 40px;
}

.warning-box h3 {
  color: var(--orange);
  font-size: 1.2rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.warning-box ul {
  display: grid;
  gap: 8px;
}

.warning-box ul li {
  padding-left: 20px;
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.warning-box ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 2px;
  background: var(--orange);
}

/* ---------- REPUESTOS / PARTS ---------- */
.parts-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.parts-card {
  background: var(--dark-gray);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s ease;
  border-bottom: 3px solid transparent;
}

.parts-card:hover {
  border-bottom-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.parts-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--orange);
}

.parts-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.parts-card p {
  font-size: 0.9rem;
  color: var(--light-gray);
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.cta-banner .cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  z-index: 0;
}

.cta-banner .cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-content .btn-outline {
  border-color: var(--white);
}

.cta-content .btn-outline:hover {
  background: var(--white);
  color: var(--orange);
}

/* ---------- CONTACT FORM ---------- */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form {
  background: var(--dark-gray);
  padding: 40px;
  border-radius: 12px;
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--medium-gray);
  border: 2px solid transparent;
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
}

.form-group textarea {
  height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-card {
  background: var(--dark-gray);
  padding: 25px;
  border-radius: 12px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.contact-info-card:hover {
  border-color: var(--orange);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--orange);
}

.contact-info-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--light-gray);
}

/* Branch Cards */
.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.branch-card {
  background: var(--dark-gray);
  padding: 30px;
  border-radius: 12px;
  border-top: 4px solid var(--orange);
  transition: all var(--transition);
}

.branch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.branch-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--orange);
}

.branch-card-detail {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.branch-card-detail i {
  color: var(--orange);
  margin-top: 3px;
}

.branch-card-detail span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Map placeholder */
.map-placeholder {
  background: var(--medium-gray);
  height: 350px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--light-gray);
  margin-top: 40px;
}

/* ---------- FINANCING ---------- */
.financing-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

@media (max-width: 1024px) {
  .financing-features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .financing-features { grid-template-columns: 1fr; }
}

/* ---------- ALIADOS ---------- */
.aliados-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.aliado-card {
  background: var(--medium-gray);
  border-radius: 16px;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 160px;
  flex: 0 0 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.aliado-card:hover {
  background: var(--orange);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(255, 107, 0, 0.35);
}

.aliado-card img {
  width: 100%;
  max-height: 70px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.aliado-card:hover img {
  filter: none;
}

.aliado-card span {
  display: none;
}

.financing-card {
  background: var(--dark-gray);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.financing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.financing-card:hover::before {
  transform: scaleX(1);
}

.financing-card:hover {
  transform: translateY(-5px);
}

.financing-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
}

.financing-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.financing-card p {
  font-size: 0.9rem;
  color: var(--light-gray);
}

/* ---------- FEATURED MOTOS (HOME) ---------- */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.featured-card {
  background: var(--dark-gray);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid var(--medium-gray);
}

.featured-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 107, 0, 0.1);
}

.featured-card-image {
  height: 200px;
  overflow: hidden;
  background: var(--medium-gray);
  position: relative;
}

.featured-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-card:hover .featured-card-image img {
  transform: scale(1.08);
}

.featured-card-image .tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--orange);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.featured-card-body {
  padding: 20px;
}

.featured-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.featured-card-body .type {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 12px;
}

.featured-card-body .specs {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--light-gray);
}

.featured-card-body .specs span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.featured-card-body .specs span i {
  color: var(--orange);
}

/* ---------- COUNTER SECTION ---------- */
.counter-section {
  background: var(--orange);
  padding: 60px 0;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.counter-item h3 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.counter-item p {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--dark);
  padding: 60px 0 0;
  border-top: 1px solid var(--medium-gray);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-about .logo {
  margin-bottom: 15px;
}

.footer-about p {
  font-size: 0.9rem;
  color: var(--light-gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--medium-gray);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--light-gray);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

.footer h4 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--light-gray);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}

.footer-links a::before {
  content: '\203A';
  color: var(--orange);
  font-weight: bold;
}

.footer-links a:hover {
  color: var(--orange);
  transform: translateX(5px);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--orange);
  margin-top: 4px;
}

.footer-contact-item span {
  font-size: 0.9rem;
  color: var(--light-gray);
}

.footer-bottom {
  border-top: 1px solid var(--medium-gray);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--light-gray);
}

.footer-bottom span {
  color: var(--orange);
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  z-index: 999;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ---------- SCROLL TO TOP ---------- */
.scroll-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 45px;
  height: 45px;
  background: var(--orange);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all var(--transition);
}

.scroll-top.visible {
  display: flex;
}

.scroll-top:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 2.5rem; }
  .section-header h2 { font-size: 2rem; }
  .about-section { grid-template-columns: 1fr; gap: 30px; }
  .about-section.reverse { direction: ltr; }
  .warranty-info { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .top-bar { display: none; }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 5px;
    transition: right 0.4s ease;
    z-index: 1000;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
  }

  .nav-links a::after { display: none; }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(255, 107, 0, 0.1);
  }

  .header-phone { display: none; }

  .hero { height: 70vh; min-height: 400px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 1rem; }
  .hero-buttons { flex-direction: column; }

  .page-hero { height: 250px; }
  .page-hero-content h1 { font-size: 2rem; }

  .moto-grid { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .counter-grid { grid-template-columns: 1fr 1fr; }

  .section-header h2 { font-size: 1.8rem; }

  section { padding: 60px 0; }

  .moto-modal { max-height: 100vh; border-radius: 0; }
  .moto-modal-image { height: 220px; border-radius: 0; }
  .moto-modal-specs { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.7rem; }
  .categories-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .counter-grid { grid-template-columns: 1fr; gap: 20px; }
  .moto-card-specs { grid-template-columns: 1fr; }
  .moto-modal-specs { grid-template-columns: 1fr; }
}

/* ========================================
   COMPATIBILITY ALIASES
   (bridge for index.html class variations)
   ======================================== */

/* Top Bar */
.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
.top-bar-left {
  display: flex;
  gap: 25px;
  align-items: center;
  flex-wrap: wrap;
}
.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--light-gray);
  font-size: 0.85rem;
}
.top-bar-left i { color: var(--orange); }
.top-bar-right {
  display: flex;
  gap: 12px;
}
.top-bar-right a {
  color: var(--light-gray);
  font-size: 1rem;
  transition: color var(--transition), transform var(--transition);
}
.top-bar-right a:hover {
  color: var(--orange);
  transform: scale(1.2);
}

/* Header */
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.logo-moto { color: var(--orange); }
.logo-city { color: var(--white); }

/* Nav variants */
.nav-list {
  display: flex;
  gap: 5px;
  align-items: center;
  list-style: none;
}
.nav-link {
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all var(--transition);
  position: relative;
  color: var(--white);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { width: 60%; }
.nav-link:hover,
.nav-link.active { color: var(--orange); }

/* Hamburger line variant */
.hamburger-line {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}

/* Hero text variants */
.hero-subtitle {
  color: var(--orange);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  display: inline-block;
}
.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title span { color: var(--orange); }
.hero-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  max-width: 500px;
}

/* Section */
.section { padding: 80px 0; }

/* About grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 5px;
    transition: right 0.4s ease;
    z-index: 1000;
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
  }
  .nav-list.active { right: 0; }
  .hero-title { font-size: 2rem; }
}

/* Category image wrapper */
.category-card .category-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.category-card .category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-card:hover .category-image img { transform: scale(1.1); }
.category-card h3 {
  position: relative;
  z-index: 1;
}

/* Service card inner div (taller/financiamiento wrap h3+p in a div) */
.service-card > div:not(.service-card-icon):not(.service-icon) {
  text-align: center;
}

/* Service icon variant (index.html uses .service-icon as direct sibling) */
.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--orange);
  transition: all var(--transition);
  margin-bottom: 20px;
}
.service-card:hover .service-icon {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.1);
}

/* Spec item variants */
.spec-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.spec-label {
  font-size: 0.7rem;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.spec-value {
  font-size: 0.9rem;
  font-weight: 600;
}

/* Btn block */
.btn-block {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* CTA buttons */
.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Counter variants */
.counters-section {
  background: var(--orange);
  padding: 60px 0;
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.counters-grid .counter-item .counter-number {
  font-size: 2.8rem;
  font-weight: 800;
  display: block;
  margin-bottom: 5px;
}
.counters-grid .counter-item p {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .counters-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .counters-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* Footer col */
.footer-col { /* inherits from footer-grid children */ }

/* Delay 6 */
.animate-on-scroll.delay-6 { transition-delay: 0.6s; }

/* Nav direct-a variant (motocicletas.html uses nav.nav-links > a) */
nav.nav-links {
  display: flex;
  gap: 5px;
  align-items: center;
}
nav.nav-links a {
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all var(--transition);
  color: var(--white);
  position: relative;
}
nav.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}
nav.nav-links a:hover::after,
nav.nav-links a.active::after { width: 60%; }
nav.nav-links a:hover,
nav.nav-links a.active { color: var(--orange); }
@media (max-width: 768px) {
  nav.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 5px;
    transition: right 0.4s ease;
    z-index: 1000;
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
  }
  nav.nav-links.active { right: 0; }
  nav.nav-links a { width: 100%; padding: 12px 15px; }
  nav.nav-links a::after { display: none; }
}
