/* ========================= */
/* CONTENEDOR GLOBAL */
/* ========================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================= */
/* SECCIONES */
/* ========================= */
.section {
  padding: 100px 0;
  position: relative;
}

.section.alt {
  background: var(--bg-alt);
}

/* ========================= */
/* HERO (INICIO) */
/* ========================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero .container {
  max-width: 800px;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero p {
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* ========================= */
/* GRID SYSTEM */
/* ========================= */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ========================= */
/* FLEX HELPERS */
/* ========================= */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ========================= */
/* CARDS BASE (estructura) */
/* ========================= */
.card {
  padding: 25px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.02);
  transition: var(--transition);
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
}

/* ========================= */
/* FORMULARIOS */
/* ========================= */
.form {
  max-width: 500px;
  margin-top: 20px;
}

/* ========================= */
/* ESPACIADOS */
/* ========================= */
.section h2 {
  margin-bottom: 40px;
  text-align: center;
}

/* ========================= */
/* UTILIDADES VISUALES */
/* ========================= */
.center {
  text-align: center;
}

.full-height {
  min-height: 100vh;
}