@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    list-style: none;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
}

body {
    color: #555;
    background: white;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    overflow-x: hidden;
    font-size: 12px;
    font-weight: 400;
}

/* Navegação */
.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    width: 100%;
    background: #243388;
    transition: all 0.5s;
    position: fixed;
    z-index: 99;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.navigation .logo img {
    width: auto;
    height: 45px;
}

.logo span {
    color: var(--dark);
}

.d-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon_nenhum_registro{
    font-size: 5rem;
    margin-top: 30px;
}

.dropdown-content a {
    display: block;
    color: #243388;
    text-align: left;
    padding: 14px 16px;
    text-decoration: none;
}

.dropdown-content a:hover {
    background-color: #555;
    border-radius: 10px;
}

/* Dropdown */
.dropdown {
    display: inline-block;

}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    z-index: 1;
    transition: 0.2s;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.navigation ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0 !important;
}

.navigation ul li a {
    font-size: 14px;
    transition: all 0.5s;
    text-decoration: none;
    color: #ffffff ;
    cursor: pointer;
}

.navigation ul li a:hover {
    color: #b09771 !important;
}

.nav-item a {
    color: white !important;
}

.navigation i {
    cursor: pointer;
    font-size: 1.5rem;
}

.menu {
    cursor: pointer;
    display: none;
}

.menu .bar {
    display: block;
    width: 28px;
    height: 3px;
    border-radius: 3px;
    background: #b09771;
    margin: 5px auto;
    transition: all 0.3s;
}

.menu .bar:nth-child(1),
.menu .bar:nth-child(3) {
    background: #b09771;
}

/* fim navegação */

/*  inicio do conteudo*/
.banner {
    background-image: url('../img/bg1.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

.container-banner {
    position: relative;
    color: white;
    z-index: 9;
    text-align: center;
}

.container-banner h1 {
    font-weight: 600;
}

.container-banner span {
    font-size: 18px;
}

.banner .texto-banner {
    text-align: center;
    width: 100%;
    position: absolute;
    top: 50%;
}

.div-t {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.texto .centrl {
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);

}

.overlaycta {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 15px;

}

.banner .texto-banner h1,
h2 {

    color: white;
}

#sobre {
    background-color: #f1f2f2;
}

#sobre h2 {
    color: black;
    font-weight: 600;
    text-transform: capitalize;
}

section {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;

}

.img-sobre {
    position: relative;
    margin: 10px;
}

.img-sobre img {
    width: 100%;
}



.containerx {
    padding: 0px 20px
}



p {
    line-height: 24px;
    margin-bottom: 24px;
    font-size: 15px;
}



a {
    transition: 0.2s;
}

.xs {
    margin-bottom: 10px;
}

.card-ajuda {
    padding: 20px;
    background-color: white;
    box-shadow: 1px 1px 1px 1px #d3d3d350;
    border-radius: 15px;
    text-align: left;
    margin: 10px 0px;
    transition: 0.4s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.card-ajuda:hover {
    background-color: #dddddd;
}

.card-ajuda h3 {
    font-weight: 600;
    margin-top: 15px;
    font-size: 25px;
}

.card-ajuda p {
    color: #555;
    margin-top: 15px;
    font-weight: 400;
    font-size: 15px;
}


.img-ajuda img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    height: 100%;
    border-radius: 15px;
    transition: 0.3s;
}




.img-ajuda {
    height: 200px;
    width: 100%;
}

.ajuda-content h3 {
    color: black;
}

#ajuda {
    background-color: #ebebeb;
}

.div-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0px;
}

.btn-contato {
    position: relative;
    font-family: inherit;
    font-weight: 500;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    background: linear-gradient(to right, #243388, #1D286D);
    color: rgb(255, 255, 255);
    overflow: hidden;
}

.btn-contato span {
    position: relative;
    z-index: 10;
    transition: color 0.4s;
    display: inline-flex;
    align-items: center;
    padding: 0.8em 1.2em 0.8em 1.05em;
}

.btn-contato::before,
.btn-contato::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.btn-contato::before {
    content: "";
    background: #ecb606;
    width: 120%;
    left: -10%;
    transform: skew(30deg);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.btn-contato:hover::before {
    transform: translate3d(100%, 0, 0);
}

.btn-contato:active {
    transform: scale(0.95);
}

button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

button.saiba-mais {
    width: 12rem;
    height: auto;
}

button.saiba-mais .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #282936;
    border-radius: 1.625rem;
}

button.saiba-mais .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
}

button.saiba-mais .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

button.saiba-mais .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
}

button.saiba-mais .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    color: #282936;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
}

button:hover .circle {
    width: 100%;
}

button:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(1rem, 0);
}

button:hover .button-text {
    color: #fff;
}

.card-blog {
    width: 100%;
    border: 1px solid #eee;
    position: relative;
    box-shadow: 1px -1px 19px -7px #616161;
    margin-bottom: 20px;
}

.card-blog h2 {
    color: black;
    font-size: 25px;
    margin-top: 12px;
    font-weight: 600;
}

.tag-blog {
    position: absolute;
    left: 23px;
    top: 20px;
    background-color: #968061f3;
    padding: 8px;
    color: rgb(255, 255, 255);
    border-radius: 10px;
    font-weight: 600;
}

.data {
    display: flex;
    justify-content: end;
    gap: 5px;
    align-items: center;
}

.data span,
i {
    color: #b09771;
    font-weight: 600;
}

.card-blog p {
    color: #555;
}

.card-blog-img {
    width: 100%;
    height: 250px;
}

.btn-blog {
    color: #b09771;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.btn-blog:hover {
    text-decoration: underline;
}

.btn-blog-dv {
    display: flex;
    justify-content: start;
}

.card-blog-img img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
}

.card-blog-content {
    padding: 20px
}

.accordion {
    width: 100%;
}

.accordion-item {
    border: none;
    margin-bottom: 8px;
}

.accordion-title {
    color: black;
    padding: 10px;
    cursor: pointer;
    font-weight: 500;
    font-size: 15px;
    border-bottom: 1px solid black;

}

.accordion-content {
    padding: 10px;
    display: none;

    overflow: hidden;
}

.accordion-content.show {
    display: block;
    max-height: 200px;
    /* Adjust height as needed */
}

.faq .card .card-body p {
    margin-bottom: 14px;
}

@media (max-width: 991px) {
    .faq {
        margin-bottom: 30px;
    }

    .faq .card .card-header .faq-title {
        line-height: 26px;
        margin-top: 10px;
    }
}

.title {
    color: #30373E;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 34px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.inner a.arrow-btn-saiba-mais i {
    color: #30373E;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.inner a.arrow-btn-saiba-mais {
    color: #30373E;
    font-size: 17px;
    font-weight: 500;
}

.headerx {
    text-align: center;
    padding: 40px 0px;

}

.headerx h1 {
    font-weight: 600;
}

.headerx p {
    color: #555;
}

.form {
    width: 340px;
    height: 488px;
    background: #e6e6e6;
    border-radius: 8px;
    box-shadow: 0 0 40px -10px #000;
    margin: calc(50vh - 220px) auto;
    padding: 20px 30px;
    max-width: calc(100vw - 40px);
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    position: relative
}

.form h2 {
    margin: 10px 0;
    padding-bottom: 10px;
    width: 180px;
    color: #212529;
    border-bottom: 3px solid #212529
}

input {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    background: none;
    outline: none;
    resize: none;
    border: 0;
    font-family: 'Montserrat', sans-serif;
    transition: all .3s;
    border-bottom: 2px solid #212529
}

input:focus {
    border-bottom: 2px solid #212529
}

.form p:before {
    content: attr(type);
    display: block;
    margin: 28px 0 0;
    font-size: 14px;
    color: #212529
}

.form p {
    padding: 0;
    margin: 0;
}


.div-form {
    content: 'Hi';
    position: absolute;
    bottom: -15px;
    right: -20px;
    background: #212529;
    color: #fff;
    width: 320px;
    padding: 16px 4px 16px 0;
    border-radius: 6px;
    font-size: 13px;
    box-shadow: 10px 10px 40px -14px #000
}



.email-img h2 {
    color: #212529;
}

.email-img {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.email-img img {
    width: 100%;
}

ul {
    padding-left: 0;
}

footer {
    background-color: #243388;

}

.rodape {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #243388;
    padding: 10px 0px;
}


.cardx {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 1);
    padding: 20px;
    max-width: 320px;
}

.stars {
    display: flex;
    grid-gap: 0.125rem;
    gap: 0.125rem;
    color: rgb(238, 203, 8);
}

.star {
    height: 1.25rem;
    width: 1.25rem;
}

.infos {
    margin-top: 1rem;
}



.date-time {
    color: rgba(7, 63, 216, 1);
    font-size: 12px;
    font-weight: 600;
}

.description {
    margin-top: 0.4rem;
    line-height: 1.625;
    color: rgba(107, 114, 128, 1);
}

.author {
    margin-top: 1.3rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: rgba(107, 114, 128, 1);
}

.direitos {
    color: #fff;
    text-align: center;
    padding: 20px 0px;
}

.direitos span a{
    color: #fff;
}

.wrapper {
    display: inline-flex;
    list-style: none;
}

.wrapper .icon {
    position: relative;
    background: #ffffff;
    border-radius: 30%;
    padding: 15px;
    margin: 10px;
    width: 50px;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #ffffff;
    color: #ffffff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #ffffff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
    background: #1877F2;
    color: #ffffff;
}

.wrapper .twitter:hover,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip::before {
    background: #1DA1F2;
    color: #ffffff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
    background: #E4405F;
    color: #ffffff;
}

.wrapper .github:hover,
.wrapper .github:hover .tooltip,
.wrapper .github:hover .tooltip::before {
    background: #333333;
    color: #ffffff;
}

.wrapper .youtube:hover,
.wrapper .youtube:hover .tooltip,
.wrapper .youtube:hover .tooltip::before {
    background: #CD201F;
    color: #ffffff;
}


.cta {
    background-image: url('../img/cta.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 250px;
    position: relative;
    margin-top: 20px;
    border-radius: 14px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;

}

.cta-header {
    position: relative;
}

.cta-header h2 {
    font-weight: 600;

}

.cta-header h5 {
    color: white;
}


.py-5 {
    position: relative;
}

.img-materia img {
    width: 100%;
}

.materia p {
    color: #8d8d8d;
    font-weight: 400;
    font-size: 15px;
}

.materia h1 {
    font-weight: 600;
    margin-bottom: 10px;
}

.materia-header {
    border-bottom: 1px solid #77777749;
    margin: 30px 0;
    padding: 15px 0px;
}

.materia-header span span.bg-warning{
    background-color: #b09771 !important;
}

.materia span {
    color: #8d8d8d;
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 1rem;
}

.div-proximo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.div-proximo a {
    font-size: 15px;
    font-weight: 600;
    color: black !important;
    padding: 10px
}

.div-proximo a:hover {
    background-color: #eee;
    text-decoration: underline;
    border-radius: 10px;

}

.recentes {
    position: sticky;
    top: 100px;
    left: 0;
}
.recentes h2 {
    font-weight: 600;
    font-size: 30px;
   
    margin-bottom: 10px;
    color: black;
}

.recentes ul {
    padding: 0;
}

.recentes li {
    list-style: none;
}

.post-r {
    margin: 10px 0;
    border-top: 1px solid #eee;
    padding: 10px 0;
}

.info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 5px;
    transition: 0.2;
}
.info:hover{
    background-color: #eee;
}

.info img {
    width: 66px;
    height: 66px;
    border-radius: 3px;
}
.info h3 {
    font-weight: 600;
    font-size: 20px;
    color: #3b3b3b !important;
}

.info span{
    color: #b09771;
    font-weight: 600;
}

.paginacao{
    display: flex;
    justify-content: center;
    margin: 30px 0px;
}
.page-item.active .page-link{
    background-color: #b09771;
    border-color: #b09771;
}
.page-link{
    color: black;
}
.page-link:hover{
    color: #b09771;
}

.blog{
   height: auto;
   min-height: 500px;
}

@media (max-width:785px) {

    .navigation {
        padding: 18px 20px;
        z-index: 999;
    }


    .blog{
        height: auto;
        min-height: 500px !important;
     }

    .navigation ul {
        gap: 0;
        margin: 0 !important;
        padding: 0 !important;

    }
    .cta, .overlaycta{
        border-radius: 0px;
    }



    .menu {
        display: block;
    }

    .menu.ativo .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu.ativo .bar:nth-child(2) {
        opacity: 0;
    }

    .menu.ativo .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        width: 100%;
        height: 100%;
        flex-direction: column;
        background: rgb(0, 0, 0);
        gap: -10px;
        transition: 0.3s;

    }

    .nav-menu.ativo {
        right: 0;
        top: 65px;
    }

    .nav-item {
        margin: 16px 0;
    }

    .nav-item a {
        cursor: pointer;
    }

    .mobile-title {
        background: #0000009e;
        padding: 10px;
        margin: 10px;
    }

    .macbook_img img {
        right: 0;
        width: 100%;
    }

    .card-area .body .wrapper {
        margin-bottom: 40px;
    }

    .cta {
        background-position: left;
    }

    .form {
        height: 477px;
    }

    .rodape {
        flex-direction: column;
    }

    .texto-bannerx img {
        width: 80%;

    }

    .x {
        display: inline-block !important;
    }

    .x {
        display: inline-block !important;
    }

    .flex {
        text-align: center !important;
    }

    .insta-disc {
        text-align: center !important;
    }

}