/**
* Template Name: Logis - v1.3.0
* Template URL: https://bootstrapmade.com/logis-bootstrap-logistics-website-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/


/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Poppins", sans-serif;
}

/* Colors */
:root {
  --color-default: #0F0F0F;
  --color-primary: #0d42ff;
  --color-secondary: #000000;
  --color-roxa:rgb(110, 79, 191);
  --color-amarela: #F7D117;
  --color-texto: rgb(202, 202, 202);
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

.element {
  scrollbar-width: thin;
  scrollbar-color: black transparent;
}

::-webkit-scrollbar {
  width: 5px;
  height: 3px; /* A altura só é vista quando a rolagem é horizontal */
}

::-webkit-scrollbar-track {
  background: transparent;
  padding: 2px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-texto);
  border-radius: 5px;
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  background-color: var(--color-default);

 
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-amarela);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
.section {
  padding: 80px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #001973;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header span {
  position: absolute;
  top: 46px;
  color: rgba(14, 29, 52, 0.06);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 56px;
  text-transform: uppercase;
  line-height: 0;
}

.section-header p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 640px) {
  .section-header h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-header span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
  padding: 140px 0 80px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs .page-header:before {
  content: "";
  background-color: rgba(14, 29, 52, 0.8);
  position: absolute;
  inset: 0;
}

.breadcrumbs .page-header h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs .page-header p {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs nav {
  background-color: #f3f6fc;
  padding: 20px 0;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-secondary);
}

.breadcrumbs nav ol a {
  color: var(--color-primary);
  transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}

.breadcrumbs nav ol li+li {
  padding-left: 10px;
}

.breadcrumbs nav ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4278cc;
  content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-amarela);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: var(--color-amarela);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background:var(--color-default);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

@-webkit-keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 30px 0;



}

.header.sticked {
  background: #0f0f0fd5;
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(14, 29, 52, 0.1);
}

.header .logo img {
  max-height: 40px;
  margin-right: 0;
  margin-left: 8vw;
}
@media (max-width: 575px) {
  .header .logo img {
    max-height: 30px;
  }
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
    padding-right: 12vw;
  }

  .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: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    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: #fff;
  }


  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    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;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: var(--color-secondary);
  }

  .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(--color-primary);
  }

  .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 (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;

  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background:var(--color-default);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    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: #fff;
  }

  .navbar .get-a-quote,
  .navbar .get-a-quote:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .get-a-quote:hover,
  .navbar .get-a-quote:focus:hover {
    color: #fff;
    background: rgba(13, 66, 255, 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #19335c;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(14, 29, 52, 0.8);
    z-index: 9996;
  }
  /*Configuração para o hamburguer da tela celular*/
  .header .div_3{
    margin-right: 2vw;
  }
  
}

/*--------------------------------------------------------------
# Contato
--------------------------------------------------------------*/
.contato_separacao{
  margin-top: 12vh ;
  padding-left: none;
  padding-right: none;
 }
 @media screen and (max-width: 1000px) {
  .contato_separacao{
    margin-top: 100px;
  }
}


.contato{
padding-left: 15vw;
padding-right: 15vw;

}

@media (max-width: 575px) {
  .contato{

    padding-left: 5vw;
    padding-right: 5vw;
    
    }
}

.contato .section_1{
  width: 100%;
  min-height: 8vh;
  position: relative;
  padding-top: 5vh;
  padding-left: 10vw;
  padding-right: 10vw;
  color: rgba(255, 255, 255, 0.8);
  

}


.contato .info-item+.info-item {
  margin-top: 40px;
}

.contato .info-item i {
  font-size: 35px;
  background: rgb(150, 140, 3);
  color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contato .info-item h4 {
  padding: 0;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 5px;
  color:  rgba(255, 255, 255, 0.8);
}

.contato .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 18px;
  color: rgba(240, 238, 255, 0.8);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.contato .mapa{

  padding-top: 50px;
  padding-bottom: 50px;
}



/*--------------------------------------------------------------
# Sobre
--------------------------------------------------------------*/
.sobre_section_1{
max-width: auto;
padding: 100px 25vw 2vh 25vw;
}

@media (max-width: 1000px) {
  .sobre_section_1 {
    padding-top: 100px;
    padding-left: 5vw;
    padding-right: 5vw;
    
    }
}


.sobre_section_2{
  max-width: fit-content;
  padding: 12vh 0 15vh 0;
  color:var(--color-texto);
  }
.sobre_section_2{
  padding-left: 20px;
  padding-right: 20px;

}
.texto_sobre{
 padding-top: 20px;
  text-align: none;
 font-size: 20px;
 font-family: Arial, Helvetica, sans-serif;
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 50vh;
  position: relative;
  padding-top: 0vh;
  padding-bottom: 0vh;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 0.01rem solid rgb(87, 87, 87);
}

.hero h2 {
  margin-bottom: 20px;
  padding: 0;
  font-size: 50px;
  font-weight: 600;
  color: #fff;

}
@media (max-width: 575px) {
  .hero h1 {
    padding-top: 250px;
    margin-top: 80px;
  
  }
}
@media (max-width: 575px) {
  .hero h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .hero p {
    font-size: 10px;
    padding-top: 5px;
  }
}

@media (max-width: 575px) {
  .hero video {
    display: none;    
  }
}

@media (max-width: 575px) {
  .hero section {
    margin-bottom: 250px;
  }
}




.hero p {

  font-size: 25px;
  font-weight: 400;
  margin-bottom: 40px;

}


.hero form .form-control:hover,
.hero form .form-control:focus {
  outline: none;
  box-shadow: none;
}

.hero .btn-primary {
  background-color: #655dc6;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 20px;
  border-color: transparent;
}

.hero .btn-primary:hover {
  background-color: #948dda;
}

.hero .img-fluid{
max-width: auto;
max-height: auto;
}

.hero .container-fluid{

  max-width: 80%;
  padding-left: 5vw;

}

/*--------------------------------------------------------------
# Section_2 hero
--------------------------------------------------------------*/
.section_2 {
  align-content: center;
  padding-top: 15vh;
  color: var(--color-texto);

  
}

.section_2 h2{
  font-size: 49px;
  padding: 0;
  font-weight: 400;
  color:var(--color-texto);

}

@media (max-width: 575px) {
   .section_2 h2 {
    font-size: 30px;
    padding-top: 250px;
  }
}

.section_2 .separacao{
padding-top: 7vh;

}

/*--------------------------------------------------------------
# Section_3 hero
--------------------------------------------------------------*/
.section_3 {
  width: 100%;
  min-height: 50vh;
  position: relative;
  padding-top: 2vh;
  padding-bottom: 5vh;
  padding-left: 14vw;
  padding-right: 14vw;
}

.section_3 h2{

  font-size: 35px;
  padding-bottom: 50px;
  font-weight: 600;
  color: var(--color-roxa);
}

.section_3 p{
  color: var(--color-texto);
  font-size: 20px;
}
.section_3 .row{
  padding-top: 18vh;
  padding-bottom: 5vh;

}

.section_3 .img-fluid{
border-radius: 20px;

}

@media (max-width: 575px) {
   .section_3 h2 {
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .section_3 p {
   font-size: 15px;
 }
}

/*--------------------------------------------------------------
# Section_4 hero
--------------------------------------------------------------*/
.section_4 {
  width: 100%;
  min-height: 20vh;
  position: relative;
  padding-top: 15vh;

  
}

.section_4 h2{

  font-size: 50px;
  padding: 0;
  font-weight: 400;
  color: var(--color-amarela)
}

@media (max-width: 575px) {
   .section_4 h2 {
    font-size: 30px;
  }
}

/*--------------------------------------------------------------
# Section_5 hero
--------------------------------------------------------------*/
.section_5 {
  width: 100%;
  min-height: 40vh;
  position: relative;
  padding-top: 2vh;
  padding-bottom: 5vh;
  padding-left: 14vw;
  padding-right: 14vw;
  color: var(--color-texto);
}

.section_5 h2{

  font-size: 35px;
  padding-bottom: 20px;
  font-weight: 600;
  color: var(--color-texto);
}

.section_5 p{
  color: var(--color-texto);
  font-size: 20px;
  padding-bottom: 20px;
}
.section_5 .row{
  padding-top: 18vh;
  padding-bottom: 5vh;

}

.section_5 .img-fluid{
border-radius: 20px;

}
.section_5 h1{
font-size: 20px;
color: var(--color-roxa);
padding-bottom: 15px;


}
.section_5 .ul{
  padding-bottom: 20px;
}

@media (max-width: 575px) {
   .section_5 h2 {
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .section_5 p {
   font-size: 15px;
 }
}
.section_5 .btn-primary {
  background-color: var(--color-roxa);
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 20px;
  border-color: transparent;
}

.section_5_btn .btn-primary{
  background-color: var(--color-amarela);
}
.section_5 .robotizacao{
  color: var(--color-amarela);
}

/*--------------------------------------------------------------
# Section_7 hero
--------------------------------------------------------------*/


.section_7 {
  width: 100%;
  min-height: 30vh;
  position: relative;
  margin-top: 10vh;
  padding-top: 5vh;
  color: var(--color-texto);
  background-color:#292929;
  padding-left: 15vw;
  padding-right: 15vw;
  
}

.section_7 h2{

  font-size: 45px;
  padding-bottom: 15px;
  font-weight: 400;
  color: var(--color-texto);
}

@media (max-width: 575px) {
   .section_7 h2 {
    font-size: 30px;
  }
}
.section_7 h3{

  font-size: 35px;
  padding-bottom: 25px;
  font-weight: 300;
  color: var(--color-texto);
}

@media (max-width: 575px) {
   .section_7 h3 {
    font-size: 20px;
  }
}

.section_7 .btn-primary {
  background-color: var(--color-roxa);
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 20px;
  border-color: transparent;
}




/*-------------------------------------------------------------
# Separation
-------------------------------------------------------------*/
.Separation {
  border-bottom: 2px dashed rgba(120, 120, 120, 0.4);
}

.line_1{
  height: 1px;
  background: rgb(114, 114, 114);
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: var(--color-secondary);
  padding: 50px 0;
  color: white;
}

.footer .footer-info .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  font-family: var(--font-primary);
}

.footer .footer-info p {
  font-size: 14px;
  font-family: var(--font-primary);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  color: rgba(13, 66, 255, 0.8);
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-contact p {
  line-height: 26px;
}

.footer .copyright {
  text-align: center;
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}



/* ------Soluções ------- */

.solucoes_separacao{
 margin-top: 12vh;
 padding-left: none;
 padding-right: none;
}
@media screen and (max-width: 1000px) {
  .solucoes_separacao{
    margin-top: 100px;
  }
}

.solucoes_section_1{
  border-color: 1 px var(--color-texto);
  padding-top:5vh ;
  color:var(--color-texto);

  }

.solucoes_section_2{
  margin-top:5vh;
  padding-bottom: 5vh;
  border-bottom: 1px solid rgba(120, 120, 120, 0.4)

}
.slide-container{
  max-width:120vh;
  max-height: auto;
  padding: 10px 0;
}
.slide-content{
  margin: 0 40px;
  overflow: hidden;
  border-radius: 25px;
}

.card{
  border-radius: 25px;
  background-color: #FFF;
  border-color: var(--color-roxa);
  width: auto;
  height: 350px;
  justify-content: space-between;


}
.image-content,
.card-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 10px 0 10px;
  z-index: 101;

  
}
.image-content{
  position: relative;
  row-gap: 5px;
  padding: 25px 0;
}
.overlay{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--color-roxa);
  border-radius: 25px 25px 0 25px;
}
.overlay::before,
.overlay::after{
  content: '';
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 40px;
  width: 40px;
  background-color: var(--color-roxa);
}
.overlay::after{
  border-radius: 0 25px 0 0;
  background-color: #FFF;
}
.card-image{
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background: #FFF;
  padding: 3px;
}
.card-image .card-img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--color-roxa);
}
.name{
  font-size: 18px;
  font-weight: 500;
  color: #333;
}
.description{
  font-size: 14px;
  color: #707070;
  text-align: center;
}
.button{
  border: none;
  font-size: 16px;
  color: #FFF;
  padding: 8px 16px;
  background-color:var(--color-roxa);
  border-radius: 6px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button:hover{
  background: rgb(88, 29, 128);
}

.swiper-navBtn{
  color: #6E93f7;
  transition: color 0.3s ease;
}
.swiper-navBtn:hover{
  color: #4070F4;
}
.swiper-navBtn::before,
.swiper-navBtn::after{
  font-size: 35px;
}
.swiper-button-next{
  right: 0;
}
.swiper-button-prev{
  left: 0;
}
.swiper-pagination-bullet{

  background-color: #6E93f7;
  opacity: 1;
  
}
.swiper-pagination-bullet-active{
  background-color: #4070F4;
}

@media screen and (max-width: 768px) {
  .slide-content{
    margin: 0 10px;
    padding-left: 10vh;
    padding-right: 10vh;
  }
  .swiper-navBtn{
    display: none;
  }
}


/*------Soluções - Retrofit----------*/
 
.solucoes_section_3{
  color: var(--color-texto);
  padding-left: 15vh;
  padding-right: 15vh;


}
@media (max-width: 768px)  {
  .solucoes_section_3{
  padding-left: 2vh;
  padding-right: 2vh;
  }
}

.solucoes_section_3 .row h1{
padding-top: 15vh;
padding-bottom: 3vh;
font-size: 20px;

color: var(--color-amarela);
  
}

.solucoes_section_3 .row h2{
  padding-bottom: 3vh;
  font-size: 40px;
  font-weight: 800;
  color: var(--color-texto);
    
}

.solucoes_section_3 .row h3{
  padding-bottom: 10vh;
  font-size: 20px;
  font-weight: 800;
  color: var(--color-texto);
    
}
.solucoes_section_3 .card{
  background-color: var(--color-texto);

}
.solucoes_section_3 .card-img-top{
  padding: 10px;
  border-radius: 25px;
  max-height: 150px;
  
}
.solucoes_section_3 .card{
color: #0F0F0F;

}
.solucoes_section_3 .btn-primary{
  border-color: var(--color-amarela);
  background-color: var(--color-amarela);
  color: #000000;
  margin-bottom: 20px;
  
  }


.solucoes_section_4{

  max-width: auto;
  max-height: auto;
  padding-top: 15vh;
  padding-bottom: 15vh;
}




.solucoes_section_4  h2{
  padding: 15px 0 40px 0 ;
  color:var(--color-texto);
  text-align: center;
}


.stepper-wrapper {
  
  align-items: center;
  color: var(--color-texto);
}
.stepper-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;

  @media (max-width: 768px) {
    font-size: 12px;
  }
}

.stepper-item::before {
  position: relative;
  content: "";
  border-bottom: 2px solid #ccc;
  
  top: 20px;
  left: -50%;
  z-index: 2;
}

.stepper-item::after {
  position: relative;
  content: "";
  border-bottom: 2px solid #ccc;
  
  top: 20px;
  left: 50%;
  z-index: 2;
}

.stepper-item .step-counter {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ccc;
  margin-bottom: 6px;
}

.stepper-item.active {
  font-weight: bold;
}

.stepper-item.completed .step-counter {
  background-color: #4bb543;
}

.stepper-item.completed::after {
  position: absolute;
  content: "";
  border-bottom: 2px solid #4bb543;
  
  top: 20px;
  left: 50%;
  z-index: 3;
}

.stepper-item:first-child::before {
  content: none;
}
.stepper-item:last-child::after {
  content: none;
}

.step-name{
  font-size: 20px;
  color: #4bb543;
}