@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  color: inherit;
}

.h1 {
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-size: 3rem !important;
  line-height: 120%;
}
@media screen and (max-width: 960px) {
  .h1 {
    font-family: "Poppins", sans-serif;
    font-size: 2rem !important;
    line-height: 120%;
  }
}

.h2 {
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem !important;
  line-height: 3.75rem;
}
@media screen and (max-width: 960px) {
  .h2 {
    font-family: "Poppins", sans-serif;
  }
}

.h3 {
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem !important;
  line-height: 2rem;
}
@media screen and (max-width: 960px) {
  .h3 {
    font-family: "Poppins", sans-serif;
  }
}

.h4 {
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem !important;
  line-height: 120%;
}
@media screen and (max-width: 960px) {
  .h4 {
    font-family: "Poppins", sans-serif;
  }
}

.h5 {
  font-weight: 300;
  color: #7d7d7d;
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem !important;
  line-height: 120%;
}
@media screen and (max-width: 960px) {
  .h5 {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    line-height: 120%;
  }
}

.h6 {
  font-weight: 500;
  color: #222;
  font-family: "Poppins", sans-serif;
  font-size: 1.625rem !important;
  line-height: 120%;
}
@media screen and (max-width: 960px) {
  .h6 {
    font-family: "Poppins", sans-serif;
    font-size: 1.25rem !important;
    line-height: 120%;
  }
}

p {
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  line-height: 140%;
}
@media screen and (max-width: 960px) {
  p {
    font-family: "Poppins", sans-serif;
    font-size: 1.125rem;
    line-height: 2rem;
  }
}

a {
  color: inherit !important;
  font-weight: unset !important;
  background: unset !important;
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  line-height: 100%;
}
@media screen and (max-width: 960px) {
  a {
    font-family: "Poppins", sans-serif;
    font-size: 1.125rem;
    line-height: 100%;
  }
}

.container {
  max-width: 1900px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .container {
    flex-direction: column;
    padding: 0 20px;
  }
}

img {
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.flex-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 960px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
@media screen and (max-width: 1100px) and (min-width: 960px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media screen and (max-width: 960px) {
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media screen and (max-width: 960px) {
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1100px) and (min-width: 960px) {
  .grid-6 {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}
@media screen and (max-width: 960px) {
  .grid-6 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.ul {
  list-style: none;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.border {
  border-radius: 4px;
}

.txt-center {
  width: 50%;
  margin: 0 auto;
}
.txt-center h1 {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 960px) {
  .txt-center {
    width: 100%;
  }
  .txt-center p {
    font-size: 1rem;
    line-height: 140%;
  }
}

#header {
  position: fixed;
  width: 100%;
  background-color: #fff;
  z-index: 100;
  border-bottom: 1px solid #eee;
}
#header .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 0 20px;
  background-color: #fff;
}
#header a {
  font-size: 0.875rem;
  color: inherit;
  text-decoration: none;
}
#header .header-logo {
  display: flex;
  color: #c20000;
  transition: 0.5s ease;
}
#header .header-logo__mobile {
  display: none;
}
#header .header-logo .link-blog {
  font-size: 20px;
  margin-left: 10px;
}
#header .header-logo a:hover {
  opacity: 0.7;
}
#header .header-hamburguer {
  display: none;
}
#header .header-hamburguer button {
  background: none;
  border: none;
}
#header .header-hamburguer ion-icon {
  color: #666;
}
#header .header-hamburguer .menu-hamburguer__close {
  display: none;
}
@media screen and (max-width: 960px) {
  #header .header {
    justify-content: center;
  }
  #header .header-logo {
    align-items: center;
  }
  #header .header-logo a {
    display: none;
  }
  #header .header-logo__mobile {
    display: block !important;
    font-size: 1.25rem;
    font-weight: 300 !important;
  }
  #header .header-nav {
    position: absolute;
    width: 100%;
    height: calc(100vh - 70px);
    z-index: -1;
    background-color: #fff;
    top: 70px;
    left: 0;
    overflow-y: auto;
  }
  #header .header-nav--mobile {
    display: flex;
  }
  #header .header-nav,
  #header .header-contato {
    display: none;
  }
  #header .header {
    border-bottom: 1px solid transparent;
    flex-direction: row;
    justify-content: space-between !important;
  }
  #header .header-hamburguer {
    display: block;
  }
  #header .header-hamburguer ion-icon {
    font-size: 40px;
  }
}

#bnt-login {
  padding: 10px 20px !important;
  text-transform: uppercase;
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: 1px;
}

.header-contato {
  display: flex;
  align-items: center;
}

blockquote {
  margin: 20px 40px;
  padding: 25px 50px;
  background: #fcf2f2;
  box-shadow: inset 0px 4px 0px #c20000;
  border-radius: 8px;
  position: relative;
  font-size: 1.25rem;
  line-height: 150%;
}
blockquote::after {
  width: 100%;
  height: 3px;
  background-color: #820202;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 960px) {
  blockquote {
    margin: 20px;
    padding: 20px;
    font-size: 1.25rem;
  }
}
.the-content {
  font-family: "Poppins", sans-serif !important;
}
.the-content ul {
  padding-left: 40px;
}
.the-content ul li {
  margin-bottom: 10px;
}
.the-content a {
  transition: 0.3s;
}
.the-content a:hover {
  opacity: 0.7;
}

.btn {
  font-size: 1.25rem;
  line-height: 120%;
  font-weight: 700;
  text-decoration: none;
}

.btn-pri {
  border-radius: 30px;
  padding: 1rem 2rem;
  font-weight: 700 !important;
}
.btn-pri::after {
  content: "➞";
  margin-left: 10px;
}

.btn-sec {
  background: linear-gradient(244.87deg, #5f94df -16.34%, #115fa8 62.79%);
  display: inline-flex;
  padding: 1rem 3rem;
  color: #fff;
}
.btn-sec img {
  margin-left: 10px;
}

.btn-blue {
  color: #fff !important;
}

.btn-white {
  background: #fff;
  color: #222;
  box-shadow: 0px 12px 28px rgba(0, 0, 0, 0.08);
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 300;
}

.btn-arrow {
  display: inline-block;
  transition: 0.3s;
}
.btn-arrow img {
  margin-left: 10px;
  transform: scale(1.5);
}
.btn-arrow:hover {
  opacity: 0.7;
}

.btn-grad {
  background: linear-gradient(270deg, #d03535, #c20000);
  border: none;
  padding: 10px 2rem;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  transition: 0.4s all;
}
.btn-grad:hover {
  cursor: pointer;
  background: linear-gradient(270deg, #c20000, #d03535);
}

#hero-home {
  height: 100vh;
  background-color: #222;
}
#hero-home .hero-txt {
  padding: 0 20px;
  height: 100vh;
  display: grid;
  align-items: center;
}
#hero-home .hero-txt .h1 {
  grid-column: span 2;
  padding-right: 80px;
}
#hero-home .hero-txt .h3 {
  color: #fff;
}
#hero-home .hero-txt .btn-pri {
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  #hero-home {
    height: auto;
  }
  #hero-home .hero-txt {
    height: auto;
    padding: 120px 20px;
    grid-template-columns: 1fr;
    gap: 60px 0;
    text-align: center;
  }
  #hero-home .h1 {
    padding-right: 0px !important;
  }
}

#page-home {
  background-color: #f1f1f1;
}
#page-home #busca, #page-home .search-form .search-field, #page-home .search-submit {
  background-color: #fff;
}
#page-home .search-form .search-submit svg {
  fill: #fff;
}
#page-home [type=search] {
  width: 100%;
  min-width: 300px;
}
@media screen and (max-width: 1100px) and (min-width: 960px) {
  #page-home .home-banner-txt {
    padding: 0;
  }
}
@media screen and (max-width: 960px) {
  #page-home .home-banner-txt {
    padding: 0;
  }
  #page-home .home-post ul {
    padding: 40px 20px;
  }
}

.home-banner {
  position: relative;
}
.home-banner h1 {
  margin-bottom: 20px;
}
.home-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 99.5%;
  background-color: rgba(194, 0, 0, 0.7);
}

.home-banner-img {
  height: 500px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin-top: 70px;
}

.home-banner-txt {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translateY(50%) translateX(-50%);
  padding: 0 80px;
  color: #fff;
}

.home-post ul {
  padding: 80px 160px;
}
.home-post li {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.home-post li:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: scale(1.015);
}
.home-post a {
  padding: 80px 40px;
  text-decoration: none;
  text-align: center;
}
.home-post h2 {
  margin-bottom: 20px;
}

.breadcrumb-advbox p {
  opacity: 0.5;
  text-transform: uppercase;
}
.breadcrumb-advbox span {
  font-family: "Fragment Regular", sans-serif;
  margin-left: 8px;
  font-size: 1.25rem;
}
@media screen and (max-width: 960px) {
  .breadcrumb-advbox {
    flex-wrap: wrap;
  }
}

#post, #pesquisa {
  padding-top: 70px;
}

#article-content-advbox {
  grid-column: span 4;
  padding: 0 100px 0 60px;
  color: #3b454e;
}
#article-content-advbox h1 {
  color: #3b454e;
  font-size: 2.5rem;
  font-family: "Poppins", sans-serif;
  padding-bottom: 40px;
  margin-top: 40px;
}
#article-content-advbox h2 {
  color: #c20000;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  padding: 40px 0 20px 0;
}
#article-content-advbox h3 {
  margin: 20px 0 5px 0;
}
#article-content-advbox img {
  margin: 20px 0;
}
@media screen and (max-width: 1100px) and (min-width: 960px) {
  #article-content-advbox {
    grid-column: span 3;
    padding: 0 100px 0 40px;
  }
  #article-content-advbox h1 {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 960px) {
  #article-content-advbox {
    grid-column: span 3;
    padding: 0;
  }
  #article-content-advbox h1 {
    padding-bottom: 20px;
  }
}

.posts-footer {
  margin: 40px 0;
  padding-bottom: 40px;
  border-bottom: 1px solid #dbe0e5;
}
.posts-footer ul {
  display: flex;
  gap: 20px;
}
.posts-footer li {
  border: 1px solid #dbe0e5;
  transition: 0.3s;
  width: 100%;
}
.posts-footer li:hover {
  box-shadow: 0px 12px 13px rgba(0, 0, 0, 0.02);
  transform: translateY(-3px);
}
.posts-footer li:hover p {
  color: #c20000;
}
.posts-footer a {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}
.posts-footer a img {
  width: 25px;
}
.posts-footer span {
  font-size: 0.75rem;
  color: #aaa;
}
.posts-footer p {
  font-weight: 500;
}
.posts-footer .posts-prev {
  text-align: right;
}
.posts-footer .posts-prev img {
  transform: rotate(180deg);
}
@media screen and (max-width: 960px) {
  .posts-footer {
    margin: 40px 0 10px 0;
  }
  .posts-footer ul {
    flex-direction: column;
  }
  .posts-footer .posts-footer-copy {
    flex-direction: column;
  }
}

.posts-footer-copy {
  display: flex;
  justify-content: space-between;
  color: #aaa;
  margin-bottom: 20px;
}
.posts-footer-copy p {
  font-size: 0.875rem;
}
.posts-footer-copy a {
  font-size: inherit;
  transition: 0.3s;
  text-decoration: none;
}
.posts-footer-copy a:hover {
  text-decoration: underline;
  color: #3d3d3d !important;
}
@media screen and (max-width: 1100px) and (min-width: 960px) {
  .posts-footer-copy p {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .posts-footer-copy {
    flex-direction: column;
  }
  .posts-footer-copy p {
    display: none;
  }
  .posts-footer-copy a {
    text-decoration: underline;
    text-align: center;
    padding: 20px 0;
  }
}

#aside-right {
  padding: 20px 10px;
  position: fixed;
  margin-right: 7%;
  right: 0;
  border-left: 1px solid #eee;
}
#aside-right h6 {
  text-transform: uppercase;
  font-size: 1rem !important;
  color: #7b8690;
  margin-bottom: 10px;
}
#aside-right a {
  text-decoration: none;
  font-size: 0.875rem;
  color: #7b8690 !important;
  padding-left: 10px;
}
#aside-right li {
  padding: 5px 0;
}
#aside-right li:hover {
  background-color: rgb(236, 239, 241);
}
#aside-right li.active {
  background-color: #fcf2f2;
  position: relative;
}
#aside-right li.active::before {
  content: "";
  height: 100%;
  width: 2px;
  background-color: #c20000;
  position: absolute;
  top: 0;
  left: 0;
}
#aside-right .aside-nav-share ul {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
#aside-right .aside-nav-share li {
  border-radius: 8px;
}
#aside-right .aside-nav-share a {
  padding: 120px 10px 10px 10px;
}
#aside-right .aside-nav-share img {
  opacity: 0.4;
  transition: 0.4s;
  max-width: 25px;
  margin-top: 2px;
}
#aside-right .aside-nav-share img:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1100px) and (min-width: 960px) {
  #aside-right {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  #aside-right {
    display: none;
  }
}

#aside-left {
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 20px 10px 40px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 90vh;
}
#aside-left .h2 {
  margin-left: 5px;
  font-size: 1rem !important;
  line-height: 100%;
  color: #7b8690;
}
#aside-left li {
  padding: 10px 0;
}
#aside-left li:hover {
  background-color: #fcf2f2;
  border-right: 3px solid #820202;
}
#aside-left li.active h2 {
  font-weight: 700;
  color: #c20000;
}
#aside-left a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
#aside-left .post-drop {
  margin: 10px 0 0 20px;
  position: relative;
}
#aside-left .post-drop::before {
  content: "";
  height: 100%;
  width: 2px;
  background-color: #dbe0e5;
  position: absolute;
  top: 5px;
  left: -9px;
}
#aside-left .post-drop a {
  font-size: 0.875rem;
  color: #7b8690 !important;
  padding-left: 10px;
}
#aside-left .post-drop li {
  border-right: 0px solid #820202;
}
#aside-left .post-drop li:hover {
  background-color: rgb(236, 239, 241);
}
#aside-left .post-drop {
  display: none;
}
#aside-left .post-drop.post-drop-visible {
  display: block;
}
#aside-left .aside-post-icon .hydrated {
  fill: #555;
  transition: 0.3s;
}
#aside-left .aside-post-icon:hover .hydrated {
  fill: #222;
}
#aside-left .aside-left-copy {
  transition: 0.3s;
}
#aside-left .aside-left-copy a {
  background: #ECEFF1 !important;
  padding: 10px;
}
#aside-left .aside-left-copy ion-icon {
  font-size: 24px;
  color: #8899A8;
}
#aside-left .aside-left-copy p {
  font-size: 0.875rem;
  margin-left: 10px;
  color: #8899A8;
}
#aside-left .aside-left-copy:hover ion-icon {
  fill: #c20000;
}
#aside-left .aside-left-copy:hover p {
  color: #c20000;
}
@media screen and (max-width: 1100px) and (min-width: 960px) {
  #aside-left .aside-left-copy a {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 960px) {
  #aside-left {
    position: absolute;
    top: 46px;
    left: 0;
    z-index: 100;
    padding: 0;
    border: none;
  }
  #aside-left #aside-left-nav {
    display: none;
    padding: 20px;
  }
  #aside-left .aside-left-copy {
    display: none;
  }
  #aside-left .post-drop {
    padding-right: 5px;
  }
  #aside-left .active {
    display: block !important;
    background-color: #fcf2f2;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(27, 30, 33, 0.75);
  z-index: 99;
}

@media screen and (max-width: 960px) {
  body.overlay-active {
    overflow: hidden;
  }
}
/* Animação de entrada */
@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
/* Animação de saída */
@keyframes slideOut {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* Aplicar animações às classes active e overlay */
#aside-left-nav.active {
  animation: slideIn 0.3s ease-in-out forwards;
}

.overlay {
  animation: fadeIn 0.3s ease-in-out forwards;
}

.overlay.hide {
  animation: fadeOut 0.3s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.5;
  }
}
@keyframes fadeOut {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 0;
  }
}
#busca {
  position: relative;
}

.search-form .search-field {
  background-color: rgba(59, 69, 78, 0.1);
  border: none;
  padding: 1rem 2.5rem;
  font-family: "Poppins", sans-serif;
}
.search-form .search-field:focus-visible {
  outline: #c20000 auto 2px;
}

.search-form .search-submit {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  border: none;
}
.search-form .search-submit svg {
  fill: #aaa;
  width: 20px;
  height: 20px;
}

.tag-p {
  font-family: "Poppins", sans-serif;
  background-color: #fff;
  color: #c20000;
  padding: 5px;
  font-weight: 700;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.breadcrumb-advbox {
  display: flex;
  margin-top: 20px;
}
.breadcrumb-advbox li:first-child::before {
  content: "";
  padding: 0px;
}
.breadcrumb-advbox li::before {
  content: ">";
  padding: 5px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #aaa;
}
.breadcrumb-advbox a {
  font-size: 0.875rem;
  text-decoration: none;
  opacity: 0.7;
  transition: 0.3s;
}
.breadcrumb-advbox a:hover {
  color: #c20000 !important;
  opacity: 1;
  text-decoration: underline;
}

#tela-login h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #c20000;
  font-size: 2.5rem !important;
}
#tela-login #login-custom-template {
  padding-left: 40px;
  justify-content: center;
}
#tela-login .login-bg {
  grid-column: span 2;
}
#tela-login .login-bg img {
  height: calc(100vh - 70px);
  width: 100%;
}
#tela-login [type=submit] {
  border: none;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  border-radius: 8px;
  display: inline-block;
  font-size: 1.125rem;
  width: 100%;
  text-transform: uppercase;
  padding: 0.5rem 0;
  background: linear-gradient(270deg, #d03535, #c20000);
  transition: 0.3s ease;
}
#tela-login [type=submit]:hover {
  opacity: 0.85;
}
#tela-login input {
  width: 100%;
  height: 50px;
  padding: 0 10px;
  border: none;
  border-bottom: 1px solid #ccc;
  background: 0 0;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
}
#tela-login .remember-me {
  margin: 20px 0 40px 0;
}
#tela-login .remember-me label {
  display: flex;
  align-items: center;
  gap: 10px;
}
#tela-login .remember-me input {
  width: 1rem;
  height: 1rem;
}
#tela-login a {
  text-decoration: none;
  color: #333 !important;
  font-size: 1rem;
  text-align: end;
  margin-top: 20px;
}
#tela-login a:hover {
  text-decoration: underline;
}
#tela-login .turista {
  margin-top: 60px;
  text-align: center;
  color: #aaa !important;
}
#tela-login .turista:hover {
  color: #666 !important;
}
@media screen and (max-width: 960px) {
  #tela-login {
    padding-top: 140px;
  }
  #tela-login #login-custom-template {
    padding: 0 20px;
  }
  #tela-login .login-bg {
    display: none;
  }
}

#manutencao {
  padding-top: 240px;
  text-align: center;
}
#manutencao p {
  margin-top: 20px;
}
#manutencao p:last-child {
  margin-top: 5px;
}

#contato {
  padding-top: 140px;
  padding-bottom: 60px;
}
#contato .h1 {
  font-size: 2.5rem !important;
  color: #c20000;
  text-align: center;
  margin-bottom: 40px;
}
#contato p {
  text-align: center;
}
#contato [method=post] p {
  text-align: left !important;
  margin-bottom: 5px;
}
#contato [method=post] input {
  margin-bottom: 20px;
}
#contato .contato-card {
  border-radius: 10px;
  gap: 0;
  width: 80%;
  margin: 0 auto;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  margin-top: 40px;
  max-width: 1000px;
}
#contato .contato-card__txt {
  background-color: #c20000;
  color: #fff;
  padding: 40px;
  border-radius: 10px 0 0 10px;
}
#contato .contato-card__txt a {
  text-decoration: none;
}
#contato .contato-card__txt h3 {
  font-weight: 700;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  padding-bottom: 20px;
}
#contato .contato-card__txt p {
  margin-left: 10px;
}
#contato .contato-card__txt ul {
  display: flex;
  margin-top: 20px;
  gap: 20px;
}
#contato .contato-card__txt ul li:hover {
  opacity: 0.7;
  transition: 0.3s;
}
#contato .contato-card__txt ul ion-icon {
  font-size: 2rem;
}
#contato .contato-card__form {
  padding: 40px;
  grid-column: span 2;
}
#contato .contato-card__form form {
  gap: 20px;
}
#contato .contato-card__form label {
  color: #222;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  display: block;
}
#contato .contato-card__form input, #contato .contato-card__form textarea {
  font-family: "Poppins", sans-serif;
  border-radius: 4px;
  border: 1px solid #EDEDED;
  background: #F7F7F7;
  padding: 10px 20px;
  width: 100%;
}
#contato .contato-card__form button {
  font-family: "Poppins", sans-serif;
  width: 100%;
}
#contato .contato-card__icons a {
  margin-top: 20px;
  display: flex;
}
@media screen and (max-width: 1100px) and (min-width: 960px) {
  #contato {
    padding-top: 120px;
  }
  #contato .contato-card {
    width: 80%;
    grid-template-columns: 1fr;
  }
  #contato .contato-card__txt {
    padding: 40px;
    border-radius: 10px 10px 0 0;
  }
  #contato .contato-card__txt h3 {
    width: 80%;
    font-size: 2.5rem !important;
  }
  #contato .contato-card__icons {
    display: flex;
    gap: 20px;
    justify-content: center;
  }
  #contato .contato-card__sociais {
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 960px) {
  #contato {
    padding-top: 120px;
  }
  #contato .contato-card {
    width: 100%;
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }
  #contato .contato-card__txt {
    padding: 20px;
    border-radius: 10px 10px 0 0;
  }
  #contato .contato-card__txt h3 {
    width: 100%;
    font-size: 2rem !important;
    margin-top: 20px;
  }
  #contato .contato-card__form {
    padding: 20px;
  }
  #contato .contato-card__icons a {
    align-items: center;
  }
  #contato .contato-card__sociais {
    display: flex;
    justify-content: center;
  }
}

.have-search,
.dont-have-search {
  margin-top: 20px;
  min-height: 55vh;
}
.have-search ul,
.dont-have-search ul {
  margin-top: 40px;
  gap: 20px;
}

.have-post-link {
  border-left: 3px solid #820202;
  padding: 1rem;
}
.have-post-link:hover {
  background-color: #fcf2f2;
}
.have-post-link h3 {
  margin: 0 !important;
}
.have-post-link h4 {
  margin: 10px 0;
  font-size: 1.25rem !important;
}
.have-post-link h5 {
  font-size: 1.125rem !important;
}
.have-post-link a {
  text-decoration: none;
}
.have-post-link p {
  font-size: 1rem !important;
  color: #777;
}