* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 12px;
}

/* Cor do fundo */
::-webkit-scrollbar-track {
  background-color: #ffffff;
}

/* Cor da thumb */
::-webkit-scrollbar-thumb {
  background-color: #35537a;
}

a {
  text-decoration: none !important;
}

ul {
  margin-bottom: 0;
  list-style-type: none;
}

.title {
  font-size: 3.25rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 1rem;
}

.paragraph {
  font-weight: 400;
  font-size: 1.2rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-height: 100%;
  gap: 0.8rem;
  max-width: 600px;
  width: 100%;
}
.gallery img {
  border-radius: 0.4rem;
  max-width: 300px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.gallery img:first-child {
  grid-column: 1/3;
  width: 100%;
  max-width: unset;
}

.social-icons {
  display: flex;
  padding-left: 0;
  justify-content: space-between;
  max-width: 400px;
}
.social-icons li img {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
}

.btn {
  font-weight: 500;
}

.btn-light {
  width: 125px;
  height: 40px;
}

@media screen and (max-width: 1024px) {
  .title {
    text-align: left;
  }
  .gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: unset;
  }
  .gallery img {
    max-width: unset;
    min-width: 100px;
  }
}
header {
  position: fixed;
  display: flex;
  width: 100%;
  background-color: #f7c569;
  transition: 0.6s all;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  z-index: 1;
}
header section .logo {
  font-size: 18px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
header section .logo a img {
  max-width: 250px;
  width: 100%;
}
header section nav ul {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 10px;
}
header section nav ul li .btn {
  color: #f7c569;
  background: #35537a;
}
header section nav ul li .btn:hover {
  color: #35537a;
  background: #ebebeb;
}
header section nav ul li a {
  color: #718eca;
  width: 100%;
  padding: 0.6rem 1rem;
  border-radius: 4px;
  font-weight: 500;
}
header section nav ul li a:hover {
  background: #ebebeb;
  color: #35537a;
  transition: all 0.4s;
}
header section .btn-mobile {
  display: none;
}
header section .menu-mobile {
  display: none;
}
header.in-banner {
  background-color: transparent;
  box-shadow: none;
}
header.in-banner section .logo {
  color: #ffffff;
}
header.in-banner section nav ul li .btn {
  color: #35537a;
  background: #ffffff;
}
header.in-banner section nav ul li a {
  color: #ffffff;
}
header.in-banner section nav ul li a:hover {
  background: #ebebeb;
  color: #35537a;
}

@media screen and (max-width: 1024px) {
  header section nav {
    display: none;
  }
  header section .btn-mobile {
    display: block;
    cursor: pointer;
    padding: 1rem;
    border-radius: 50%;
    transition: all 0.6s;
  }
  header section .btn-mobile:hover {
    background-color: rgba(255, 255, 255, 0.25);
  }
  header section .btn-mobile svg {
    fill: #ffffff;
  }
  header section .menu-mobile {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 1;
    justify-content: flex-end;
  }
  header section .menu-mobile.active {
    display: flex;
  }
  header section .menu-mobile > ul {
    background-color: #f7c569;
    width: 100%;
    max-width: 320px;
    padding-left: 0;
  }
  header section .menu-mobile > ul > li {
    padding: 0 1rem;
  }
  header section .menu-mobile > ul > li:first-child {
    margin-top: 1rem;
  }
  header section .menu-mobile > ul > li a {
    color: #040d21;
  }
  header section .menu-mobile > ul .social-icons {
    padding: 0 1rem;
  }
}
.about {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("./../img/dogs-cats.jpg");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #ebebeb;
}

@media screen and (max-width: 1024px) {
  .about-content h1 {
    text-align: center;
  }
}
.history {
  background: #718eca;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.history-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
}
.history-content-text {
  flex: 1;
}

@media screen and (max-width: 1024px) {
  .history {
    padding: 3.5rem 0;
  }
  .history-content {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.cats {
  background-color: #f7c569;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.cats-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
}
.cats-content > div:not(.gallery) {
  flex: 1;
}

@media screen and (max-width: 1024px) {
  .cats {
    padding: 3.5rem 0;
  }
  .cats-content {
    flex-direction: column-reverse;
    gap: 1.5rem;
  }
}
.dogs {
  background-color: #ab927d;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.dogs-content {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
}
.dogs-content > div:not(.gallery) {
  flex: 1;
}

@media screen and (max-width: 1024px) {
  .dogs {
    padding: 3.5rem 0;
  }
  .dogs-content {
    flex-direction: column-reverse;
    gap: 1.5rem;
  }
  .dogs-content .gallery img:nth-child(2) {
    object-position: 0 40%;
  }
}
.adoption {
  background-color: #f7c569;
  min-height: 100vh;
  display: flex;
  padding: 40px 0;
}
.adoption-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.adoption-content ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-left: 0;
}
.adoption-content ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.adoption-content ul li div span {
  font-size: 20px;
  font-weight: 600;
}
.adoption-content ul li div p {
  font-size: 16px;
  font-weight: 500;
}

@media screen and (max-width: 1024px) {
  .adoption {
    padding: 3.5rem 0;
  }
  .adoption-content h2 {
    text-align: center;
  }
}
@media screen and (max-width: 468px) {
  .adoption-content ul li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.contact {
  background: #718eca;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.contact-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5rem;
  flex-wrap: wrap;
}
.contact-content-text {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.contact-content-list {
  flex: 1.5;
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding-left: 2rem;
}
.contact-content-list .contact-item span {
  font-size: 32px;
  font-weight: 500;
  text-transform: capitalize;
}
.contact-content-list .contact-item ul {
  font-weight: 500;
  padding-left: 0;
}
.contact-content-list .contact-item ul li {
  text-transform: capitalize;
  margin-bottom: 1rem;
}
.contact-content-list .contact-item ul li:first-child {
  margin-top: 1rem;
}
.contact-content-list .contact-item ul li a {
  color: #040d21;
}

@media screen and (max-width: 768px) {
  .contact {
    padding: 3.5rem 0;
  }
  .contact-content {
    flex-direction: column;
    gap: 2rem;
  }
  .contact-content-list {
    padding-left: 0;
    justify-content: flex-start;
  }
}
footer {
  padding: 2rem 0;
}
footer span {
  font-weight: 500;
}

@media screen and (max-width: 1024px) {
  footer {
    text-align: center;
  }
}

/*# sourceMappingURL=style.css.map */
