/* Tipografía y comportamiento general */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  scroll-behavior: smooth;
}

h2 {
  margin-bottom: 20px;
  font-weight: bold;
}

section ul {
  padding-left: 1.5rem;
}

footer {
  font-size: 0.9rem;
}

form input,
form textarea {
  box-shadow: none !important;
  border-radius: 0.25rem;
}

.navbar-brand img {
  margin-right: 10px;
}

/* =========================
   HERO
========================= */
.hero {
  background: linear-gradient(45deg, #c30000, #9e0000); /* rojo como antes */
}

.hero-slogan {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 0.75rem;
  color: #ffe082;
}

.hero-subtitle {
  max-width: 700px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* =========================
   SECCIÓN NOSOTROS
========================= */
.section-light {
  background-color: #f7f7f7;
}

.mision-vision-card {
  border-radius: 0.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: none;
}

/* =========================
   OPCIONES DESTACADAS
========================= */
.bg-mitsa {
  background-color: #007b8f;
}

/* imágenes de Servicios / Productos / Refacciones */
.opcion-link img {
  width: 180px;       /* más pequeñas */
  height: 180px;
  object-fit: cover;
  border-radius: 50%; /* redondas */
  border: 5px solid #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.opcion-link:hover img {
  transform: scale(1.07);
}

.opcion-link h5 {
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

/* =========================
   GALERÍA (si la usas en otras páginas)
========================= */
.card-img-top {
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
}

/* Imágenes de galería redondas */
.gallery-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}
