:root {
    --bg-dark: #1e2235; /* El azul oscuro de la imagen */
    --text-white: #ffffff;
    --accent-line: #ffffff66;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif; /* Usa una fuente limpia */
    background-color: var(--bg-dark);
    color: var(--text-white);
    -webkit-font-smoothing: antialiased;
}

/* Navbar Estilo Minimal */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 40px 60px;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: bold;
}

.logo span {
    font-weight: normal;
    margin-left: 10px;
    opacity: 0.7;
}

/* Sección Hero (El centro de la imagen) */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.hero-content h1 {
    font-size: 4rem;
    margin: 0;
    font-weight: 600;
}

hr {
    border: 0;
    border-top: 1px solid var(--accent-line);
    margin: 40px 0;
}

.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-bottom p {
    max-width: 500px;
    font-size: 12px;
    letter-spacing: 1.5px;
    line-height: 1.6;
    text-transform: uppercase;
}

/* Botón con borde */
.btn-get-started {
    border: 1px solid white;
    padding: 15px 30px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    transition: 0.3s;
}

.btn-get-started:hover {
    background: white;
    color: var(--bg-dark);
}

:root {
  --bg-dark: #3f2786;
  --week1-color: #4391a7;
  --week2-color: #2e6c3c;
  --week3-color: #834180;
  --week4-color: #a57a49;
}

/* Estilos de la Cuadrícula */
.weeks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Dos columnas */
  min-height: 100vh;
}

.week-card {
  text-decoration: none;
  color: white;
  padding: 60px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.week-card:hover {
  filter: brightness(1.1);
}

.card-content h3 { font-size: 2.5rem; margin: 0; }
.card-content hr { border: 1px solid white; margin: 20px 0; width: 100%; }
.card-content p { font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; }

/* Colores de las tarjetas */
.week1 { background-color: var(--week1-color); }
.week2 { background-color: var(--week2-color); }
.week3 { background-color: var(--week3-color); }
.week4 { background-color: var(--week4-color); }

/* Sidebar (Menú oculto) */
.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidebar a {
  padding: 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidebar a:hover { color: #f1f1f1; }
.sidebar .closebtn { position: absolute; top: 0; right: 25px; font-size: 36px; }
/* Corrección del Puntero */
.menu-button {
  cursor: pointer; /* Esto hace que aparezca la manita */
  letter-spacing: 2px;
  font-weight: bold;
}

/* El Menú Overlay (Fondo oscuro) */
.overlay {
  height: 100%;
  width: 0; /* Empieza oculto */
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  background-color: rgba(30, 34, 53, 0.95); /* Azul oscuro semitransparente */
  overflow-y: hidden;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Contenedor de los enlaces */
.overlay-content {
  width: 80%;
  max-width: 400px;
  text-align: center;
}

/* Estilo de los enlaces del menú */
.overlay-content a {
  padding: 20px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 3px;
  color: white;
  display: block;
  transition: 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Línea divisoria fina */
}

.overlay-content a:last-child {
  border-bottom: none; /* Quita la línea al último elemento */
}

.overlay-content a:hover {
  letter-spacing: 5px; /* Efecto sutil al pasar el mouse */
  color: #7abccf;
}

/* Botón de cerrar */
.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  cursor: pointer;
}

/* Estilo específico para el Hero de las semanas */
.hero-week {
  height: 60vh; /* Un poco más corto que la home */
  display: flex;
  align-items: center;
  padding: 0 8%;
  color: white;
}

.hero-subtitle {
  max-width: 900px;
  font-size: 12px;
  letter-spacing: 2px;
  line-height: 2;
  text-transform: uppercase;
  margin-top: 30px;
}

/* Colores de fondo por semana (según tus imágenes) */
.week01-bg { background-color: #4b8561; } /* Morado */
.week02-bg { background-color: #2c365a; } /* Azul oscuro */

/* Contenido de documentación (debajo del hero) */
.main-content {
  background-color: #1e2235; /* El fondo oscuro de base */
  padding: 80px 10%;
  color: white;
  min-height: 40vh;
}

.doc-section h2 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: normal;
}

.doc-section ul {
  list-style: none;
  padding-left: 20px;
}

.doc-section ul li::before {
  content: "•";
  color: white;
  display: inline-block; 
  width: 1em;
  margin-left: -1em;
}

img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border: 1px solid rgba(255,255,255,0.1);
}