/**
* Template Name: Presento
* Updated: Jan 09 2024 with Bootstrap v5.3.2
* Template URL: https://bootstrapmade.com/presento-bootstrap-corporate-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
  --palagi-pink: #c13c7a;
  --palagi-brown: #ba7c48;
  --palagi-brown-10:rgb(251, 198, 154);
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: var(--palagi-brown);
  text-decoration: none;
}

a:hover {
  color: var(--palagi-brown-10);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--palagi-brown);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--palagi-brown-10);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Button Call Action
--------------------------------------------------------------*/
.call-action-btn {
  background: var(--palagi-brown);
  color: #fff;
  border-radius: 4px;
  padding: 12px 42px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

.call-action-btn:hover {
  color: #fff;
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .call-action-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .social-link {
  padding-left: 20px;
}

@media (max-width: 992px) {
  #header .social-link {
    visibility: hidden;
  }
}

#header .logo img {
  max-height: 60px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #111111;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--palagi-brown);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: var(--palagi-brown);
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #111111;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #111111;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: var(--palagi-brown);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: var(--palagi-brown);
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 20px 0 20px 0;
  overflow: hidden;
  position: relative;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--palagi-brown);
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #2b2b2b;
  min-height: 40px;
  margin-top: 82px;
  color: #fff;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 500;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol a {
  color: #aaaaaa;
}

.breadcrumbs ol a:hover {
  color: #fff;
  transition: 0.3s;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--palagi-brown);
  content: "/";
}

/*--------------------------------------------------------------
# Home Section
--------------------------------------------------------------*/
.home {
  overflow-x: hidden;
  padding: 0;
}

.home .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 80px 0;
  margin: 0;
  position: relative;
}

.home .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 1;
  transition-duration: 0.4s;
}

.home .carousel-item::before {
  content: "";
  /* background-color: rgba(0, 0, 0, 0.7); */
  position: absolute;
  inset: 0;
}

.home .info {
  position: absolute;
  inset: 0;
  z-index: 2;
}

@media (max-width: 768px) {
  .home .info {
    padding: 0 50px;
  }
}

.home .info h2 {
  color: var(--palagi-brown);
  padding: 30px 0;
  font-size: 16px;
  font-family: "Libre Franklin", sans-serif;
  font-weight: normal;
  position: relative;
}

.home .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.home .info h1 {
  color: #fff;
  margin-bottom: 0px;
  padding-bottom: 0px;
  font-size: 2rem;
  font-weight: 700;
  font-family: "Libre Franklin", sans-serif;
  position: relative;
}

.home .info h1:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

/* Desktop (padrão) */
.home .carousel-item.home-img-1 { background-image: url('../img/home-carousel/home-img-1-large.webp'); }
.home .carousel-item.home-img-2 { background-image: url('../img/home-carousel/home-img-2.webp'); }
.home .carousel-item.home-img-3 { background-image: url('../img/home-carousel/home-img-3.webp'); }
.home .carousel-item.home-img-4 { background-image: url('../img/home-carousel/home-img-4.webp'); }
.home .carousel-item.home-img-5 { background-image: url('../img/home-carousel/home-img-5.webp'); }
.home .carousel-item.home-img-6 { background-image: url('../img/home-carousel/home-img-6.png'); }


@media (max-width: 800px) {
  .home .info h2 {
    font-size: 1.5rem;
  }

  .home .info h1 {
    font-size: 1.5rem;
  }

  .home .carousel-item.home-img-1 { background-image: url('../img/home-carousel/home-img-1-mobile.png'); }
  .home .carousel-item.home-img-2 { background-image: url('../img/home-carousel/home-img-2-mobile.png'); }
  .home .carousel-item.home-img-3 { background-image: url('../img/home-carousel/home-img-3-mobile.png'); }
  .home .carousel-item.home-img-4 { background-image: url('../img/home-carousel/home-img-4-mobile.png'); }
  .home .carousel-item.home-img-5 { background-image: url('../img/home-carousel/home-img-5-mobile.png'); }
  .home .carousel-item.home-img-6 { background-image: url('../img/home-carousel/home-img-6-mobile.png'); }

  .home .carousel {
    min-height: 100vh; 
    padding: 0;
  }
  .home .carousel-item {
    background-size: cover; 
    background-position: center center;
  }
}

.home .info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.home .info .btn-get-started {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  border: 2px solid var(--color-primary);
}

.home .info .btn-get-started:hover {
  background: var(--color-primary);
}

.home .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .home .carousel-control-prev {
    padding-left: 15px;
  }
}

.home .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .home .carousel-control-next {
    padding-right: 15px;
  }
}

.home .carousel-control-next-icon,
.home .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: var(--palagi-brown);
  color: rgba(255, 255, 255, 1);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home .carousel-control-prev,
.home .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.home .carousel-control-prev:focus,
.home .carousel-control-next:focus {
  opacity: 0.5;
}

.home .carousel-control-prev:hover,
.home .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/

#about-us h3 {
  font-weight: bold;
}

#about-us .tab-content li::before {
  content: "✓✓";
  color: var(--palagi-brown);
  letter-spacing: -2px;
  font-weight: bolder;
  font-size: 16px;
  display: inline-block;
  width: 21px;
  margin-left: -12px;
  margin-right: 4px;
}

.about .about-video {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .about-video iframe {
  border-radius: 20px;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

#about-us ul {
  list-style: none;
}

#about-us .reverse {
  text-align: right;
}

.about-us .container-about {
  display: flex;
  flex-direction: row;
}

@media (max-width: 650px) {
  .about-us .container-about {
    display: flex;
    flex-direction: column;
  }
}

.segments-about .nav-tabs {
  border: 0;
}

.segments-about .nav-link {
  border: 1px solid #b9b9b9;
  padding: 15px;
  transition: 0.3s;
  color: #444444;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.segments-about .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.segments-about .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.segments-about .w-400 {
  width: 400px;
}

.segments-about .nav-link:hover {
  color: var(--palagi-brown);
}

.segments-about .nav-link.active {
  background: var(--palagi-brown);
  color: #fff;
  border-color: var(--palagi-brown);
}

.segments-about .section-title .subtitle {
  /* margin-bottom: 22px; */
  font-size: 20px;
}

@media (max-width: 768px) {
  .segments-about .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .segments-about .nav-link {
    padding: 15px;
  }

  .segments-about .nav-link i {
    font-size: 24px;
  }
}

@media (max-width: 400px) {
  .segments-about .nav-link {
    padding: 5px;
  }

  .segments-about .nav-link i {
    font-size: 24px;
  }
}

.segments-about .tab-content {
  margin-top: 30px;
}

.segments-about .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}

.segments-about .tab-pane ul {
  list-style: none;
  padding: 0;
}

.segments-about .tab-pane ul li {
  padding-bottom: 10px;
}

.segments-about .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #e03a3c;
}

.segments-about .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Our Products Section
--------------------------------------------------------------*/
.portfolio .product-info {
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 0px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
  border-radius: 15px;
  text-align: center;
}

.portfolio .product-info p {
  font-style: italic;
  margin: 30px auto 15px auto;
}

.portfolio .product-info i {
  color: var(--palagi-brown);
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: var(--palagi-brown);
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(17, 17, 17, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(17, 17, 17, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
  width: 450px;
  height: 300px;
  object-fit: fill;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a.whats {
  font-size: 22px;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #fff;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #e03a3c;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: #e03a3c;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(17, 17, 17, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Segments Section
--------------------------------------------------------------*/
.segments .nav-tabs {
  border: 0;
}

.segments .nav-link {
  border: 1px solid #b9b9b9;
  padding: 15px;
  transition: 0.3s;
  color: #444444;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.segments .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.segments .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.segments .w-400 {
  width: 400px;
}

.segments .nav-link:hover {
  color: var(--palagi-brown);
}

.segments .nav-link.active {
  background: var(--palagi-brown);
  color: #fff;
  border-color: var(--palagi-brown);
}

@media (max-width: 768px) {
  .segments .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .segments .nav-link {
    padding: 15px;
  }

  .segments .nav-link i {
    font-size: 24px;
  }
}

@media (max-width: 400px) {
  .segments .nav-link {
    padding: 5px;
  }

  .segments .nav-link i {
    font-size: 24px;
  }
}

.segments .tab-content {
  margin-top: 30px;
}

.segments .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}

.segments .tab-pane ul {
  list-style: none;
  padding: 0;
}

.segments .tab-pane ul li {
  padding-bottom: 10px;
}

.segments .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #e03a3c;
}

.segments .tab-pane p:last-child {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# PARCEIROS
--------------------------------------------------------------*/
.parceiros-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.parceiros-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 40px;
}

.parceiro {
  margin-bottom: 40px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.parceiro h3 {
  font-size: 1.8rem;
  color: #444;
  margin-bottom: 20px;
}

.parceiro-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.parceiro-logo {
  max-width: 150px;
  margin-right: 20px;
}

.parceiro-info {
  flex: 1;
  min-width: 0;
}

.parceiro-gallery {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 30px;

  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap;
  padding-bottom: 10px;

  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.parceiro-gallery::-webkit-scrollbar {  
  display: none; 
}

.parceiro-gallery img {
  width: 350px;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #ddd;
  flex-shrink: 0;
}

.parceiro-mapa {
  width: 100%;
  height: 200px;
  border: none;
  margin-top: 10px;
  border-radius: 8px;
}


@media (max-width: 768px) {
  .parceiro-content {
    display: grid;
    align-items: center;
    justify-content: center;
  }

  .parceiro-logo {
    display: block;       /* Trata a imagem como um elemento de bloco */
    margin-left: auto;    /* Margem esquerda automática */
    margin-right: auto;   /* Margem direita automática */

  }
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact .contact-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--palagi-brown);
}

.contact-about {
  justify-items: center;
}

.contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Lato", sans-serif;
  color: #888;
}

.contact .social-links {
  padding-bottom: 20px;
}

.contact .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: #fff;
  color: var(--palagi-brown);
  line-height: 0;
  margin-right: 4px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid var(--palagi-brown);
}

.contact a.min-btn {
  color: #888;
}

.contact a.min-btn:hover {
  text-decoration: underline;
}

.contact .social-links a:hover {
  background: var(--palagi-brown);
  color: #fff;
}

.contact .info {
  color: #777;
}

.contact .info i {
  font-size: 32px;
  color: var(--palagi-brown);
  float: left;
  line-height: 1;
}

.contact .info p {
  padding: 0 0 10px 42px;
  line-height: 28px;
  font-size: 14px;
}

.contact button {
  background: var(--palagi-brown);
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.contact button:hover {
  background: var(--palagi-brown);
}

/*--------------------------------------------------------------
# Map
--------------------------------------------------------------*/
.map {
  padding: 0;
  margin-bottom: -10px;
}

.map iframe {
  width: 100%;
  height: 380px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #111111;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #1b1b1b;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: var(--palagi-brown);
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--palagi-brown);
  bottom: 0;
  left: 0;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: white;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #aaaaaa;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fff;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2b2b2b;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: var(--palagi-brown);
  color: #fff;
  text-decoration: none;
}

#footer a.min-btn {
  color: #fff;
}

#footer a.min-btn:hover {
  text-decoration: underline;
}
