/* CSS Variables */
:root {
    --primary-color: #202c59;
    --primary-rgb: 32, 44, 89;
    --secondary-color: #fed954;
    --text-light: #ffffff;
    --text-dark: #333333;
    --hover-color: #1a2449;
}

* {
    outline: none;
}
a,
button {
    text-decoration: none!important;
    cursor: pointer!important;
    transition: 1s;
}
p {
    line-height: 1.5;
    font-family: 'Archivo', sans-serif;
}
ul {
    padding: 0;
}
 ul li {
    margin-left: 20px ;
    font-family: 'Archivo', sans-serif;
 }
body {
    margin: 0;
    font-family: 'Archivo', sans-serif;
}
.container {
    width: 100%;
    align-items:center;
}

.fixo .nav.menu {
    position: fixed;
    width: 100%;
    top: 0;
}
.fixo ul.nav,
.fixo .navbar-default,
.fixo .navbar-header .navbar-brand,
.fixo #bs-example-navbar-collapse-1 {
    height: 100px;
    background: #202c59;
}

.titulo-geral {
    color: #202c59;
    font-size: 36px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin: 40px 0;
}

.owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    margin-top: -30px;
    position: relative;
    z-index: 9;
}
.owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px;
    background: #888888;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}
.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
    background: #FFFFFF;
}

.btn-geral {
    font-size: 14px;
    color: #fff;
    display: table;
    background: #fb3c3a;
    padding: 7px 30px;
    border-radius: 50px;
    margin: 20px auto 0;
}
.btn-geral:hover {
    color: #fff;
    background: #333367;
}
.size-responsive-img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
}

.topo {
    position: absolute;
    z-index: 999;
    width: 100%;
    top: 10px;
}
.topo img {
    width: 20px;
}
.topo .container {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #fff;
}
.topo .container:after,
.topo .container:before {
    display: none;
}
.topo p,
.topo a {
    font-size: 14px;
    color: #fff;
}
.topo a:hover {
    color: #fed954;
}
.topo span {
    width: 5px;
    height: 5px;
    background: #fed954;
    border-radius: 50px;
    display: inline-flex;
    margin: 0 5px;
}

header {
    position: absolute;
    top: 60px;
    z-index: 999;
    width: 100%;
}

.navbar {
    background: transparent !important;
    padding: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    margin: 0 !important;
    padding: 0;
    transition: .5s;
}

.navbar-brand .logo {
    transition: .5s;
    width: 200px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    transition: .5s;
}

.nav-item .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #fff !important;
    padding: 10px 10px;
    transition: .5s;
}

.nav-item .nav-link:hover,
.nav-item .nav-link:active,
.nav-item .nav-link:focus,
.nav-item .nav-link.active {
    color: #fed954 !important;
}

.navbar-toggler {
    border-color: #fff;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
    box-shadow: none;
}

.vitrine img {
    height: 100vh;
    object-fit: cover;
    position: absolute;
    z-index: -1;
}
.vitrine .conteudo {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.vitrine .conteudo h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
}
.vitrine .conteudo p {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
}
.vitrine .botoes {
    display: flex;
}
.vitrine .conteudo a.btn-orcamento {
    background: #fed954;
    margin-left: 20px;
}
.vitrine .conteudo a {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #202c59;
    background: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    display: table;
    margin-top: 30px;
}
.vitrine .conteudo a:hover {
    background: #1a2449;
}

.content-servico .card {
    border: .5px solid #a9a9a9;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    padding: 10px;
    margin: 5px;
    width: 250px;
}
.content-servico .card img {
    height: 50px;
    margin-right: 10px;
}
.content-servico .card span {
    font-size: 15px;
}
.content-servico .card h2 {
    color: #202c59;
    font-size: 16px;
    margin: 5px 0 0;
}

.como-funciona .titulo-geral {
    margin-bottom: 10px;
    text-align: center;
}
.como-funciona p.subtitulo {
    text-align: center;
    margin: 0 auto 50px;
    font-size: 16px;
    max-width: 580px;
}
.como-funciona h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #202c59;
    margin: 20px 0;
}
.como-funciona p {
    font-family: 'Archivo', sans-serif;
    color: #666;
}
.como-funciona .box {
    padding: 48px;
    background: #202c59;
    border-radius: 16px;
    margin-top: 60px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}
.como-funciona .box h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 32px;
    color: #202c59;
    margin-bottom: 20px;
}
.como-funciona .box span {
    color: #fed954;
    text-align: center;
    font-size: 32px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
}
.como-funciona .box p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-align: center;

}
.como-funciona .botoes {
    display: flex;
    justify-content: center;
}
.como-funciona .botoes a.btn-orcamento {
    background: #fed954;
    font-size: 18px;
    font-weight: 600;
    margin-left: 20px;
    padding: 16px 32px;
    border-radius: 8px;
    display: table;
}

como-funciona .botoes a.btn-orcamento:hover {
    background: #3a4f8a;
    color: #fff;
}
.como-funciona .botoes a {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #202c59;
    background: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    display: table;
}
.como-funciona .botoes a:hover {
    background: #3a4f8a;
    color: #fff;
}

.servico-locacao {
    flex-direction: column;
    align-items: center;
    border-radius: 16px;
    box-shadow: 0 5px 15px #00000059;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    text-align: center;
    margin: 60px auto;
}
.servico-locacao img {
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
}
.servico-locacao .locacao {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 5%;
    padding-left: 2.5rem;
}
.servico-locacao .locacao h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #202c59;
    margin-bottom: 20px;
}
.servico-locacao .locacao p {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
}
.servico-locacao .botoes {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.servico-locacao .botoes a.btn-orcamento {
    color: #202c59;
    background: #fed954;
    margin-left: 20px;
}
.servico-locacao .botoes a {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #fff;
    background: #1a2449;
    padding: 10px 20px;
    border-radius: 8px;
    display: table;
}
.servico-locacao .botoes a:hover {
    background: #202c59;
    color: #fff;
}

.visibilidade-garantida {
    background-color: #fed954;
    min-height: 300px;
}
.visibilidade-garantida-content {
    align-items: center;
    padding: 48px 0 48px 0;
    color: #202c59;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.visibilidade-garantida-content h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #202c59;
    margin-bottom: 30px;
}
.visibilidade-garantida-content p {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    color: #666;
}

.sobre-nos .owl-stage-outer {
    padding: 20px 30px;
}
.sobre-nos .item {
    border-radius: 10px;
    box-shadow: 0 5px 15px #00000059;
    display: flex;
    flex-direction: column;
    height: 250px;
    padding: 10px;
    width: 350px;
}
.sobre-nos .card-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 5px;
}
.sobre-nos .card-header h1, .sobre-nos .card-header span {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #202c59;
    margin: 0;
}
.sobre-nos .card-header img {
    width: 100px;
}
.sobre-nos .item p {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}
.sobre-nos .owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 40%;
    width: 100%;
}
.sobre-nos .owl-nav img {
    width: 35px;
}
.sobre-nos .owl-prev img {
    position: absolute;
    left: -20px;
}
.sobre-nos .owl-next img {
    position: absolute;
    right: -30px;
}

section.treinamentos {
    padding-top: 50px;
}
.treinamentos .owl-stage-outer {
    padding: 20px 30px;
}
.treinamentos .item {
    border-radius: 10px;
    box-shadow: 0 5px 15px #00000059;
    display: flex;
    flex-direction: column;
    height: 450px;
    width: 350px;
}
.treinamentos img {
    width: 100%;
    height: 80%;
    -o-object-fit: cover;
    object-fit: cover;
}
.treinamentos .treinamentos-header {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 5%;
    padding: 20px;
    text-align: justify;
}
.treinamentos .treinamentos-header h1 {
    color: #202c59;
    font-size: 16px;
    margin: 0;
    text-align: center;
}
.treinamentos .treinamentos-header p {
    margin: 5% 0 0;
}
.treinamentos .treinamentos-header span {
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10%;
}
.treinamentos .treinamentos-header span a {
    color: #202c59;
}
.treinamentos .owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 40%;
    width: 100%;
}
.treinamentos .owl-nav img {
    width: 35px;
}
.treinamentos .owl-prev img {
    position: absolute;
    left: -20px;
}
.treinamentos .owl-next img {
    position: absolute;
    right: -30px;
}

.btn-outros {
    min-height: 150px;
}
.btn-outros-treinamentos-content {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-top: 2%;
}
.btn-outros-treinamentos {
    background-color: #fed954;
    border-radius: 30px;
    color: #202c59;
    font-size: 16px;
    font-weight: 600;
    padding: 20px 30px;
}

.footer {
    background-image: url(../images/fd_rodap%C3%A9.DLuJVmoV.png);
    /* min-height: 00px;
    position: relative; */
}
.footer .content-footer {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 10px;
    color: #fff;
}
.footer .content-footer h1,
.footer .content-footer h2,
.footer .content-footer h3,
.footer .content-footer h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.footer .content-footer h1 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 1%;
    margin-top: 5%;
}
.footer .list-container {
    max-width: 900px;
    width: 100%;
}
.footer .list-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.footer .list-content .pergunta {
    flex: 1 1 45%;
    margin-bottom: 20px;
}
.footer .list-content .pergunta .separator {
    border-top: 3.5px solid #3a4f8a;
    width: 100%;
}
.footer .pergunta p, .pergunta-title {
    border-radius: 5px;
    padding: 15px;
}
.footer .pergunta-title {
    align-items: center;
    display: flex;
    gap: 15px;
}
.footer .btn-fale-conosco {
    background-color: #fed954;
    border-radius: 30px;
    color: #202c59;
    font-size: 16px;
    font-weight: 600;
    padding: 20px 60px;
    border: none;
    margin-bottom: 30px;
  /*  margin: 6% 0;*/
}
/* .footer .content-footer img {

    margin-top: 30px;
} */
.footer .flex-group {
    flex-direction: row;
    width: 900px;
    justify-content: space-between;
    align-items: center;
    display: flex;

}
.footer .content-footer .whatsapp-content {
    align-items: center;
    display: flex;
   /* gap: 10px;*/
    margin: 40px 0;
}
.footer .circle, .content-footer .media {
    align-items: center;
    display: flex;
}
.content-footer .media {
    gap: 10px;
}
.footer .circle {
    background-color: #fed954;
    border-radius: 20px;
    height: 40px;
    justify-content: center;
    width: 40px;
}
.footer .panel {
    background-color: transparent;
}
.footer .panel-heading a.collapsed:after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: #FED954;
  transition: all 0.5s;
  transform: scale(1);
  margin-left: 10px;
}
.footer .panel-heading.active a:after {
  content: '-';
  font-size: 24px;
  font-weight: 300;
  color: #FED954;
  transition: all 0.5s;
  transform: scale(1);
  margin-left: 10px;
}
.footer .panel-heading.active a {
    color: #FED954;
}
.panel-heading {
    padding: 15px;
}
.panel-group .panel-heading+.panel-collapse>.list-group, .panel-group .panel-heading+.panel-collapse>.panel-body {
    border-top: none;
}
.flex-group h2,
.flex-group span {
    font-size: 16px;
    margin: 0 0 5px;
}
.flex.flex-row.items-center {
    display: flex;
    align-items: center;
}
.flex.flex-row.items-center .email {
    margin-right: 15px;
}
.content-footer .media img {
    background-color: #fff;
    border-radius: 12px;
    cursor: pointer;
    height: 35px;
    padding: 5px;
    width: 35px;
}
.content-footer .media img:hover {
    background-color: #fed954;
}

.absolute-group {
    text-align: center;
    padding: 1rem;
    display: flex;
    align-self: center;
    justify-content: center;
    background: rgb(254 217 84);
}
.absolute-group span {
    color: rgb(32 44 89);
    font-size: 10px;
}

.pagina-interna .topo {
    position: relative;
    background: #202c59;
    top: auto;
    padding-top: 10px;
}
.pagina-interna header {
    position: relative;
    top: 0;
    background: #202c59;
    padding: 20px 0px;
}

.topo-interno {
    background: rgb(254, 217, 84);
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.topo-interno a {
    color: #202c59;
    font-weight: 600;
    font-size: 30px;
}

.form-procura {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0 0 0;
    gap: 16px;
}
.form-procura h4, .form-procura p, .form-procura .botoes {
    text-align: center;
}
.form-procura h4 {
    color: #202c59;
    font-weight: 700;
    font-size: 24px;
    text-align: center;
}
.form-procura p {
    color: #524f4f;
    text-align: center;
    font-size: 16px;
    max-width: 992px;
}
.form-procura a {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #202c59;
    background: #fed954;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    border-radius: 50px;
    display: table;
    margin: 0 auto;
}
.form-procura .fa {
    color: #202c59;
    margin-right: 5px;
}
.form-procura select.form-control,
.form-procura input.form-control {
    color: #524f4f;
    font-size: 16px;
    height: 60px;
    border-radius: 50px;
    font-size: 16px;
    border: 2px solid #ccc;
    margin-bottom: 10px;
}
.form-procura textarea.form-control {
    color: #524f4f;
    font-size: 16px;
    height: 200px;
    border-radius: 20px;
    font-size: 16px;
    border: 2px solid #ccc;
    margin-bottom: 10px;
}
.form-procura .form-control::placeholder {
    color: #524f4f;
    font-size: 16px;
}
.form-procura .form-control::-ms-input-placeholder {
    color: #524f4f;
    font-size: 16px;
}
.form-procura button {
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    color: #202c59;
    background: #fed954;
    padding: 20px 40px;
    border-radius: 8px;
    border: none;
    border-radius: 50px;
    display: table;
}

.interna {
    padding-bottom: 100px;
}
.content-servico.demais-servicos .row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.content-servico.demais-servicos .card {
    border: none;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 20px;
    width: 100%;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    margin-bottom: 30px;
}
.content-servico.demais-servicos .card h2 {
    font-weight: bold;
}
.demais-servicos .link-listagem {
    color: #4b5563;
    margin-bottom: .5rem;
    text-align: center;
    display: block;
}
.demais-servicos .link-listagem:hover {
    text-decoration-line: underline;
    color: #3a4f8a;
}

.interna.saibamais .form-procura h2 {
    text-align: center;
    margin: 0 0 10px;
}
.interna.saibamais .form-procura p {
    font-size: 18px;
    text-align: center;
}
.interna.saibamais .form-procura a {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #202c59;
    background: #fed954;
    padding: 10px 20px;
    border-radius: 8px;
    display: table;
    margin: 0 auto;
}
.interna.saibamais .form-procura button {
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    color: #202c59;
    background: #fed954;
    padding: 20px 20px;
    border-radius: 50px;
    display: table;
    margin: 0 auto;
    width: 50%;
    border: none;
    margin-top: 20px;
}

.listagem-produtos {
    padding-top: 100px;
}
.item-produto {
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    border-radius: .75rem;
    height: auto;
    min-height: 320px;
    margin-bottom: 30px;
}
.img-produto {
    background-color: rgb(209 213 219);
    border-radius: .75rem;
    height: 190px;
}
.img-produto img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}
.conteudo-produto {
    font-weight: 700;
    padding: 1.25rem;
    color: #333;
}
.preco-produto {
    color: rgb(32 44 89);
    font-size: 22px;
    margin-top: 1.25rem;
}

.filtros select.form-control,
.filtros input.form-control {
    color: #524f4f;
    height: 40px;
    border-radius: 50px;
    font-size: 12px;
    border: 2px solid #ccc;
    margin-bottom: 20px;
}
.filtros .form-control::placeholder {
    color: #524f4f;
    font-size: 12px;
}
.filtros .form-control::-ms-input-placeholder {
    color: #524f4f;
    font-size: 12px;
}
.filtros button {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: #202c59;
    background: #fed954;
    padding: 10px 20px;
    border-radius: 50px;
    display: table;
    width: 100%;
    border: none;
    margin-top: 20px;
}

.interna.cadastro h1 {
    font-weight: 700;
    font-size: 22px;
}
.interna.cadastro .flex.flex-col.border-solid {
    margin-bottom: 30px;
}
.interna.cadastro h2 {
    font-weight: 400;
    font-size: 16px;
    text-align: right;
}
.interna.cadastro label {
    font-weight: 400;
}
.interna.cadastro .flex.flex-col.border-solid label {
    display: block;
    margin-bottom: 0;
}
.interna.cadastro .flex.flex-col.border-solid input {
    width: 100%;
    border: none;
    border-bottom: 2px solid #ccc;
}
.interna.cadastro .flex.w-\[80\%\].xl\:w-\[60\%\].mt-3.items-start {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.interna.cadastro .flex.w-\[80\%\].xl\:w-\[60\%\].mt-3.items-start label {
    font-weight: bold;
}
.interna.cadastro .flex.w-\[80\%\].xl\:w-\[60\%\].mt-3.items-start input {
    margin-right: 5px;
}
.interna.cadastro button {
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    color: #202c59;
    background: #fed954;
    padding: 20px 20px;
    border-radius: 50px;
    display: table;
    width: 60%;
    border: none;
    margin: 30px auto 100px;
}
.interna.cadastro {
    padding-bottom: 0;
}

.lateral1 {
    border-right: 3px solid #fed954;
    padding-right: 30px;
}

.vitrine-blog {
    margin-top: 80px;

}
.demais-posts{
    margin-top: 30px;
}
.interna.blog .listagem-produtos {
    padding-top: 10px;
}

.interna.blog .item-produto {
    height: auto;
}
.interna.blog .listagem-produtos img,
.interna.blog .img-produto {
    height: 250px;
}

.interna.blog .item-produto-maior .img-produto,
.interna.blog .item-produto-maior img {
    height: 525px;
    border-radius: .75rem;
}
.interna.blog .item-produto-maior .conteudo-produto {
    background-color: rgb(109 109 109);
    border-radius: .75rem;
    color: #fff!important;
    margin-top: -111px;
    position: relative;
    z-index: 9;
}
.interna.blog .item-produto-maior .conteudo-produto p.preco-produto {
    color: #fff;
}

.interna.blog .item-produto-menor  {
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    border-radius: .75rem;
    margin-bottom: 26px;
}
.interna.blog .item-produto-menor .img-produto {
    width: 20%;
    height: 110px;
}
.interna.blog .item-produto-menor .img-produto img {
    width: 100%;
    height: 111px;
    object-fit: cover;
}
.interna.blog .item-produto-menor a {
    display: flex;
}

.interna p {
    font-size: 16px;
}
.interna iframe {
    border-radius: .75rem;
    margin: 60px 0;
}
.interna.saibamais .como-funciona {
    padding-top: 0;
}
.como-funciona i.fa {
    font-size: 36px;
    color: #202c59;
    margin: 50px auto 10px;
    display: table;
}

.por-que {
    padding-top: 100px;
}
.por-que img {
    width: 100%;
    object-fit: cover;
    border-radius: .75rem;
}
.por-que a {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #202c59;
    background: #fed954;
    padding: 10px 20px;
    border-radius: 8px;
    display: table;
    margin: 30px auto 0;
}

.por-que .botoes {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.por-que .botoes a.btn-orcamento {
    background: #fed954;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 8px;
    display: table;
    margin: 0;
    color: #202c59;
}

.por-que .botoes a.btn-orcamento:hover {
    background: #3a4f8a;
    color: #fff;
}
.planos i.fa {
    color: #202c59;
}
.planos .card {
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    border-radius: .75rem;
    padding: 40px 30px;
}

.faq .list-content .pergunta {
    flex: 1 1 45%;
    margin-bottom: 20px;
}
.faq .list-content .pergunta .separator {
    border-top: 3.5px solid #3a4f8a;
    width: 100%;
}
.faq .pergunta p, .pergunta-title {
    border-radius: 5px;
    padding: 15px;
}
.faq .pergunta-title {
    align-items: center;
    display: flex;
    gap: 15px;
}
.faq .panel {
    background-color: transparent;
}
.faq .panel-heading a.collapsed:after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: #FED954;
  transition: all 0.5s;
  transform: scale(1);
  margin-left: 10px;
}
.faq .panel-heading.active a:after {
  content: '-';
  font-size: 24px;
  font-weight: 300;
  color: #FED954;
  transition: all 0.5s;
  transform: scale(1);
  margin-left: 10px;
}
.faq .panel-heading.active a {
    color: #FED954;
}
.faq .list-container {
    padding: 60px;
    background: #202c59;
    border-radius: 20px;
    margin-top: 60px;
    color: #fff;
}
.faq .titulo-geral {
    color: #fff;
    margin: 0 0 60px;
}

.perfil-box {
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    border-radius: .75rem;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 180px;
    display: flex;
}
.perfil-box-interno {
    justify-content: space-evenly;
    width: 100%;
    display: flex;
}
.perfil-img {
    background-color: rgb(220 220 220);
    border-radius: .75rem;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    display: flex;
    margin-right: 20px;
    margin-left: 10px;
}
.perfil-dados {
    width: 70%;
}
.perfil-dados .font-bold {
    color: rgb(32 44 89);
    font-weight: 700;
}
.flex1 {
    gap: .5rem;
    align-items: center;
    display: flex;
}
.flex2 {
    align-items: flex-end;
    flex-direction: column;
    width: 100%;
    display: flex;
}
.flex3 {
    padding-right: .5rem;
    padding-left: .5rem;
    justify-content: space-between;
    align-items: center;
    display: flex;
    margin-top: 20px;
}
.flex3 .text-white {
    width: 60%;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: rgb(32 44 89);
    border-radius: 9999px;
    text-align: center;
    color: rgb(255 255 255);
    font-weight: 700;
    border: none;
}
.flex3 .text-white .fa {
    font-size: 16px;
    color: rgb(254 217 84);
    margin-right: 10px;
}
.flex3 .bg {
    background: rgb(234 51 56);
    padding: 10px 15px;
    font-weight: bold;
    color: #fff;
    border: none;
    border-radius: 50px;
}
.perfil-box2 {
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    color: rgb(32 44 89);
    border-radius: .75rem;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    display: flex;
    margin-top: .75rem;
}
.perfil-box2-interno {
    justify-content: center;
    flex-direction: column;
    display: flex;
}
.perfil-box2-interno2 {
    padding: 1.25rem;
    justify-content: space-between;
    align-items: center;
    width: auto;
    display: flex;
}
.box2-flex1 {
    gap: 1.25rem;
    display: flex;
}
.material-symbols-outlined {
    color: rgb(32 44 89);
    padding: 3px;
    background-color: rgb(254 217 84);
    border-radius: 9999px;
}
.box2-flex1 .font-bold {
    font-weight: bold;
}

.vitrine-internas h2 {
    text-align: left;
    border-bottom: 5px solid #e5e5e5;
    padding-bottom: 20px;
}
.vitrine-internas p {
    text-align: left;
}
h4.preco {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    background: #e5e5e5;
    padding: 15px;
    border-radius: 10px;
    margin: 30px 0 0;
}
.owl-internas {
    margin-top: 60px;
}
.owl-internas img {
    height: 480px;
    object-fit: cover;
    border-radius: 10px;
}
.interna.internas .flex.flex-col.border-solid textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #ccc;
    height: 100px;
}
.interna.internas .cadastro .btns-flex {
    display: flex;
    justify-content: center;
}
.interna.internas .cadastro button {
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    padding: 15px 40px;
    border-radius: 50px;
    display: table;
    width: auto;
    border: none;
    margin: 20px 5px 0;
}
.interna.internas .cadastro button.btn-voltar {
    color: #fed954;
    background: #202c59;
}
 button.btn-primary {
    color: #fed954;
    background: #202c59;
}
a.btn-primary {
    color: #fed954;
    background: #202c59;
}

.btn-orcamento {
    background: #fed954 !important;
    color: #202c59 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    padding: 16px 32px !important;
    border-radius: 8px !important;
    display: inline-block !important;
    border: none !important;
    transition: background 0.2s, color 0.2s !important;
    text-align: center !important;
    box-shadow: none !important;
}
.btn-orcamento:hover, .botoes .btn-orcamento:hover {
    background: #3a4f8a !important;
    color: #fff !important;
}

.btn-prestador {
    background: #fed954;
    color: #202c59;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 12px;
    display: inline-block;
    border: none;
    transition: background 0.2s, color 0.2s;
    text-align: center;
    box-shadow: none;
}
.btn-prestador:hover {
    background: #ffe484;
    color: #202c59;
}

.btn-prestador.btn-branco {
    background: #fff !important;
    color: #202c59 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    padding: 16px 32px !important;
    border-radius: 8px !important;
    display: inline-block !important;
    border: 1px solid #202c59 !important;
    transition: background 0.2s, color 0.2s !important;
    text-align: center !important;
    box-shadow: none !important;
}
.btn-prestador.btn-branco:hover {
    background: #fed954 !important;
    color: #202c59 !important;
    border: 1px solid #fed954 !important;
}

/* --- MOBILE --- */
@media (max-width: 767px) {
    .topo p, .topo a {
        font-size: 10px;
        color: #fff;
    }
    .topo .container {
        display: table;
        text-align: center;
    }
    header {
        top: 70px;
    }
    .navbar-header .navbar-brand .logo {
        width: 150px;
    }
    .container>.navbar-header {
        margin: 0;
    }
    .navbar-default .navbar-toggle {
        padding: 0;
        margin-top: 10px;
        margin-bottom: 0;
        border: none;
    }
    .navbar-default .navbar-toggle .icon-bar {
        background-color: #fff;
        width: 31px;
    }
    .navbar-toggle .icon-bar+.icon-bar {
        margin-top: 8px;
    }
    .navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
        background-color: transparent;
    }
    #bs-example-navbar-collapse-1 {
        float: none;
        background: #202c59;
        z-index: 300;
        position: relative;
        min-height: 320px;
        height: 100%;
        padding: 10px 30px;
        width: 100%;
        margin: 0 auto;
        top: -8px;
    }
    #menu ul.nav.navbar-nav {
        float: none;
        display: block;
        text-align: center;
    }
    #menu ul.nav.navbar-nav>li {
        margin-bottom: 20px;
    }
    .fixo .navbar-default .navbar-toggle {
        margin-top: 40px;
    }
    div#bs-example-navbar-collapse-1 {
        height: 100% !important;
    }
    .navbar-nav {
        width: 100%;
        height: auto!important;
        float: none;
        text-align: center;
        display: block!important;
        margin: 10px 0 0 0;
    }
    .navbar-nav>li>a {
        padding: 15px 10px!important;
    }
    .vitrine .conteudo h1 {
        font-size: 30px;
        line-height: 36px;
        margin: 0 0 10px;
    }
    .vitrine .conteudo p {
        font-size: 14px;
        line-height: 20px;
    }
    .vitrine .conteudo a {
        margin-top: 0;
    }
    .vitrine .conteudo {
        height: 400px;
        justify-content: flex-end;
        padding-bottom: 20px;
    }
    .vitrine img {
        height: 400px;
    }
    .content-servico .card {
        margin: 0 auto 15px;
    }
    .servico-locacao .locacao h1 {
        text-align: center;
    }
    .sobre-nos .owl-nav,
    .treinamentos .owl-nav {
        display: none;
    }
    .sobre-nos .item,
    .treinamentos .item {
        width: 100%;
    }
    .sobre-nos .owl-stage-outer,
    .treinamentos .owl-stage-outer {
        padding: 20px 5px;
    }
    .footer .content-footer img {
        width: 90%;
    }
    .footer .flex-group {
        width: 100%;
        flex-direction: column;
    }
    .footer .content-footer .whatsapp-content {
        margin: 60px 0 40px;
    }
 /*   .content-footer .media {
        margin-bottom: 40px;
    }*/
}
@media (min-width: 768px) {
  .servico-locacao .box {
    background: #fff;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 0;
    overflow: hidden;

  }
  .servico-locacao .col-img {
    flex: 1 1 50%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 0 32px 32px;
  }
  .servico-locacao .img-locacao {
    width: 100%;
    min-height: 100%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
  }
  .servico-locacao .col-texto {
    flex: 1 1 50%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 48px 32px 48px 32px;
    gap: 18px;
  }
  .servico-locacao .titulo-locacao {
    color: #202c59;
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: left;
    width: 100%;
  }
  .servico-locacao .lista-locacao {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .servico-locacao .lista-locacao li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.08rem;
    color: #202c59;
    flex-direction: row;
    margin-bottom: 16px;
  }
  .servico-locacao .lista-locacao i.fa-check-circle {
    color: #27ae60;
    font-size: 1.2rem;
    margin-top: 3px;
  }
  .servico-locacao .lista-locacao .item-title {
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
    font-size: 1.08rem;
    color: #202c59;
  }
  .servico-locacao .lista-locacao .item-desc {
    font-weight: 400;
    color: #333;
    font-size: 1.01rem;
    display: block;
    margin-bottom: 0;
    margin-top: 0;
  }
  .servico-locacao .botoes {
    display: flex;
    flex-direction: row;
    gap: 18px;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    margin-top: 8px;
  }
  .servico-locacao .descricao-locacao {
    font-size: 1.15rem;
    color: #202c59;
    margin-bottom: 24px;
    margin-top: 0;
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #202c59;
        padding: 15px;
        margin-top: 10px;
    }
    
    .navbar-nav {
        align-items: flex-start;
    }
    
    .nav-item .nav-link {
        padding: 10px 0;
    }
}

/* Top Bar Styles */
.top-bar {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .info {
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.top-bar .info i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.top-bar .social-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.top-bar .social-links a:not(.login-button) {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.top-bar .social-links a:not(.login-button):hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Auth Buttons Styles */
.auth-buttons {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.login-button,
.register-button {
    padding: 8px 20px !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
    font-size: 14px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex !important;
    align-items: center;
    white-space: nowrap;
}

/* Login Button */
.btn-outline-light.login-button {
    border: 2px solid var(--text-light) !important;
    background: transparent !important;
    color: var(--text-light) !important;
}

.btn-outline-light.login-button:hover {
    background: var(--text-light) !important;
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Register Button */
.btn-light.register-button {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
}

.btn-light.register-button:hover {
    background: #fff !important;
    border-color: #fff !important;
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(254, 217, 84, 0.3);
}

.login-button i,
.register-button i {
    font-size: 16px;
    margin-right: 8px;
}

@media (max-width: 991px) {
    .auth-buttons {
        margin: 10px 0;
        justify-content: center;
        width: 100%;
    }

    .login-button,
    .register-button {
        padding: 6px 15px !important;
        font-size: 12px !important;
    }
}

/* Estilo para o card de vídeo */
.video {
    border: 1.5px solid #e0e7ef;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(32,44,89,0.06);
    background: #fff;
    padding: 0;
    margin: 32px 0 32px 0;
    overflow: hidden;
}
.video iframe {
    display: block;
    margin: 0;
    border: none;
    border-radius: 16px 16px 0 0;
}
.video-title {
    background: #202c59;
    color: #fed954;
    padding: 12px;
    font-weight: 700;
    font-size: 1.08rem;
    border-radius: 0 0 12px 12px;
    margin: 0;
    text-align: center;
    letter-spacing: 0.5px;
    border-top: none;
}
/* Ajuste para garantir seta padrão do select */
select.form-control {
    -webkit-appearance: menulist !important;
    -moz-appearance: menulist !important;
    appearance: menulist !important;
    background-image: none !important;
    background-color: #fff !important;
    color: #333;
    border: 1px solid #ccc;
    padding-right: 40px;
}

/* Remove ícone customizado vermelho, se houver */
select.form-control::-ms-expand {
    display: block !important;
}
select.form-control:focus {
    outline: 1px solid #202c59;
    border-color: #202c59;
}

.nao-encontrou-produto .btn-primary {
  background: #202c59;
  color: #fed954;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  transition: background 0.2s, color 0.2s;
}
.nao-encontrou-produto .btn-primary:hover, .nao-encontrou-produto .btn-primary:focus {
  background: #fed954;
  color: #202c59;
  border: none;
}
