/* ======================================= */
/* CSS PARA PÁGINAS DE ACTIVIDADES        */
/* ======================================= */

/* Variables y globales (Copiadas de main.css) */
:root {
  --fondo: #ffffff;
  --texto-principal: #1f2937;
  --tarjeta: #f9fafb;
  --texto-tarjeta: #1f2937;
  --primario: #000;
  --texto-primario: #ffffff;
  --secundario: #f3f4f6;
  --texto-secundario: #6b7280;
  --silenciado: #f9fafb;
  --texto-silenciado: #6b7280;
  --acento: #e5e7eb;
  --texto-acento: #1f2937;
  --borde: #e5e7eb;
  --entrada: #f9fafb;
  --anillo: #000000;
  --radio: 0.5rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
}

body {
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  color: var(--texto-principal);
  background-color: var(--fondo);
}

.fondo-blanco {
  background: var(--fondo);
}

/* Estilos de Botones (Copiados de main.css) */
.boton {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: .5rem 2rem;
  border: none;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.boton-negro {
  background-color: var(--primario);
  color: var(--texto-primario);
}

.boton-negro:hover {
  background-color: #000000e7;
  transform: translateY(-2px);
}

/* Estilos de Sección (Copiados de main.css) */
.seccion {
  padding: 6rem 2rem;
}

.contenedor {
  max-width: 1000px;
  margin: 0 auto;
}

/* ======================================= */
/* ESTILOS ESPECÍFICOS DE PÁGINAS         */
/* ======================================= */

/* Navbar simple para páginas */
.barra-navegacion {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--primario);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 2rem;
}

.contenedor-navbar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contenedor-navbar .navbar-brand {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--texto-primario);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.boton-volver {
  color: var(--texto-primario);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s ease;
}

.boton-volver:hover {
  color: var(--texto-silenciado);
}

/* Hero de páginas individuales */
.hero-pagina {
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  /* El clip-path para la diagonal */
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.contenido-hero-pagina h1 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.contenido-hero-pagina p {
  font-size: 1.25rem;
  font-weight: 300;
  opacity: 0.9;
}

/* Grid de contenido para páginas */
.cuadricula-contenido {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.contenido h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.contenido p {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--texto-silenciado);
}

.tarjeta-informacion {
  background: var(--tarjeta);
  padding: 2rem; /* Añadido padding que faltaba */
  border-radius: var(--radio);
  height: fit-content;
  border: 1px solid var(--borde); /* Borde sutil */
}

.tarjeta-informacion h3 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.lista-informacion {
  list-style: none;
}

.lista-informacion li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--borde);
  font-weight: 300;
}

.lista-informacion li:last-child {
  border-bottom: none;
}

/* Responsivo */
@media (max-width: 768px) {
  .cuadricula-contenido {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contenido-hero-pagina h1 {
    font-size: 2.5rem;
  }
}