/* ===============================
   Reset básico y tipografía
================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background-color: #f7f9fc;
  color: #1f2933;
  line-height: 1.6;
}

/* ===============================
   Hero banner (mobile default)
================================ */

.hero {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #1a73e8, #174ea6);
  margin-bottom: 40px;
}

.hero img {
  width: 100%;
  height: auto;
  aspect-ratio: 1240 / 300;
  object-fit: contain;
  display: block;
}

/* ===============================
   Hero banner (desktop upgrade)
================================ */

@media (min-width: 1024px) {
  .hero img {
    content: url("assets/banner-desktop.png");
    aspect-ratio: 1240 / 420;
  }
}

/* ===============================
   Logo corporativo
================================ */

.logo {
  display: block;          /* evita comportamiento inline raro */
  max-width: 140px;        /* tamaño máximo razonable */
  width: 100%;             /* se adapta si el contenedor es menor */
  height: auto;            /* mantiene proporción */
  margin: 0 auto 20px;     /* centra horizontalmente */
}

/* ===============================
   Logo corporativo (mobile default)
================================ */

@media (max-width: 768px) {
  .logo {
    max-width: 110px;
    margin-bottom: 16px;
  }
}

/* ===============================
   Contenedores generales
================================ */
section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 24px;
}

.intro {
  text-align: center;
}

.dataset,
.contact {
  margin-top: 20px;
}

/* ===============================
   Textos principales
================================ */
h1 {
  font-size: 2.8rem;
  font-weight: 600;
  color: #174ea6;
  margin-bottom: 12px;
}

h2 {
  font-size: 2rem;
  color: #1a73e8;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 1.1rem;
  color: #5f6368;
  margin-bottom: 24px;
}

.description {
  font-size: 1.05rem;
  max-width: 860px;
  margin: 0 auto 32px auto;
  color: #374151;
}

/* ===============================
   Links tipo botón (CTA)
================================ */
a {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

.cta {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 28px;
  background-color: #1a73e8;
  color: #ffffff;
  border-radius: 6px;
  font-size: 1rem;
  transition: background 0.2s ease;
}

.cta:hover {
  background-color: #174ea6;
  text-decoration: none;
}

/* ===============================
   Listas (features)
================================ */
.dataset ul {
  margin: 16px 0 24px 24px;
}

.dataset li {
  margin-bottom: 10px;
  font-size: 1rem;
}

/* ===============================
   Contacto
================================ */
.contact {
  background-color: #eef3fb;
  border-radius: 12px;
  padding: 32px;
}

.contact p {
  margin-bottom: 8px;
}

.contact .email {
  font-size: 1.2rem;
  font-weight: 600;
  color: #174ea6;
}

/* ===============================
   Footer
================================ */
footer {
  margin-top: 60px;
  padding: 24px;
  background-color: #174ea6;
  color: #ffffff;
  text-align: center;
  font-size: 0.85rem;
}

/* ===============================
   Responsive (móvil)
================================ */
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  section {
    padding: 28px 16px;
  }

  .hero img {
    max-height: 220px;
  }
}
``
