@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  outline: none;
  font-family: "roboto", sans-serif;
}
:root {
  --orange: #f78b00;
  --blue: #00285f;
  --white: #ededed;
}
html,
body {
  width: 100%;
  overflow-x: hidden;
}
body {
  background-size: cover;
  background-image: url(img/capa2.avif);
  background-repeat: no-repeat;
  border-radius: 8px;
}
#container {
  max-width: 1500px;
  min-width: 300px;
  margin: 0 auto;
}
header {
  text-align: center;
}
header h1 {
  font-size: 30px;
}
nav {
  font-size: 30px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", sans-serif;
  text-align: center;
  border-style: none;
  border-radius: 8px;
  border-color: #c6c5d3;
  background-position: center;
  max-width: 100%;
}

nav ul {
  list-style-type: none;
}

nav ul li {
  color: #ecedea;
  display: inline-block;
}

nav ul li a {
  text-decoration: none;
  display: block;
  color: #ffffff;
  padding: 15px;
  font-family: "caprasimo", cursive;
}
nav ul li a:hover {
  background-color: rgb(255, 255, 255);
  color: rgba(175, 34, 116, 0.856);
  transition: background, color 0.6s;
  border-radius: 10px;
}
h1 {
  font-size: 50px;
  color: yellow;
  text-align: center;
  font-family: "caprasimo", cursive;
}
h2 {
  color: #2696aa;
  font-size: 50px;
  text-align: center;
  font-family: "caprasimo", cursive;
}
h3 {
  font-size: 40px;
  color: #00285f;
}
h4 {
  color: #2696aa;
  font-size: 25px;
}
main {
  font-size: 20px;
  padding: 1rem;
}

#sobre-nos {
  background-image: url(img/dogcat.jpg);
  background-repeat: no-repeat;
  background-size: 400px;
  background-color: #ffffff;
  background-position: right;
  border-style: none;
  border-radius: 8px;
}
p {
  font-family: "caprasimo", cursive;
}
.content {
  max-width: 1500px;
  min-width: 300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 10px;
}

/*catalog*/
#catalog {
  background-image: url(zapzap/liu3.jpeg);
}
section .catalog {
  width: 100vw;
  padding: 100px;
}
/*seçao de pesquisa/*

/*section .filter-card {
  width: 980px;
  height: 150px;
  background-color: var(--white);
  border-radius: 8px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.search-input {
  width: 700px;
  height: 50px;
  border: none;
  border-radius: 4px 0px 0px 4px;
  text-indent: 10px;
}
.search-button {
  width: 150px;
  height: 50px;
  border-radius: 0px 4px 4px 0px;
  border: none;
  background-color: #2724a7;
  color: #ededed;
  cursor: pointer;
  font-size: 1.2em;
  transition: 0.2s ease;
}
.search-button:hover {
  background-color: orange;
  color: rgb(255, 255, 255);
}
*/
.title-wrapper-catalog {
  text-align: center;
  margin-top: 200px;
  padding-bottom: 20px;
  font-size: large;
  color: white;
}

section .card-wrapper {
  max-width: 1500px;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  grid-gap: 30px;
  padding-top: 50px;
}

section .card-item {
  height: 500px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.card-content {
  height: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.card-item img {
  width: 85%;
}
.card-item h3 {
  color: #ededed;
}
.card-item h4 {
  width: 90%;
}
.card-item p {
  width: 90%;
  font-style: italic;
  color: #f78b00;
}
.card-item button {
  width: 90%;
  padding: 15px 0px;
  border: none;
  background: rgb(150, 58, 179);
  border-radius: 4px;
  color: yellow;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  transition: 0.3s ease;
  margin-bottom: 10px;
}
.card-item button:hover {
  background: green;
  color: rgb(255, 255, 255);
}
/* FOOTER */
footer {
  width: 100%;
  height: 250px;
  font-size: 25px;
}
footer .main {
  width: 100%;
  height: 200px;
  background-image: url(img/footer.jpg);
  background-size: cover;
  padding: 20px 10px;
}
.footer-links {
  max-width: 1000px;
  min-width: 300px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 20px;
}
.footer-company,
.footer-rental,
.footer-contact,
.footer-social {
  color: black;
  height: 100%;
  min-height: 100px;
}
.footer-links h5 {
  margin-bottom: 10px;
}
.footer-links {
  margin-bottom: 8px;
}
.main .footer-social img {
  width: 32px;
  height: 32px;
}
footer .last {
  width: 100%;
  height: 50px;
  background-color: rgb(0, 0, 0);
  color: #114388;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
/* RESPONSIVE ADJUSTEMENTS */
@media (max-width: 576px) {
}
footer {
  height: 100%;
}
footer .main {
  height: 100%;
}
.footer-links {
  flex-direction: column;
  padding-left: 5%;
}
