/* =========================
   ESTILOS BASE
========================= */
:root {
  --primary1: #ff7a18;
  --primary2: #ffb800;
  --accent1: #6366f1;
  --accent2: #8b5cf6;

  --bg: #f1f3f9;
  --text: #1c1e29;
  --muted: #6b6f80;

  --radius: 22px;
  --shadow: 0 15px 45px rgba(0,0,0,0.12);
  --shadow-soft: 0 10px 25px rgba(0,0,0,0.07);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* =========================
   CONTENEDOR GLOBAL
========================= */
.wrapper {
  max-width: 1150px;
  padding: 2rem 1.5rem 5rem;
  margin: auto;
  text-align: center;
}

/* =========================
   HEADER
========================= */
.header {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.logo {
  font-size: 2.2rem;
  font-weight: 700;
}

.logo span {
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  -webkit-background-clip: text;
  color: transparent;
}

/* =========================
   SECCIONES
========================= */
.section {
  margin-top: 5rem;
}

.section h2 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

/* =========================
   HERO
========================= */
.hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary1), var(--primary2));
  -webkit-background-clip: text;
  color: transparent;
}

.subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 700px;
  margin: 1rem auto 2.5rem;
}

/* BOTÓN */
.cta-btn {
  display: inline-block;
  padding: 1rem 3rem;
  background: linear-gradient(135deg, var(--primary1), var(--primary2));
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: var(--shadow);
  transition: 0.2s ease;
}

.cta-btn:hover {
  transform: translateY(-4px);
  opacity: 0.9;
}

/* MOCKUP */
.mockup {
  width: 360px;
  height: 620px;
  border-radius: 30px;
  margin: 3rem auto 0;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  box-shadow: var(--shadow);
  opacity: 0.85;
}

/* =========================
   TARJETAS / GRIDS
========================= */
.grid-3, .grid-4 {
  display: grid;
  gap: 2.5rem;
  margin-top: 2rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

/* TARJETAS */
.card {
  background: white;
  padding: 2rem 1.7rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

/* ICONOS CIRCULARES */
.icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

/* TARJETAS PEQUEÑAS */
.card.small .icon {
  width: 55px;
  height: 55px;
  font-size: 1.7rem;
}

.card h3, .card h4 {
  margin-bottom: 0.6rem;
  font-weight: 600;
}

/* =========================
   TAGS (chips)
========================= */
.tag {
  background: white;
  padding: 1rem 1.4rem;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  font-weight: 600;
  font-size: 1.1rem;
  transition: 0.2s ease;
}

.tag:hover {
  transform: scale(1.05);
}

/* =========================
   CTA FINAL
========================= */
.final-cta h2 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1.2rem;
  color: var(--muted);
}

/* =========================
   FOOTER
========================= */
.footer {
  margin-top: 4rem;
  font-size: 1rem;
  color: var(--muted);
}