/* ============================================
   RINCÓN DEL VAGO - Estilos
   ============================================ */

.rincon-container {
    margin: 20px;
    background: #ffffff;
}

.rincon-header {
    background: linear-gradient(to bottom, #ff6600, #cc5500);
    padding: 20px;
    border-bottom: 3px solid #993300;
}

.rincon-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.rincon-logo-icon {
    font-size: 48px;
}

.rincon-logo h2 {
    font-size: 32px;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.rincon-logo p {
    font-size: 14px;
    opacity: 0.9;
    font-style: italic;
}

.rincon-nav {
    background: #f5f5f5;
    border-bottom: 2px solid #ddd;
    padding: 10px 20px;
    display: flex;
    gap: 20px;
}

.rincon-nav a {
    color: #ff6600;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    transition: color 0.2s;
}

.rincon-nav a:hover {
    color: #cc5500;
    text-decoration: underline;
}

.rincon-content {
    display: flex;
    gap: 20px;
    padding: 20px;
}

.rincon-sidebar {
    width: 250px;
    background: #f9f9f9;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.rincon-categories {
    margin-bottom: 20px;
}

.rincon-categories h3 {
    color: #ff6600;
    font-size: 16px;
    margin-bottom: 10px;
    border-bottom: 2px solid #ff6600;
    padding-bottom: 5px;
}

.category-item {
    padding: 6px 10px;
    margin-bottom: 3px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 13px;
    transition: background 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-item:hover {
    background: #ffebe0;
}

.category-item.active {
    background: #ff6600;
    color: white;
    font-weight: bold;
}

.category-count {
    font-size: 11px;
    background: rgba(0,0,0,0.1);
    padding: 2px 6px;
    border-radius: 10px;
}

.rincon-main {
    flex: 1;
}

.rincon-search {
    background: #fff8e0;
    border: 2px solid #ffcc00;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.rincon-search h3 {
    color: #cc5500;
    margin-bottom: 10px;
    font-size: 16px;
}

.search-box {
    display: flex;
    gap: 10px;
}

.search-input {
    flex: 1;
    padding: 8px 12px;
    border: 2px solid #ff6600;
    border-radius: 4px;
    font-size: 14px;
}

.search-btn {
    background: linear-gradient(to bottom, #ff6600, #cc5500);
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.search-btn:hover {
    background: linear-gradient(to bottom, #ff7700, #dd6600);
}

.rincon-documents {
    background: white;
}

.document-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.document-card:hover {
    box-shadow: 0 3px 10px rgba(255, 102, 0, 0.2);
    border-color: #ff6600;
}

.document-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.document-title {
    font-size: 18px;
    font-weight: bold;
    color: #ff6600;
    margin-bottom: 5px;
}

.document-meta {
    font-size: 12px;
    color: #999;
}

.document-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-stars-display {
    color: #ffcc00;
    font-size: 16px;
}

.document-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.document-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.tag {
    background: #f0f0f0;
    color: #666;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    border: 1px solid #ddd;
}

.document-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.document-stats {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #999;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.download-btn {
    background: linear-gradient(to bottom, #00cc00, #009900);
    color: white;
    padding: 6px 15px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s;
}

.download-btn:hover {
    background: linear-gradient(to bottom, #00dd00, #00aa00);
    transform: translateY(-1px);
}

.rincon-ad {
    background: linear-gradient(135deg, #ffe0b3, #ffd699);
    border: 2px dashed #ff6600;
    padding: 20px;
    text-align: center;
    margin: 20px 0;
    border-radius: 5px;
}

.rincon-ad p {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

.quality-badge {
    background: #00cc00;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: bold;
    margin-left: 10px;
}

.quality-badge.medium {
    background: #ffaa00;
}

.quality-badge.low {
    background: #cc0000;
}
