/* Estructura base */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #333;
}

#hero {
  text-align: center;
  padding: 10px 20px 40px;
  background-color: #f5f5f7;
}

.hero-content h1 {
  text-align: center;
  margin: 0;
  margin-top: 0px;
  font-size: 36px;
  font-family: 'Segoe UI', sans-serif;
}

.hero-content .subtitulo {
  font-size: 20px;
  color: #6e6e73;
  margin-bottom: 20px;
}

.hero-content .descripcion {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  color: #4a4a4a;
}

/* Sección Beneficios */
#Beneficios {
  padding: 60px 20px;
  background-color: #f5f5f7;
  text-align: center;
}

#Beneficios h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
}

.beneficio {
  background-color: #f9f9f9;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.beneficio:hover {
  transform: translateY(-5px);
}

.beneficio h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 10px;
}

.beneficio p {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.5;
}



.privacidad-banner {
  background-color: #f9f9f9;
  padding: 3rem 1rem;
  border-radius: 16px;
  max-width: 720px;
  margin: 3rem auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.banner-contenido {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner-img {
  width: 60px;
  height: auto;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.banner-titulo {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 0.5rem;
}

.banner-subtitulo {
  font-size: 1rem;
  color: #6e6e73;
  max-width: 480px;
  line-height: 1.6;
}