@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;500&family=Sora:wght@600&display=swap');
:root {
    --primary: #fff;
    --secondary: #fff;
    --light: #F0F6FF;
    --dark: #262B47;
    --green1: #004753;
    --green2: #00d479;
    --green3: #c1f500;
    --green4: #c6ff90;
    --dark1: #0000;
    --purple1: #AA58FF;
    --purple2: #C6B2F6;
    --orange1: #FF7F30;
    --orange2: #FFEFB4;
}

/* Estilos do popup */
.popup {
    display: none; /* Inicialmente oculto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

/* Conteúdo do popup */
.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: auto;
    animation: fadeIn 0.5s ease-out;
    height: 650px;
    overflow: auto;
}
.popup-content img {
    width: 600px;
}
/* Botão de fechar */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

/* Animação */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.form-floating>.form-control-plaintext~label::after, .form-floating>.form-control:focus~label::after, .form-floating>.form-control:not(:placeholder-shown)~label::after, .form-floating>.form-select~label::after {
 
    background-color: #7b797900 !important;
  
}
#cont-xxl{
    margin-bottom: 1rem !important;
}
    #estadosSelect option{
        width: 100%;text-align: center;border-radius: 8px;background: #009700a8;color: #fff;border: 1px solid #fff;
    }
  .small-bold{
    font-size: 35px !important;
    font-weight: bold !important;
  }
  /*--------------------
  Chat
  --------------------*/
  .chat {
    position: absolute;
    top: -200px;
    left: -50px;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 80vh;
    max-height: 500px;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    background: #fff;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    border-radius: 10px;
  }
  
  /*--------------------
  Chat Title
  --------------------*/
  .chat-title {
    flex: 0 1 45px;
    position: relative;
    z-index: 2;
    background-image: url('../assets/Banners/wave.png');
    color: #fff;
    text-transform: uppercase;
    text-align: left;
    padding: 10px 10px 10px 50px;
    background-size: cover;
    background-position: 0px;
    background-repeat: round;
    background-position-y: -5px;
  }
  .chat-title h1, .chat-title h2 {
    font-weight: normal;
    font-size: 15px;
    margin: 0;
    padding: 0;
    color:#00d479;
    font-family: 'Lexend', sans-serif;
    margin-left: 10px;
  }
  .chat-title h2 {
    font-family: 'Lexend', sans-serif;
    font-size: 15px;
    letter-spacing: 1px;
    color:#004753;
  }
  .chat-title .avatar {
    position: absolute;
    z-index: 1;
    top: 5px;
    left: 10px;
    border-radius: 30px;
    width: 50px;
    height: 50px;
    overflow: hidden;
    margin: 0px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.24);
  }
  .chat-title .avatar img {
    width: 100%;
    height: auto;
  }
  
  /*--------------------
  Messages
  --------------------*/
  .messages {
    flex: 1 1 auto;
    color: rgba(255, 255, 255, 0.5);
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  .messages .messages-content {
    position: absolute;
    top: 0;
    left: 0;
    height: 101%;
    width: 100%;
  }
  .messages .message {
    clear: both;
    float: left;
    padding: 6px 10px 7px;
    border-radius: 10px 10px 10px 0;
    background: rgba(0, 0, 0, 0.3);
    margin: 8px 0;
    font-size: 11px;
    line-height: 1.4;
    margin-left: 35px;
    position: relative;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  }
  .messages .message .timestamp {
    position: absolute;
    bottom: -15px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
  }
  .messages .message::before {
    content: "";
    position: absolute;
    bottom: -6px;
    border-top: 6px solid #009700a8;
    left: 0;
    border-right: 7px solid transparent;
  }
  .messages .message .avatar {
    position: absolute;
    z-index: 1;
    bottom: -15px;
    left: -35px;
    border-radius: 30px;
    width: 30px;
    height: 30px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.24);
  }
  .messages .message .avatar img {
    width: 100%;
    height: auto;
  }
  .messages .message.message-personal {
    float: right;
    color: #fff;
    text-align: right;
    background: linear-gradient(120deg, #248A52, #257287);
    border-radius: 10px 10px 0 10px;
  }
  .messages .message.message-personal::before {
    left: auto;
    right: 0;
    border-right: none;
    border-left: 5px solid transparent;
    border-top: 4px solid #257287;
    bottom: -4px;
  }
  .messages .message:last-child {
    margin-bottom: 30px;
  }
  .messages .message.new {
    transform: scale(0);
    transform-origin: 0 0;
    -webkit-animation: bounce 500ms linear both;
            animation: bounce 500ms linear both;
            color: #fff;
            background: #009700a8;
            font-size: 14px;
  }
  .messages .message.loading::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 2;
    margin-top: 4px;
    -webkit-animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
            animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
    border: none;
    -webkit-animation-delay: 0.15s;
            animation-delay: 0.15s;
  }
  .messages .message.loading span {
    display: block;
    font-size: 0;
    width: 20px;
    height: 10px;
    position: relative;
  }
  .messages .message.loading span::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 2;
    margin-top: 4px;
    -webkit-animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
            animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
    margin-left: -7px;
  }
  .messages .message.loading span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 2;
    margin-top: 4px;
    -webkit-animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
            animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
    margin-left: 7px;
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
  }
  
  /*--------------------
  Message Box
  --------------------*/
  .message-box {
    flex: 0 1 40px;
    width: 100%;
    background: #009700a8;
    padding: 10px;
    position: relative;
  }
  .message-box .message-input {
    background: none;
    border: none;
    outline: none !important;
    resize: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    height: 17px;
    margin: 0;
    padding-right: 20px;
    width: 265px;
  }
  .message-box textarea:focus:-webkit-placeholder {
    color: transparent;
  }
  .message-box .message-submit {
    position: absolute;
    z-index: 1;
    top: 9px;
    right: 10px;
    color: #fff;
    border: none;
    background: #248A52;
    font-size: 10px;
    text-transform: uppercase;
    line-height: 1;
    padding: 6px 10px;
    border-radius: 10px;
    outline: none !important;
    transition: background 0.2s ease;
  }
  .message-box .message-submit:hover {
    background: #1D7745;
  }
  
  /*--------------------
  Custom Srollbar
  --------------------*/
  .mCSB_scrollTools {
    margin: 1px -3px 1px 0;
    opacity: 0;
  }
  
  .mCSB_inside > .mCSB_container {
    margin-right: 0px;
    padding: 0 10px;
  }
  
  .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: rgba(0, 0, 0, 0.5) !important;
  }
  
  /*--------------------
  Bounce
  --------------------*/
  @-webkit-keyframes bounce {
    0% {
      transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    4.7% {
      transform: matrix3d(0.45, 0, 0, 0, 0, 0.45, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    9.41% {
      transform: matrix3d(0.883, 0, 0, 0, 0, 0.883, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    14.11% {
      transform: matrix3d(1.141, 0, 0, 0, 0, 1.141, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    18.72% {
      transform: matrix3d(1.212, 0, 0, 0, 0, 1.212, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    24.32% {
      transform: matrix3d(1.151, 0, 0, 0, 0, 1.151, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    29.93% {
      transform: matrix3d(1.048, 0, 0, 0, 0, 1.048, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    35.54% {
      transform: matrix3d(0.979, 0, 0, 0, 0, 0.979, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    41.04% {
      transform: matrix3d(0.961, 0, 0, 0, 0, 0.961, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    52.15% {
      transform: matrix3d(0.991, 0, 0, 0, 0, 0.991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    63.26% {
      transform: matrix3d(1.007, 0, 0, 0, 0, 1.007, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    85.49% {
      transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    100% {
      transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
  }
  @keyframes bounce {
    0% {
      transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    4.7% {
      transform: matrix3d(0.45, 0, 0, 0, 0, 0.45, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    9.41% {
      transform: matrix3d(0.883, 0, 0, 0, 0, 0.883, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    14.11% {
      transform: matrix3d(1.141, 0, 0, 0, 0, 1.141, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    18.72% {
      transform: matrix3d(1.212, 0, 0, 0, 0, 1.212, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    24.32% {
      transform: matrix3d(1.151, 0, 0, 0, 0, 1.151, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    29.93% {
      transform: matrix3d(1.048, 0, 0, 0, 0, 1.048, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    35.54% {
      transform: matrix3d(0.979, 0, 0, 0, 0, 0.979, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    41.04% {
      transform: matrix3d(0.961, 0, 0, 0, 0, 0.961, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    52.15% {
      transform: matrix3d(0.991, 0, 0, 0, 0, 0.991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    63.26% {
      transform: matrix3d(1.007, 0, 0, 0, 0, 1.007, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    85.49% {
      transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    100% {
      transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
  }
  @-webkit-keyframes ball {
    from {
      transform: translateY(0) scaleY(0.8);
    }
    to {
      transform: translateY(-10px);
    }
  }
  @keyframes ball {
    from {
      transform: translateY(0) scaleY(0.8);
    }
    to {
      transform: translateY(-10px);
    }
  }



 
html{
    overflow-x: hidden !important;
}
.modal-dialog {
    position: absolute;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
    right: 85px;
    bottom: 70px;
}
.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--green1) !important;
}
.testimonial-carousel .owl-nav .owl-prev, .testimonial-carousel .owl-nav .owl-next {
    background-color: #004753 !important;
}
owl-carousel .owl-nav.disabled {
    display: flex !important; 
    justify-content: center !important;
}
html{
    font-family: 'Lexend', sans-serif;
}
body{
    background-color: #fff;
    /* overflow-x: hidden; */
}
#cardHover{
    min-height: 300px;
    cursor: pointer;
}
#cardHover:hover{
    background-color:var(--green1) !important;
}
#cardHover:hover #textCardP{
    background-color:var(--green1) !important;
    color: #fff !important;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
} 
#cardHover:hover #cardIconText{
    color: #c1f500;
}
#cardHover:hover img{
   filter: brightness(1);
}
#contentRead{
    font-size: 1.9rem;
    color: #fff;
    border-radius: 15px;
    font-family: 'Lexend', sans-serif;
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
    padding-right: 4rem;
    padding-left: 4rem;

}
#title-text{
    display: flex;
}
#title-text p{
    color: #8affa9;
}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
#cardIconText{
    display: flex;
    font-family: 'Lexend', sans-serif;
    padding-top: 20px;
    padding-left: 30px;
    padding-right: 10px;
    padding-bottom: 70px;
    color: #004753;
    font-size: 22px;
    text-align: initial;
    align-items: center;
    justify-content: space-between;
}
#cardIconText img{
 
    width: 70px;
    filter: brightness(0);
}
#cardIconText p{
    font-family: 'Lexend', sans-serif;
    font-size: 15px;

}
#textCardP{
    color: gray;
    font-family: 'Lexend', sans-serif;
    font-weight: 300;
    color: #004753;
    font-size: 16px;
    padding-left: 30px;
    padding-right: 20px;
    position: absolute;
    bottom: 25px;
    text-align: initial;
}
/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}

.logoImg{
    width: 50px;
}
/*** Gradient Text & BG ***/
.text-primary-gradient {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-secondary-gradient {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-primary-gradient {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

.bg-secondary-gradient {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}

 
[class^="bi-"]::before, [class*=" bi-"]::before {
    font-weight: bold !important;
}
/*** Button ***/
.btn {
    transition: .5s;
}
.bi{
    width: 1.1em !important;
    height: 1.1em !important;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient {
    position: relative;
    overflow: hidden;
    border: none;
    color: #FFFFFF;
    z-index: 1;
}

.btn.btn-primary-gradient::after,
.btn.btn-secondary-gradient::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .5s;
    z-index: -1;
    opacity: 0;
      
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient::after {
    background: var(--green2);
    color: var(--green1);
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    font-family: 'Lexend', sans-serif;

}

.btn.btn-secondary-gradient,
.btn.btn-primary-gradient:hover {
    background: #fff;
    border: 1px solid var(--green2);
    color: var(--green2);
}

.btn.btn-primary-gradient:hover::after,
.btn.btn-secondary-gradient:hover::after {
    opacity: 1;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 60px;
    z-index: 1999;
    border: none;
    background: var(--green2);
}
.back-to-top:hover{
    background-color:#00d479;
}
.carousel-indicators button{
    background-color: var(--green1)!important;
}
.carousel-indicators{
    margin-bottom: -5rem;
}
iframe{
    width: 80%;
    height: 60vh;
    border-radius: 15px;
    max-width: 1100px;
}
#titleCard{
    text-align: initial;
}
.textCard{
    text-align: initial;
    font-family: 'Lexend', sans-serif;
    color: #004753;
    font-weight:300;
    font-size: 18px;
}
.saibamaisBtn{
    display: block;
    font-size: 14px;
    border-radius: 20px;
    background-color:#00d479;
    padding: 8px;
    padding-right: 20px;
    padding-left: 20px;
    color: #004753;
    position: absolute;
    margin-top: 3rem;
    font-weight: 600;
}
.data-card{
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.data-card h1{
    font-family: 'Sora', sans-serif !important;
    color: #004753;
    font-size: 80px;
}
#data-plus{
    font-size: 85px;
}
#btn-landing{
    padding-bottom: 10px !important;
    padding-top: 10px !important;
    padding-right: 35px !important;
    padding-left: 35px !important
}
.data-card{
    color:#004753;
    font-family: 'Sora', sans-serif;
    font-size: 50px;
    margin-bottom: -25px;
    display: flex;
    align-items: baseline;
}
.card-table{
    width: 100%;
    margin-top: 5rem;
}
.card-row{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}
.card-i small{
    font-family: 'Lexend', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--green1);
    margin-left: 10px;

}
.card-i{
    min-height: 400px;
    text-align: center;
    /* zoom: 0.75; */
}
.card-i .img1{
    width: 220px;
}
.card-i .img2{
    width: 260px;
    margin-bottom: -44px;
}
.card-i .img3{
    width: 140px;
     margin-top: 35px;
    margin-bottom: 22px;
}
.card-i .img4{
    width: 220px;
}
.saibamaisBtn:hover{
    background-color: #004753;
    color: #00d479;
}
#firstRow{
    width: 56%;
}
#secondRow{
    width: 40%;
    display: grid;
    justify-items: center;
}
#s2-1{
    background-color: var(--green3);
    border-radius: 15px;
    /* cursor: pointer; */

}
#s2-2{
    background-color: #00d479;
    border-radius: 15px;
    margin-top: 1rem;
}
#s2-1:hover {
    transition: 1s;
    /* filter: drop-shadow(2px 4px 6px var(--green1)); */
}
#s2-2:hover {
    transition: 1s;
    /* filter: drop-shadow(2px 4px 6px var(--green1)); */
}
#s2-2 img{
    width: 425px;
    /* cursor: pointer; */
}
#titleCard a{
    display: block;
    font-size: 14px;
     border-radius: 20px;
    border: 2px solid var(--green1);
    padding: 8px;
    padding-right: 20px;
    padding-left: 20px;
    color: #004753;
}
#titleCard a:hover{
    background-color: #004753;
    color: #c1f500;
}
.divContent{
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}
.divContent i{
    font-size: 20px;
    font-weight: 600;
}
/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 0px;
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--green1) !important;
    outline: none;
    transition: .5s;
    font-family: 'Lexend', sans-serif;

}
.dropdown-item{
    color:var(--green1);
    text-decoration: none;
    background-color: #fff;
    border-radius: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px;
     
}
.dropdown-item:hover {
    text-decoration: none;
    background-color: var(--green2);
    border-radius: 25px;
 
}
.dropdown-menu li{
    border-radius: none;
}
.dropdown-menu{
    position: relative;
    margin-right: 25px;
    padding: 0px;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--green1) !important;
    outline: none;
    transition: .5s;
}
.carousel-inner {
    border-radius: 15px;
}
.form-control{
    border-radius: 30px !important;
    border: 1px solid #c1f500;
    
}
.form-floating input{
    color: #fff !important;
}
.col-lg-3 h1{
    color:#c1f500;
    font-family: 'Lexend', sans-serif !important;
}
#form-inputs-2 h1{
    font-family: 'Lexend', sans-serif;
}
.form-floating>.form-control{
    background-color: transparent !important;
}
#form-class{
   
    padding: 20px;
    border-radius: 20px;
}
#form-inputs{
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    background:#004753;
    padding: 40px;
}
#form-inputs-2{
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    width: 40%;
    padding: 105px;
    background: #004753;
}
.form-floating>label {
    color: var(--green3) !important;
 }
.navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid;
    border-color: var(--light) transparent transparent transparent;
    transition: .5s;
    display: none;
}
.bg-light {
    background-color: #F5F5F5 !important;
}
#iconLogo{
    width: 140px;
}
#iconLogo2{
    width: 122px;
    margin-top: -10px;
}
#onlymb1{
    margin-top: 0px;
}
#onlymb2{
    margin-top: 25px;
}
#onlymb3{
    margin-top: 41px;
}
.m-0 {
    margin: 0 !important;
    text-align: center;
    color: #004753;
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 14px;
    

}
#cardRedespacho{
    background-color: var(--green3);
    padding: 30px;
    border-radius: 15px;
    color: #004753;
    width: 100% !important;
    min-height: 250px;

}
#cardRedespacho1{
    background-color: var(--green3);
    background-image: url(../assets/Banners/caminhao.png);
    padding: 30px;
    border-radius: 15px;
    color: #004753;
    width: 100% !important;
    min-height: 250px;
    background-size: 570px;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: 95px;
    
}
#cardRedespacho2{
    background-color: var(--green1);
    background-image: url(../assets/Banners/a2.png);
    padding: 30px;
    border-radius: 15px;
    color: #004753;
    width: 100% !important;
    min-height: 250px;
    background-size: 450px;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: 65px;
}
#cardRedespacho3{
    background-color: var(--green4);
    background-image: url(../assets/Banners/a3.png);
    padding: 30px;
    border-radius: 15px;
    color: #004753;
    width: 100% !important;
    min-height: 250px;
    background-size: 450px;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: 70px;
}
#cardRedespacho4{
    background-color: var(--green2);
    background-image: url(../assets/Banners/a4.png);
    padding: 30px;
    border-radius: 15px;
    color: #004753;
    width: 100% !important;
    min-height: 250px;
    background-size: 680px;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: 10px
}
#cardRedespacho5{
    background-color: var(--orange1);
    background-image: url(../assets/Banners/a5.png);
    padding: 30px;
    border-radius: 15px;
    color: #004753;
    width: 100% !important;
    min-height: 250px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: center;
}
#cardRedespacho6{
    background-color: var(--purple2);
    background-image: url(../assets/Banners/a6.png);
    padding: 30px;
    border-radius: 15px;
    color: #004753;
    width: 100% !important;
    min-height: 250px;
    background-size: 680px;
    background-repeat: no-repeat;
    background-position-x: center;
}
#s2-3{
    background-color: var(--green1);
    border-radius: 15px;
    color: #fff;
}
#s2-3 .textCard{
    color: #fff;
}
.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link::before,
.navbar-light .navbar-nav .nav-link.active::before {
    top: 0;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 70px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}
.carousel-indicators [data-bs-target] {
    border-radius: 100%;
    width: 15px;
    height: 15px;
    margin-left: 8px;
    margin-right: 8px;

}
.row{
    justify-content: center;
}
.mb-5{
    font-family: 'Lexend', sans-serif;
}
/* #banner1{
    background-image: url(../assets/Banners/bf-bg.jpg) !important;
    background-size: cover;
    
} */
#banner2{
   
    background-image: url(../img/banner.png) !important;
    background-size: cover;
}
#banner3{
    background-image: url(../assets/Banners/Banner\ 2.jpg) !important;
    background-size: cover;
}
#banner4{
    background-image: url(../assets/Banners/btruck.png) !important;
    background-size: cover;
}
rect{
 
    fill: none;
}
.navbar-light .navbar-toggler {
    color: var(--green1);
    border-color: var(--green1)
}
@media (max-width: 991.98px) {
    
    .dropdown-menu{
        border: none;
    }
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--green1) !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        display: none;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--green1) !important;
    }

    .navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 auto;
        width: 24%;
    }
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 1rem;
        left: 0;
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
        top: 0;
    }

    .sticky-top.navbar-light .navbar-nav .nav-link::before {
        border-top-color: var(--primary);
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}


/*** Hero Header ***/
.hero-header {
    margin-bottom: 6rem;
    padding: 7rem 0 0 0;
    background:
        url(../img/bg-circle.png),
        url(../img/bg-triangle.png),
        url(../img/bg-bottom.png),
        linear-gradient(to bottom right, var(--primary), var(--secondary));
    background-position:
        left 0px top 0px,
        right 0px top 50%,
        center bottom;
    background-repeat: no-repeat;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 2rem 0 0rem 0;
    }
}


/*** Feature ***/
.feature-item {
    transition: .5s;
    cursor: pointer;
}

.feature-item:hover {
    margin-top: -15px;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
}


/*** Pricing ***/
.pricing .nav {
    padding: 2px;
}

.pricing .nav-link {
    padding: 12px 30px;
    font-weight: 500;
    color: var(--dark);
    background: #FFFFFF;
}

.pricing .nav-item:first-child .nav-link {
    border-radius: 30px 0 0 30px;
}

.pricing .nav-item:last-child .nav-link {
    border-radius: 0 30px 30px 0;
}

.pricing .nav-link.active {
    color: #FFFFFF;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}


/*** Screenshot ***/
.screenshot-carousel {
    position: relative;
    width: 253px;
    height: 500px;
    padding: 15px;
    margin-right: 30px;
}

.screenshot-carousel::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/screenshot-frame.png) center center no-repeat;
    background-size: 253px 500px;
    z-index: 1;
}

.screenshot-carousel .owl-item img {
    position: relative;
    width: 223px;
    height: 470px;
}

.screenshot-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.screenshot-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    border-radius: 15px;
    transition: .5s;
}

.screenshot-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 5px;
    left: 5px;
    background: #FFFFFF;
    border-radius: 5px;
}

.screenshot-carousel .owl-dot.active {
    box-shadow: 0 0 10px var(--dark);
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
   

}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

.testimonial-carousel .owl-item.center .testimonial-item h5,
.testimonial-carousel .owl-item.center .testimonial-item p {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 0px;
    display: flex;
    justify-content: center;
}
.testimonials-stars i{
    color: #00d479;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--green1) !important;
    border-radius: 60px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}


/*** Footer ***/
.footer {
    margin-top: 6rem;
    padding-top: 9rem;
    background:
        url(../img/bg-circle.png),
        url(../img/bg-triangle.png),
        url(../img/bg-top.png),
        linear-gradient(to bottom right, var(--primary), var(--secondary));
    background-position:
        left 0px bottom 0px,
        right 0px top 50%,
        center top;
    background-repeat: no-repeat;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
.ct6-4{
     
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.c6{
    width: 54%;
    background-color: var(--orange1);
    border-radius: 20px;
}
.c6 a{
    display: inline;
    font-size: 14px;
    border-radius: 20px;
    background-color: transparent;
    padding: 8px;
    padding-right: 20px;
    padding-left: 20px;
    color: #fff;
    position: initial;
    margin-top: 3rem;
    font-weight: 600;
    border: 2px solid #fff;
    margin-left: 10%;
}
.btn-icon{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-bottom: 40px;
}
.c6 i{
    color: #fff;
    margin-right: 10%;

}
.c6 a:hover{
    background-color: #fff;
    color:var(--orange1);
}
.c6 h1{
    color: #fff;
    width: 80%;
    padding: 80px;
}
.c4{
    width: 44%;
    background-color: var(--orange1);
    border-radius: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../assets/Banners/truck1.png');
}
.secondcard .owl-item {
    background-color: transparent !important; 
    margin-left: 0px !important;
    width: 360px !important;

}
.secondcard .owl-stage-outer{
    margin-top: -4rem;
}
 
.owl-item.center .testimonial-item #text-p {
    background-color: transparent !important;
}
.testimonial-carousel .owl-nav {
    margin-top: 20px;
    display: flex !important;
    justify-content: center;
}
.footer-content{
    display: flex;
    align-items: baseline;
    justify-content: space-evenly;
    color: #004753;
    font-weight: 500;
}
.content-f5{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 8%;
}
.content-f4{
    width: 20%;
}
.footer-content i{
    font-size: 25px;
}
 
@media(max-width: 650px){
    .datas-vol{
        width: 300px !important;
    }
    #cont-xxl{
        margin-bottom: 1rem !important;
    }
    #cardRedespacho1{
   
            background-position-y: 155px;
            background-position-x: -17px;
        min-height: 305px;
    }
    #cardRedespacho2{
        background-position-y: 60px;
        background-size: 700px;
        min-height: 250px;

    }
    #cardRedespacho3{
         
        min-height: 230px;

    }
    #cardRedespacho4{
         
        min-height: 230px;

    }
    #cardRedespacho5{
         
        min-height: 230px;

    }
    #cardRedespacho6{
        
        min-height: 230px;

    }
    #h1-text-mob{
        display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    }
    #text-p-mob{
        font-size: 30px !important;
    }
    #mobile-grid{
    display: grid !important;
    margin-top: 0px !important;
 
    }
    #btn-landing{
        display: unset !important;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    #data-vol{
        transform: scale(1.3);
    }
    .clientes_logo{
        transform: scale(1.3);
        margin-top: 20px;
        width: 100% !important;
    }
    #cota-btn{
        display: block !important;
        font-size: 14px;
    }
    .conteudo-cols{
        display: block !important;
    }
    #carousel-mobile{
    zoom: 0.34 !important;
    transform: scale(1.1) !important;
    }
 
    .col-sm{
        display: contents;
    }
    #card-missao img {
        height: auto !important;
    }
    .saibamaisBtn, .sbm-btn{
        zoom: 1.4 !important;
    }
    .content-f5{
    margin-bottom: 20px;
    margin-top: 20px;
    }
    #head-cards{
        zoom: 0.34 !important;
     }
    #video-institutional{
        zoom: 0.5 !important;
        margin-bottom: 70px !important;
    }
    .carousel-indicators{
        zoom: 2 !important;
    }
    #contentRead {
        font-size: 18px;
        color: #fff;
        border-radius: 15px;
        font-family: 'Lexend', sans-serif;
        padding: 0
        ;
    }
    #first-quad{
        zoom: 0.4 !important;
    }
    #containers-2{
 }
#text-card-g{
    zoom: 0.6;
    width: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
#text-card-duo{
    display: grid !important;
    
}
#boxImg{
    width: 13rem !important;
    margin-top: -8rem !important;
    margin-left: 6rem !important;
}
#BoxGreen{
    width: 102% !important;
    padding: 0 !important;
}
#bg-air{
     padding: 0px;
}
#boxContainer{
    width: 101.5% !important;
    padding: 0 !important;
    margin-top: 15px;
}
#bg-air img{
width: 40rem !important;
}
 
#hidden-mobile{
    display: none !important;
}
#mobile-text-g{
    font-size: 30px !important;
 
    padding-left: 11% !important;
    padding-right: 10% !important;
 
}
#mobile-text-m{
    font-size: 25px !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
    text-align: center !important;
}
#titleCard{
 
}
.mobile-cargas{
    text-align: initial;
    display: block !important;
}
#cards-mobile{
    grid-template-columns: 1fr 1fr !important;
    /* display: grid !important; */
}
 
.textCard{
    font-size: 25px;
    line-height: 24px;
}
.saibamaisBtn {
    margin-top: 1rem;
}
#review{
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
}
.ct6-4{
    zoom: 0.5 !important;
}
.c6 h1 {
 
    padding: 30px;
}
.truck-card-text{
    font-size: 30px !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
    text-align: initial !important;
}
#form-class{
    padding: 20px !important;
}
#form-inputs-2 {
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
    width: 100%;
    padding: 20px;
    background: #004753;
    text-align: center;
    border-radius: unset;
}
#form-inputs {
    /* border-top-right-radius: 20px; */
    border-bottom-right-radius: 20px;
    background: #004753;
    padding: 40px;
    border-bottom-left-radius: 20px;
    margin-top: -10px !important;
    border-top-right-radius: 0px !important;
}
.footer-content{
    display: grid;
    margin-left: 6% !important;
     
}
.content-f5 {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
}
.content-f4{
    width: 100%;
}
.content-f1{
    margin-top: -20px;
}
.content-f1 img{
    width: 280px;
    margin-bottom: 20px;
  
}
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    /* --bs-gutter-x: 0.5rem !important;  */
}
#conexao-card{
    width: 95% !important;
    margin-top: 20px;
}
#hide-testimonial{
    display: none !important;
}
.card-i, .feature-item {
    /* zoom: 0.5; */
}
.owl-nav{
    display: none !important;
}
#cards-info-mobile{
    grid-template-columns: 1fr 1fr !important;
    display: grid !important;
    zoom: 0.65;
}
#whats-icon{
    font-size: 30px !important;
}
.h1-text{
    margin-top: 20px !important;
 }
.test-p{
 }
#h2-text{
    font-size: 18px !important;
}
.green-block-mid h1 {
    font-size: 35px !important;
    padding: 50px 30px 0px 0px !important;
    padding-left: 30px !important;
 
}
}
@media(min-width: 801px) and (max-width: 1100px){
    .divContent img{
        zoom: 0.6 !important;
    }
    #BoxGreen{
        margin-left: 30px !important;
    }
    #hidden-mobile{
        display: none !important;
    }
    #text-card-g{
        width: auto !important;
    }
    #text-card-duo{
        display: grid !important;
        padding-right: 0px !important;
    }
    #boxContainer{
        margin-top: 15px;
        margin-left: 25px;
        width: 94.5% !important;
    }
    #boxImg{
        width: 14rem !important;
    }
    .card-table{
        zoom: 0.75 !important;
    }
    .carousel-inner {
        zoom: 0.6 !important;
    }
    #form-class{
        padding: 20px !important;
    }
    #form-inputs-2 {
        border-top-left-radius: 20px !important;
        border-top-right-radius: 20px !important;
        width: 100%;
        padding: 20px;
        background: #004753;
        text-align: center;
        border-radius: unset;
    }
    #form-inputs {
        /* border-top-right-radius: 20px; */
        border-bottom-right-radius: 20px;
        background: #004753;
        padding: 40px;
        border-bottom-left-radius: 20px;
        margin-top: -10px !important;
        border-top-right-radius: 0px !important;
    }
    .footer-content{
        display: grid;
        margin-left: 6% !important;
         justify-content: normal !important;
    }
    .content-f5 {
        display: flex;
        align-items: center;
        width: 100%;
        margin-top: 20px;
        margin-bottom: 20px;
        justify-content: space-evenly;
    }
    .content-f4{
        width: 100%;
    }
    .content-f1{
        margin-top: -20px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .content-f1 img{
        width: 320px;
        margin-bottom: 20px;
      
    }
    #firstRow, #secondRow{
        zoom: 0.75 !important;
    }
    #cards-info-mobile-1 {
        zoom: 0.75 !important;
    }
}
@media(min-width: 500px) and (max-width:800px){
   
    #cota-btn{
        display: block !important;
        font-size: 14px;
    }
    .conteudo-cols{
        display: block !important;
    }
    html{
        overflow-x: hidden;
    }
    .carousel{
        transform: scale(1.2);
        ZOOM: 0.4;
        margin-top: 100px;
    }
    #video-institutional{
        transform: scale(1.2);
        ZOOM: 0.4;
    }
    #firstRow, #secondRow{
        zoom: 0.59;
        width: 100%;
    }
    .divContent img{
        zoom: 0.6 !important;
    }
    #BoxGreen{
        margin-left: 30px !important;
    }
    #hidden-mobile{
        display: none !important;
    }
    #text-card-g{
        width: auto !important;
    }
    #text-card-duo{
        display: grid !important;
        padding-right: 0px !important;
    }
    #boxContainer{
        margin-top: 15px;
        margin-left: 25px;
    }
    #boxImg{
        width: 14rem !important;
    }
    #cards-mobile{
        /* display: grid; */
        grid-template-columns: 1fr 1fr;
    }
    .ct6-4{
        zoom: 0.7;
    }
    #form-class{
        padding: 20px !important;
    }
    #form-inputs-2 {
        border-top-left-radius: 20px !important;
        border-top-right-radius: 20px !important;
        width: 100%;
        padding: 20px;
        background: #004753;
        text-align: center;
        border-radius: unset;
    }
    #form-inputs {
        /* border-top-right-radius: 20px; */
        border-bottom-right-radius: 20px;
        background: #004753;
        padding: 40px;
        border-bottom-left-radius: 20px;
        margin-top: -10px !important;
        border-top-right-radius: 0px !important;
    }
    .footer-content{
        display: grid;
        margin-left: 6% !important;
         justify-content: normal !important;
    }
    .content-f5 {
        display: flex;
        align-items: center;
        width: 100%;
        margin-top: 20px;
        margin-bottom: 20px;
        justify-content: space-evenly;
    }
    .content-f4{
        width: 100%;
    }
    .content-f1{
        margin-top: -20px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .content-f1 img{
        width: 320px;
        margin-bottom: 20px;
      
    }
    .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        /* --bs-gutter-x: 0.5rem !important;  */
    }
    #conexao-card{
        width: 95% !important;
        margin-top: 20px;
    }
    #hide-testimonial{
        display: none !important;
    }
    .card-i, .feature-item {
        /* zoom: 0.53; */
    }
    .owl-nav{
        display: none !important;
    }
 
    #whats-icon{
        font-size: 30px !important;
    }
    /* quem somos */
    
}
@media(min-width: 500px) and (max-width: 1000px){
    .conteudo-cols{
        display: block !important;
    }
    #cota-btn{
        display: block !important;
    }
    #card-missao img {
        height: auto !important;
    }
    #head-cards{
        zoom: 0.4 !important;
        max-width: none !important;
    }
    #anula-evento{
        max-width: none !important;
    }
}
@media(min-width: 700px){
    #table-cards-view{
    display: grid;
    grid-template-columns: 1fr 1fr;

}
}
@media(min-width: 800px) and (max-width: 1000px){
    .green-block-mid h1 {
        font-size: 50px !important;
    }
}
@media(min-width: 1001px) and (max-width: 1207px){
    .green-block-mid h1 {
        font-size: 35px !important;
        padding: 50px 40px 0px 0px !important;
    }
}
@media(min-width: 900px){
    #containers-2 {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
    }
}
@media(min-width: 1020px) and (max-width: 1400px){
#cards-info-mobile{
    zoom: 0.8 !important;
}


}

/* quem somos   */

.green-block-mid h1{
    font-size: 40px;
    padding: 80px 40px 0px 0px;
    padding-left: 44px;
    padding-bottom: 0px;
    font-family: 'Lexend', sans-serif;
 
}
#light-green-bg{
    background-color:#c1f500;
    border-radius: 10px;
}
#cover-content{
    background-image: url('../assets/Banners/p2-1.png');
    height: 500px;
    background-size: contain;
    /* background-repeat: no-repeat; */
    background-position: center;
    border-radius: 10px;
    
}
.h1-text{
    font-family: 'Lexend', sans-serif;
    margin-top: 70px;
    margin-bottom: 25px;

}
.test-p{
    font-family: 'Lexend', sans-serif;
    color:#004753;
    font-size: 18px;
    font-weight: 200;
}
.datas-vol{
    width: 100%;
    border-radius: 20px;
}
#h5-card{
    text-align: left;
    font-family: 'Lexend', sans-serif;
    color: #c1f500;
}
#card-missao{
    background-color: #004753;
    border: none;
    color: #fff;
    height: 100%;
}
#card-missao img{
    height: 40%;
    filter: contrast(0.8);
}
#h5-card .card-text {
    font-size: 20px !important;
}
.consult-btn:hover{
    color: #262b4782 !important;
}
.row-cards h5{
    font-family: 'Lexend', sans-serif;
    color: #004753;
}
.row-cards p{
    font-family: 'Lexend', sans-serif;
    color: #004753;
    font-weight: 200;
}
.row-cards .col .card{
    background-color: #e7e7e747 !important;
    border: none !important;
    min-height: 330px;
}
.row-cards .col .card-body:hover{
    background-color: var(--green1) !important;
    border-radius: 10px;
    cursor: pointer;
 
}
.row-cards .col .card-body:hover h5{
    color: var(--green3) !important;

}
.row-cards .col .card-body:hover p{
    color: var(--green3) !important;

}
.row-cards .col .card .card-body{
    text-align: initial;
    /* display: grid; */
}
.row-cards .col .card .card-body .card-text{

    font-size: 15px;
   
}
#col-talentos{
    background-image: url('../assets/Banners/mulher_vb.png');
    background-size: cover;
}
#mobile-grid{
    margin-bottom: 50px;
    margin-top: 50px;
}

/* Custom button style for Fale Conosco */
.fale-conosco-btn {
    display: none; /* Replaces d-none */
    margin-top: -4px;
    background: var(--green2); /* from btn-primary-gradient */
    color: var(--green1); /* from btn-primary-gradient */
    font-family: 'Lexend', sans-serif;
    padding: 0.5rem 1.5rem; /* from py-2 and px-4 */
    border-radius: 50rem; /* from rounded-pill */
    border: 1px solid transparent;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.fale-conosco-btn:hover {
    background: #fff;
    
    
}

.fale-conosco-btn .fab.fa-whatsapp {
    font-weight: bold;
}

@media (min-width: 992px) {
    .fale-conosco-btn {
        display: inline-block; /* Replaces d-lg-block */
    }
}

/* Remove green hover effect from "Fale Conosco" dropdown items */
[aria-labelledby="faleConoscoDropdown"] .dropdown-item:hover,
[aria-labelledby="faleConoscoDropdown"] .dropdown-item:focus {
    background-color: #fff;
    color: var(--green1);
    border-radius: 10px;
}
