/* ============================================
   HOME PAGE - ESTILOS ESPECÍFICOS
   ============================================ */

/* Busca */
.home-search {
    background: linear-gradient(135deg, #5B3E86, #1C2541);
    padding: 30px 20px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.search-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.search-field {
    flex: 1 1 180px;
    min-width: 150px;
}

.search-field select,
.search-field input[type="search"] {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 50px;
    background: rgba(255,255,255,0.95);
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
}

.search-field select:focus,
.search-field input[type="search"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px #D4AF37;
}

.search-field.search-term {
    flex: 2 1 250px;
}

.search-submit button {
    width: 100%;
    padding: 12px 30px;
    background: #D4AF37;
    color: #1C2541;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-submit button:hover {
    background: #E8C84A;
    transform: scale(1.02);
}

/* Layout com sidebars */
.content-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.sidebar-left {
    flex: 0 0 240px;
}

.content-main {
    flex: 1;
}

.sidebar-right {
    flex: 0 0 280px;
}

/* Responsividade */
@media (max-width: 1024px) {
    .sidebar-left,
    .sidebar-right {
        flex: 0 0 200px;
    }
}

@media (max-width: 768px) {
    .search-fields {
        flex-direction: column;
    }
    .search-field {
        flex: 1 1 100%;
        width: 100%;
    }
    .content-wrapper {
        flex-direction: column;
    }
    .sidebar-left,
    .sidebar-right {
        flex: 1 1 auto;
        width: 100%;
        position: static;
    }
}

@media (max-width: 480px) {
    .home-search {
        padding: 20px 15px;
    }
}