/* ===============================
   WRAPPER
================================ */
.como-wrapper {
  background: #00aed6;
  padding: 3rem 0;
}

/* CONTENEDOR */
.como-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ===============================
   HERO
================================ */
.como-hero {
  background: #ffffff;
  padding: 4rem 2.5rem;
  border-radius: 32px;
  text-align: center;
  margin-bottom: 3rem;
}

.como-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.como-hero p {
  color: #64748b;
  max-width: 720px;
  margin: auto;
}

/* ===============================
   PASOS
================================ */
.como-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.step-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid #e5e7eb;
}

.step-number {
  display: inline-block;
  background: #00aed6;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  font-weight: bold;
  margin-bottom: 1rem;
}

.step-card h3 {
  color: #00aed6;
  margin-bottom: 0.5rem;
}

/* ===============================
   CONSEJO
================================ */
.como-tip {
  background: #fef9c3;
  border: 2px solid #fde047;
  border-radius: 16px;
  padding: 1.5rem;
  color: #92400e;
  text-align: center;
}

/* ===============================
   NAVBAR SEGURA
================================ */
header,
.navbar {
  position: relative;
  z-index: 1000;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .como-hero {
    padding: 2.5rem 1.5rem;
  }

  .como-hero h1 {
    font-size: 2rem;
  }
}