/* Hero */
.hero-nosotros {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('/assets/nosotros-hero.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero-nosotros h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-nosotros p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Secciones generales */
.nosotros section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.nosotros h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #b30000;
}

.nosotros p, 
.nosotros li {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.nosotros ul {
  list-style: none;
  padding: 0;
}

.nosotros ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.nosotros ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #b30000;
}

/* Contacto */
.contacto-central {
  background: #fff;
  padding: 60px 20px;
  border-top: 1px solid #eee;
}

.contacto-central h2 {
  margin-bottom: 20px;
}

.contacto-central .campo {
  margin-bottom: 15px;
}

.contacto-central label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.contacto-central input,
.contacto-central textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.btn-enviar {
  background: #b30000;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn-enviar:hover {
  background: #8c0000;
}

.timeline-container {
  position: relative;
  margin: 40px auto;
  max-width: 1000px;
  padding: 20px 0;
}

.timeline-container::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #b30000;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 45%;
  padding: 20px;
  box-sizing: border-box;
}

.timeline-item h3 {
  font-size: 1.5rem;
  color: #b30000;
  margin-bottom: 10px;
}

.timeline-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Alternancia */
.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 55%;
  text-align: left;
}

/* Puntos */
.timeline-item::before {
  content: "";
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background: #b30000;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item:nth-child(odd)::before {
  right: -11px;
}

.timeline-item:nth-child(even)::before {
  left: -11px;
}
/* Hero */
.hero-ubicaciones {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #c00, #900);
  color: #fff;
}
.hero-ubicaciones h1 {
  font-size: 1.8rem;
}
.hero-ubicaciones p {
  font-size: 1rem;
}

/* Secciones generales */
.nosotros section {
  padding: 2rem 1rem;
}
.nosotros h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #c00;
}
.nosotros p, .nosotros li {
  font-size: 1rem;
  line-height: 1.6;
}

/* Servicios con íconos */
.servicios ul {
  list-style: none;
  padding: 0;
}
.servicios li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}
.servicios li::before {
  content: "✔️";
  position: absolute;
  left: 0;
}

/* Timeline */
.timeline-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.timeline-item {
  background: #fff;
  border-left: 4px solid #c00;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.timeline-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #c00;
}
.timeline-item p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-ubicaciones h1 {
    font-size: 1.5rem;
  }
  .hero-ubicaciones p {
    font-size: 0.9rem;
  }
  .nosotros h2 {
    font-size: 1.2rem;
  }
}
