@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght=300..700&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Fredoka', sans-serif;
    background-color: #1a1a1a; 
    color: #e2e8f0;
    margin: 0;
    padding: 0;
}

.pantalla-global {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 25px;
}

.columna-izquierda {
    width: 240px;
    flex-shrink: 0; 
}

.columna-derecha {
    flex-grow: 1;
}

.perfil-box {
    background-color: #262626;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid #3d3d3d;
}

.avatar-perfil {
    width: 100px;
    height: 100px;
    border-radius: 50%; 
    object-fit: cover;
    border: 3px solid #c5a880; 
}

.perfil-box h3 {
    margin: 10px 0 0 0;
    color: #c5a880;
}

.reproductor-lateral {
    background-color: #262626;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #3d3d3d;
}

.titulo-menu {
    font-size: 12px;
    text-transform: uppercase;
    color: #8c8c8c;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.bloque-notion {
    background-color: #222222;
    border-radius: 12px;
    border: 1px solid #333333;
    margin-bottom: 30px;
    overflow: hidden;
}

.barra-titulo {
    background-color: #443728; 
    color: #c5a880;            
    padding: 10px 15px;
    font-weight: bold;
    font-size: 14px;
}

.contenido-interno {
    padding: 20px;
}

.cuadricula-tarjetas {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); 
    gap: 15px;
    padding: 20px;
}

.tarjeta-galeria {
    background-color: #2a2a2a;
    border-radius: 8px;
    border: 1px solid #3d3d3d;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s;
}

.tarjeta-galeria img {
    width: 100%;
    height: 110px;
    object-fit: cover;
}

.tarjeta-info {
    padding: 10px;
}

.tarjeta-info h4 {
    margin: 0;
    color: #e2e8f0;
    font-size: 14px;
}

.tarjeta-info p {
    margin: 5px 0 0 0;
    font-size: 11px;
    color: #8c8c8c;
}

.tarjeta-galeria:hover {
    transform: translateY(-4px);
    border-color: #c5a880;
}

.banner-superior {
    text-align: center;
    padding: 30px 20px 10px 20px;
    background-color: #1f1f1f;
    border-bottom: 1px solid #333;
}

.sticker-cute {
    width: 60px;
    height: auto;
    margin: 0 10px;
}

textarea {
    width: 100%;
    height: 80px;
    padding: 10px;
    background-color: #2a2a2a;
    color: white;
    border: 1px solid #3d3d3d;
    border-radius: 8px;
    resize: none;
    box-sizing: border-box;
    margin-bottom: 10px;
}

button {
    background-color: #443728;
    color: #c5a880;
    border: 1px solid #c5a880;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #c5a880;
    color: #443728;
}

.buscador-tareas-container {
    display: flex; 
    gap: 10px; 
    margin-bottom: 20px;
}

.input-tarea {
    flex-grow: 1; 
    padding: 10px; 
    background-color: #2a2a2a; 
    color: white; 
    border: 1px solid #3d3d3d; 
    border-radius: 8px; 
    font-family: 'Fredoka', sans-serif;
}

.subtitulo-tareas {
    font-size: 14px;
    color: #8c8c8c;
    margin-bottom: 15px;
}

.lista-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tarea-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    color: #e2e8f0;
    user-select: none;
    position: relative;
    padding-left: 30px;
}

.tarea-item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-custom {
    position: absolute;
    top: 1px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #2a2a2a;
    border: 2px solid #3d3d3d;
    border-radius: 4px;
    transition: all 0.2s;
}

.tarea-item:hover input ~ .checkbox-custom {
    border-color: #c5a880;
}

.tarea-item input:checked ~ .checkbox-custom {
    background-color: #443728;
    border-color: #c5a880;
}

.checkbox-custom:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #c5a880;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.tarea-item input:checked ~ .checkbox-custom:after {
    display: block;
}

.tarea-item input:checked ~ .texto-tarea {
    text-decoration: line-through;
    color: #8c8c8c;
    transition: all 0.2s;
}

.texto-tarea {
    display: inline-block;
    line-height: 20px;
}

#contenedor-fotos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

#contenedor-fotos img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    border: 1px solid #3d3d3d;
}