/* Specific styles for resources page */
.recursos-hero {
    background: linear-gradient(135deg, #f0b67f 0%, #6a8d73 100%);
}

.resources-intro {
    padding: 4rem 0;
}

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

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

.resource-category {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
}

.resource-category h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.resource-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.resource-list li {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.resource-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

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

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

.support-category {
    margin-bottom: 2rem;
}

.support-category h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.support-category ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.support-category li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.support-category li:before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.emergency-box {
    background-color: #f8d7da;
    border-left: 4px solid #dc3545;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.emergency-box h3 {
    color: #721c24;
    margin-bottom: 1rem;
}

.emergency-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

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

.book {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
}

.book h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.book .author {
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 1rem;
}

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

.download-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
    text-align: center;
}

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

.download-card p {
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .resource-categories,
    .support-grid,
    .books-grid,
    .download-grid {
        grid-template-columns: 1fr;
    }
}
