/* Container principal */
.search-results-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Título da busca */
.search-results-title {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3498db;
    display: inline-block;
}

/* Lista de resultados */
.results-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

/* Item individual do resultado */
.result-item {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #3498db;
}

.result-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.result-title {
    color: #2c3e50;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.result-description {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.result-link {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.result-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Estilo para quando não há resultados */
.no-results {
    text-align: center;
    padding: 3rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 2rem;
}

.no-results-image {
    max-width: 200px;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.no-results-message {
    color: #7f8c8d;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.back-home {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.back-home:hover {
    background: #2980b9;
}

/* Responsividade */
@media (max-width: 768px) {
    .search-results-title {
        font-size: 1.5rem;
    }
    
    .results-list {
        grid-template-columns: 1fr;
    }
    
    .no-results-image {
        max-width: 150px;
    }
}