body {
  background-color: #f5f5f5;
  font-family: 'Roboto', sans-serif;
  color: #1b1b1b;
}

.navbar {
  background: linear-gradient(to right, #e10600, #3a3a3a);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-section {
  position: relative;
  padding: 6rem 1rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  color: white;
  background-image: url('static/motos_header.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* oscurece la imagen */
  z-index: 0;
}

.hero-section > div {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  font-size: 2.8rem;
  font-weight: bold;
  color: #ffffff;
}

.hero-section p {
  font-size: 1.2rem;
  color: #dddddd;
}

.hero-section .btn-warning {
  background-color: #e10600;
  border: none;
  color: white;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.hero-section .btn-warning:hover {
  background-color: #b30000;
}

section {
  background-color: #ffffff;
}

section h2 {
  color: #e10600;
  text-transform: uppercase;
  font-weight: bold;
}

.img-collage {
  border: 3px solid #e10600; /* amarillo Bootstrap */
}

.convenio-box {
  background-color: #e10600;
  color: white;
  padding: 1rem;
  font-weight: bold;
  border-radius: 4px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.moto-img {
  width: 60%;
  height: auto;
}

.bg-warning-custom {
  background-color: #ffc107;
}
.section-title {
  font-size: 1.8rem;
  font-weight: bold;
}
.important-text {
  color: red;
  font-weight: bold;
}
.checklist li {
  margin-bottom: 0.3rem;
}

.motorcycle-img {
  max-width: 100%;
  height: auto;
}

footer {
  background-color: #1b1b1b;
  color: #ccc;
  font-size: 0.9rem;
}

#whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #25D366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#whatsapp-button img {
  width: 35px;
  height: 35px;
}

h1, h2, .navbar {
  font-family: 'Teko', sans-serif;
}


