/* Specific styles for participant workbook page */
.participante-hero {
    background: linear-gradient(135deg, #8a4f7d 0%, #f0b67f 100%);
}

.content-overview {
    padding: 4rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.content-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
}

.content-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.btn-link {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-link:hover {
    border-bottom: 2px solid var(--secondary-color);
}

.content-section {
    padding: 4rem 0;
}

.content-section.alt-bg {
    background-color: #f9f9f9;
}

.content-box {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.content-box h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.content-box h4 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
}

.content-box ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-box ul li {
    margin-bottom: 0.5rem;
}

.weeks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.week-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.week-card:hover {
    transform: translateY(-5px);
    background-color: var(--secondary-color);
    color: white;
}

.week-card:hover h3 {
    color: white;
}

.week-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.week-content {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 2rem 0;
    display: none;
}

.week-content.active {
    display: block;
}

.week-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.exercise {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.exercise h5 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.exercises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.exercise-category {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.exercise-category h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.exercise-category ul {
    list-style: none;
    margin-left: 0;
}

.exercise-category ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.exercise-category ul li:last-child {
    border-bottom: none;
}

.journal-prompts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.prompt-category {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.prompt-category h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.resource-category {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.resource-category h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .content-grid,
    .weeks-grid,
    .exercises-grid,
    .journal-prompts,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .week-details {
        grid-template-columns: 1fr;
    }
}
