:root {
    --primary: #2563eb;
    --primary-light: #eff6ff;
    --accent-copper: #b17d6d;
    --text: #1e293b;
    --text-light: #64748b;
    --bg: #f8fafc;
    --card: #ffffff;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    margin: 0;
    display: flex;
    justify-content: center;
}

.container {
    width: 90%;
    max-width: 450px;
    padding: 2rem 0;
}

.main-header { text-align: center; margin-bottom: 2rem; }
h1 { font-weight: 800; font-size: 1.8rem; margin: 0; }
h1 span { color: var(--primary); }
.subtitle { color: var(--text-light); font-size: 0.9rem; }

.logo-container {
    width: 190px; /* Tamaño un poco mayor para lucir el logo */
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
    padding: 8px; /* Espacio entre el logo y el marco */
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05); /* Borde casi invisible */
    border-radius: 28px; /* Un poco más que el logo para que encaje */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); /* Sombra suave */
}

.main-logo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block; /* Evita espacios extra debajo de la imagen */
}

.card-proyecto {
    background: var(--card);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-bottom: 1.2rem;
}

.nota-legal { background: #f1f5f9; box-shadow: none; font-size: 0.75rem; color: var(--text-light); }

.feature-item { display: flex; align-items: center; gap: 12px; }
.icon-bg {
    background: var(--primary-light);
    width: 45px; height: 45px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px; font-size: 1.2rem;
}

.feature-text strong { display: block; font-size: 1.1rem; }
.feature-text p { margin: 0; font-size: 0.85rem; color: var(--text-light); }

.tech-tags-container { display: flex; flex-wrap: wrap; gap: 6px; margin: 1rem 0; }
.tech-tag {
    background: #fff7ed;
    color: var(--accent-copper);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    border: 1px solid #ffedd5;
}

.btn-main {
    display: block; background: var(--primary); color: white;
    text-align: center; padding: 12px; border-radius: 12px;
    text-decoration: none; font-weight: 700;
}

.in-progress { border: 2px dashed #cbd5e1; background: transparent; opacity: 0.7; }
.status-label { text-align: center; color: var(--primary); font-weight: 800; font-size: 0.7rem; margin-top: 1rem; }

.btn-cafe {
    background: #FFDD00; padding: 8px 16px; border-radius: 10px;
    text-decoration: none; color: black; font-weight: 600; font-size: 0.8rem;
}

@media (min-width: 800px) {
    .container { max-width: 900px; }
    .listado-proyectos { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .nota-legal { grid-column: span 2; }
}

footer { text-align: center; margin-top: 2rem; font-size: 0.8rem; color: var(--text-light); }
.btn-secondary { text-decoration: none; color: var(--text-light); font-size: 0.9rem; }