/* Variables globales */
:root {
  --pink: #e78fb3;
  --pink-dark: #d96a98;
  --bg: #ffffff;
  --card: #ffffff;
  --text: #1e1e1e;
  --muted: #6b6b6b;
  --line: #ececec;
  --blue-soft: #b7e3e4;
  --bluee: #11607b;
  --tip: #deb5f7;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 22px;
}

/* Reset general */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Estilo base */
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* Contenedor principal */
.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* Contenido principal */
main {
  padding: 2rem 0;
}

/* Header */
header {
  background: var(--pink);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
}

/* Navegación */
.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: white;
  letter-spacing: .5px;
}

/* Menú */
.menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

/* Enlaces del menú */
.menu a {
  color: white;
  font-weight: 600;
  font-size: 1.05rem;
}

/* Línea hover */
.menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: white;
  transition: .25s ease;
}

/* Hover menú */
.menu a:hover::after {
  width: 100%;
}

/* Botón */
.btn {
  display: inline-block;
  background: var(--pink);
  color: white;
  padding: .9rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: .25s ease;
}

/* Hover botón */
.btn:hover {
  background: var(--pink-dark);
}

/* Tarjeta tipo tip */
.tip {
  background: var(--tip);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow);
}

/* Título tip */
.tip h2 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: .45rem;
}

/* Texto tip */
.tip p {
  color: var(--muted);
  line-height: 1.6;
}

/* Lista de botones */
.pill-list {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

/* Botones pill */
.pill {
  background: rgba(255,255,255,.55);
  border: none;
  padding: .85rem 1rem;
  border-radius: 999px;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  transition: .25s ease;
}

/* Hover pill */
.pill:hover {
  background: white;
}

/* Footer */
.footer {
  background: var(--pink);
  color: white;
  margin-top: 1rem;
}

/* Footer inferior */
.footer-bottom {
  text-align: center;
  padding: 1rem 0;
}

/* Texto footer */
.footer-bottom p {
  font-size: .9rem;
  color: rgba(255,255,255,.85);
}

/* Responsive */
@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    justify-content: center;
    gap: .5rem;
    height: auto;
    padding: 1rem 0;
  }

  .menu {
    gap: 1rem;
  }

  .logo,
  .logo a {
    border-bottom: none;
    color: inherit;
  }
}