@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*,
*::after,
*::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --color-primario: #FF629B;
    --color-secundario: #17202E;
    --color-fondo: #FAFAF7;
    --color-fondo-configuración: #333C49;
    --color-texto: #FAFAF7 #17202E;
    --fuente-textos: "Handlee", cursive;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0 auto;
    padding-top: 50px; /* Espacio para que la barra fija no tape el contenido */
    color: #17202E;
    display: flex;
    justify-content: center;
}

img {
    max-width: 100%;
}
header {
    background-color: #FAFAF7;
     padding: 20px 20px 20px 20px;
    margin:0;
}
main {
    background-color: #FAFAF7;
    padding: 20px 20px 20px 20px;
} /* --- CONFIGURACIÓN GENERAL --- */
/* Contenedor principal estilo celular móvil */
.main-container {
  width: 100%;
  max-width: 400px;
  padding: 20px;
  box-sizing: border-box;
}

/* --- BARRA SUPERIOR FIJA --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
  z-index: 1000;
}

/* Ocultar el checkbox */
.menu-check {
  display: none;
}

/* Icono de 3 líneas oscuras */
.menu-toggle {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  z-index: 1001;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: #333333; /* Líneas oscuras */
  transition: 0.3s;
}

/* --- MENÚ DESPLEGABLE DESDE LA IZQUIERDA --- */
.nav-menu {
  position: fixed;
  top: 60px;
  left: -260px; /* Oculto fuera de la pantalla */
  width: 250px;
  height: calc(100vh - 60px);
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 10px rgba(0,0,0,0.1);
  transition: left 0.3s ease-in-out;
}

.nav-menu a {
  color: #333;
  padding: 15px 20px;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  font-weight: 500;
}

/* Activar el despliegue al presionar las líneas */
.menu-check:checked ~ .nav-menu {
  left: 0;
}

/* --- ESTILOS DEL CONTENIDO DE LA PÁGINA --- */

/* Logo y encabezado */
.logo-container {
  text-align: center;
  margin-bottom: 25px;
}

.logo-placeholder {
  font-size: 32px;
  font-weight: bold;
  color: #e5e5e5;
  text-shadow: 1px 1px 0 #333;
}

.subtitulo {
  font-size: 14px;
  margin: 5px 0 0 0;
  font-weight: 500;
}

/* Caja de bienvenida con borde redondeado fino */
.intro-caja {
  border: 1px solid #333333;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 25px;
  background-color: #ffffff;
}

.welcome-box h2 {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 8px;
}

.welcome-box p {
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
  color: #444;
}

/* --- BOTONES PRINCIPALES ROSADOS --- */
.button-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.caja-rosa {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 20px; /* Bordes muy redondeados como el TP */
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  color: #1a1a1a;
  box-sizing: border-box;
  transition: background-color 0.2s, transform 0.1s;
}

.caja-rosa {
  background-color: #FF629B; /* Color rosado del TP */
}

/* Efectos interactivos para los botones rosados */
.caja-rosa:hover {
  background-color: #df5688;
}

.caja-rosa:active {
  transform: scale(0.98);
}

.caja-rosa .icon {
  font-size: 20px;
  margin-right: 15px;
  display: inline-block;
  width: 24px;
  text-align: center;
}

.categories-section h3 {
  font-size: 14px;
  color: #17202E;
  margin-bottom: 10px;
  font-weight: 600;
}

.categories-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 25px;
}

.btn-tag {
  background-color: #17202E; /* Color azul oscuro de las etiquetas */
  color: #ffffff;
  padding: 10px 16px;
  border: none;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  flex: 1;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}

/* Efectos interactivos para los botones oscuros */
.btn-tag:hover {
  background-color: #233245;
}

.btn-tag:active {
  transform: scale(0.95);
}
footer{
  font-size: 13px;
  line-height: 1.4;
  color: #17202E;
  font-weight: 500;
}