* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background-color: #fff;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
}

select {
    width: 100%;
    padding: 9px;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
}
input:focus, select:focus {
    outline: 1px solid #ff7915;
}

input[type="checkbox"] {
    all: unset;
    display: inline-block;
    border: 1px solid #ccc;
    color: #fff;
    border-radius: 3px;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    vertical-align: middle;
}


input[type="checkbox"]:checked {
    background-color: #ff7915; 
    border: 1px solid #ff7915;
    color: #fff;
}

button {
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

li {
    padding: 5px;
    font-size: 1rem;
}

.invisible {
    display: none;
}


/* HEADER */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 2rem;
    border-bottom: 1px solid #e8e8e8;
}
.headerSection {
    width: 1200px;
    display: flex;
    align-items: center;
    justify-content: initial;
}
.header p {
    font-size:  2rem;
    margin-left: 2rem;
    font-weight: bold;
    color: #333333;
}

/* MAIN SECTION */

.main {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 60% 1fr;
    padding: 2rem 0;
    width: 100%;
    max-width: 1200px;
}
/* HERO SECTION */
.heroContainer {
    background-image: url("./assets/newHeroImage.svg");
    aspect-ratio: 1/1;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}
.heroContainer div {
    text-align: center;
}
.heroContainer h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #333333;

}
.heroContainer p {
    font-size: 1rem;
    font-weight: 300;
    color: #464646;
}

/* FORM SECTION */

.formContainer {
    flex: 1;
    padding: 0 2rem;
}
.formContainer h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* SEARCH FORM */
.searchForm {
    width: 100%;
    margin-bottom: 2.5rem;
}
.searchForm input {
    width: 69%;
    height: 2.5rem;
}
.searchForm button {
    background-color: #ff7915;
    height: 2.5rem;
    color: #fff;
    transition: filter 0.2s;
}

.searchForm button:hover {
    filter: brightness(0.9);
}

/* FILTER FORM */
.filterForm {
    width: 100%;
}
.filterForm p {
    font-size: 1rem;
    margin: 1.5rem 0;
    font-weight: 600;
}
.filterGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
    row-gap: 1rem;

}
.filterItem {
    width: 100%;
}
.filterItem label{
    display: block;
    font-size: 0.75rem;
    margin: 0 0 0.25rem 1rem;
}
.filterItem .checkboxLabel {
    margin: 0 0 0.25rem 0;
}

.filterItem select {
    width: 100%;
    flex: 1;
}

.submitButtonsContainer {
    margin-top: 2rem;
}
.submitButtonsContainer button {
    height: 2.5rem;
    transition: all 0.2s;
    margin-right: 0.75rem;
}

.submitButtonsContainer .submtiFilterButton {
    color: #fff;
    background-color: #ff7915;
}
.submitButtonsContainer .submtiFilterButton:hover {
    filter: brightness(0.9);
}
.submitButtonsContainer .clearFilterButton {
    background-color: transparent;
    color: #333333;
    border: 1px solid #c6c6c6;
}
.submitButtonsContainer .clearFilterButton:hover {
    color: #ff7915;
    border: 1px solid #ff7915;
}

/* RESULTS CONTAINER */

.resultsContainer {
    overflow: auto;
}

.accordion {
    background-color: #ff9747;
    color: #fff;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border-bottom: 1px solid #e8e8e8;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.2s;
    border-radius: unset;
}
.active, .accordion:hover {
    filter: brightness(0.9);
  }
  
  .accordion:after {
    content: '\002B';
    color: #fff;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }
  
  .active:after {
    content: "\2212";
  }
  
  .panel {
    overflow: auto;
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    transition: max-height 0.2s ease-out;
  }

  /* INFO WARNING */

.infoWarning {
    margin-top: 2rem;
    width: 100%;
    border-radius: 8px;
    display: flex;
    background-color: #fff9cd;
}

.infoWarning img {
    margin: 0 1.25rem;
}

.infoWarning p {
    line-height: 1.25rem;
    font-weight: 400;
    font-size: 13px;
    padding: 0.25rem;
}

.imagesSection {
    display: flex;
}


/*####################### CÓDIGO ANTIGO ###################################*/


.container {
    margin: 0 auto;
    padding: 10px;
}

h1 {
    font-size: 24px;
    margin-top: 5px;
}

p {
    font-size: 16px;
}

.project-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.project-info-item {
    flex-basis: 45%;
    padding: 1px;
    margin: 5px;
    border-bottom: #f9f9f9;
}

.image-container {
    margin-top: 20px;
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
}

/* Adicione o seguinte código dentro da seção <style> no cabeçalho do seu documento HTML */

/* Estilo para a barra de pesquisa */
#search-input {
    padding: 10px;
    width: 200px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 10px;
}

/* Adicione o seguinte código CSS no cabeçalho do seu documento HTML, na seção <style> */

/* Estilo para a div que contém os filtros lado a lado */
.filters-container {
    display: flex;
    flex-wrap: wrap;
}

/* Estilo para cada filtro individual */
.filter-item {
    flex-basis: calc(33.33% - 10px);
    /* Isso divide os filtros em 3 colunas */
    margin-right: 10px;
    margin-bottom: 15px;
}

