body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f7fafd;
}

header {
  background: linear-gradient(90deg, #005bea 0%, #3ec6e0 100%);
  color: #fff;
  padding: 2rem 0 1rem 0;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  
}

.logo {
  width: 120px;
  height: auto;
  margin-left: 1.5rem;
}

.header-text {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0 1.5rem 0 0;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

ul li {
  margin: 0;
}

ul li a {
  text-decoration: none;
  color: white;
  border-bottom: none;
  font-size: 1.1rem;
  transition: color 0.2s;
}

ul li a:hover {
  color: #ffe082;
}

.quienes-carrusel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin: 0 0 2rem 0;
  width: 100%;
  
}

.carrusel-container {
  width: 100vw;
  max-width: 100vw;
  height: 38vw;
  max-height: 470px;
  min-height: 220px;
  border-radius: 0px 0px 50px 50px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.13);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  transition: width 0.3s, height 0.3s;
  margin-left: 10px;
  margin-right: 10px;
}

.carrusel-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.7s;
}

.quienes-container {
  width: 95vw;
  max-width: 1100px;
  background: #f7fafd;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.09);
  padding: 2.5rem 2rem 2rem 2rem;
  margin-bottom: 0.5rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.quienes-container h2 {
  color: #005bea;
  margin-bottom: 1.2rem;
  font-size: 2.3rem;
  letter-spacing: 1px;
}

.quienes-container p {
  color: #222;
  font-size: 1.18rem;
  line-height: 1.7;
}

.ventajas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2.5rem 0 2rem 0;
  width: 100%;
}

.ventaja-card {
  background: linear-gradient(135deg, #e3f0ff 0%, #c6e6fa 100%);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  width: 260px;
  min-width: 220px;
  max-width: 95vw;
  text-align: center;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.ventaja-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px rgba(0,94,186,0.13);
}

.ventaja-card h3 {
  color: #005bea;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.ventaja-card img {
  width: 80px;
  margin-bottom: 1rem;
}

.btn-reparar {
  background: #005bea;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 1rem 2.2rem;
  font-size: 1.25rem;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,94,186,0.10);
  transition: background 0.2s, transform 0.2s;
  margin-bottom: 2rem;
}
.btn-reparar:hover {
  background: #003e8a;
  transform: translateY(-2px) scale(1.03);
}

/* Responsive */
@media (max-width: 1300px) {
  .carrusel-container, .quienes-container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  header {
    flex-direction: column;
    gap: 1rem;
    padding: 1.2rem 0 0.7rem 0;
  }
  .logo {
    margin-left: 0;
    margin-bottom: 0.5rem;
  }
  ul {
    margin: 0 0 0.5rem 0;
    gap: 1rem;
  }
  .carrusel-container, .quienes-container {
    max-width: 99vw;
    width: 99vw;
    margin-left: 0.5vw;
    margin-right: 0.5vw;
  }
  .ventajas {
    gap: 1rem;
  }
  .ventaja-card {
    width: 90vw;
    min-width: unset;
    max-width: 99vw;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .carrusel-container {
    height: 45vw;
    min-height: 120px;
    border-radius: 12px;
  }
  .quienes-container {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    border-radius: 12px;
  }
  .ventaja-card {
    padding: 1rem 0.5rem;
    border-radius: 10px;
  }
  .btn-reparar {
    width: 90vw;
    font-size: 1rem;
    padding: 0.8rem 0;
  }
}