/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
  padding: 0 1rem;
}

/* Header / Hero */
.hero {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}
.hero h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.hero ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 1rem 0;
}
.hero li {
  background: #fff;
  color: #003366;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
}
.btn-whatsapp {
  background-color: #25D366;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 1rem;
}

/* Contact Info */
.contact-info {
  background: #eef2f3;
  padding: 1rem;
  border-radius: 10px;
  margin: 1rem 0;
}
.contact-info p {
  margin: 0.5rem 0;
}

/* Diferenciales */
.diferenciales {
  margin: 1rem 0;
}
.diferenciales h2 {
  margin-bottom: 1rem;
  color: #003366;
}
.diferenciales ul li {
  margin-bottom: 0.5rem;
}

/* Seguros */
.seguros {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}
.seguro-card {
  background: white;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

/* Cómo Usar */
.como-usar {
  margin: 1rem 0;
}
.como-usar ol li {
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}
.redes-sociales a {
  color: white;
  margin: 0 0.5rem;
  text-decoration: none;
  font-size: 1.2rem;
}

/* Botón Flotante WhatsApp */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.floating-whatsapp-btn:hover {
  background-color: #128c7e;
}
