@import"https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap";

:root {
    --cor-primaria: #f3c766;
    --cor-secundaria: #0f3059
}

body {
    color: #313131
}

.sidenav {
    background: var(--cor-secundaria);
}

h3 {
    font-weight: 700
}

.orange-text {
    color: var(--cor-secundaria) !important
}

header {
    background: var(--cor-secundaria)
}

nav {
    padding-top: 10px;
    height: 85px
}

.carousel-tarja-topo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 40px
}

.brand-logo img {
    max-width: 200px
}

i {
    color: var(--cor-primaria) !important
}

.slides .banners {
    position: relative;
    z-index: 12
}

.slider .slides {
    height: 500px !important
}

.slider {
    height: 500px !important
}

.slides .banners::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(19, 33, 60, 0.7)), to(rgba(19, 33, 60, 0)));
    background: linear-gradient(to top, rgba(19, 33, 60, 0.7), rgba(19, 33, 60, 0));
    pointer-events: none;
    z-index: 1
}

.slides .caption {
    position: relative;
    z-index: 13
}

.slider .indicators {
    bottom: 16px;
    z-index: 13
}

.slider .indicators .indicator-item {
    height: 11px;
    width: 11px;
    margin: 0 4px
}

.slider .indicators .indicator-item.active {
    background-color: var(--cor-secundaria)
}

.letreiro {
    width: 100%;
    white-space: nowrap;
    overflow: hidden
}

.letreiro img {
    display: inline-block;
    margin-right: 20px;
    -webkit-animation: moverLetreiro 15s linear infinite;
    animation: moverLetreiro 15s linear infinite
}

@-webkit-keyframes moverLetreiro {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        -webkit-transform: translateX(calc(-100% - 20px));
        transform: translateX(calc(-100% - 20px))
    }
}

@keyframes moverLetreiro {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        -webkit-transform: translateX(calc(-100% - 20px));
        transform: translateX(calc(-100% - 20px))
    }
}

.about {
    position: relative;
    margin-bottom: 50px;
    margin-top: 20px
}

.about-us {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    background-image: url("../img/bg.jpg");
    padding: 30px;
    background-position: center;
    background-repeat: no repeat
}

.img-absolute {
    position: absolute;
    right: 10%;
    bottom: 20%;
    z-index: 1
}

.img-absolute img {
    max-width: 400px
}

.title-about {
    margin-top: 0
}

.r-about {
    position: relative;
    z-index: 12
}

.services {
    margin-bottom: 50px
}

.row-services {
    margin-top: 30px
}

.card-content.card-services {
    padding: 0px 24px 24px 24px
}

.card-services img {
    background: var(--cor-secundaria);
    padding: 10px
}

.sector {
    margin-bottom: 50px
}

.parallax-container.sector-container .container {
    position: relative
}

.box-sector {
    width: 700px;
    position: absolute;
    top: 0;
    right: 0;
    padding: 30px 50px 50px 30px;
    background: rgba(255, 255, 255, .9)
}

.different-color {
    color: var(--cor-secundaria);
    font-weight: 900
}

.sector-title {
    font-size: 20px;
    font-weight: 600
}

.parallax-container.sector-container {
    height: 600px
}

.different-color2 {
    border: none;
    border-top: 3px solid var(--cor-secundaria);
    max-width: 100px;
    margin: 0;
    opacity: 1
}

.portfolio {
    margin-bottom: 50px
}

.row-portfolio-images img {
    max-height: 300px
}

.portfolio .card {
    overflow: hidden;
    position: relative
}

.portfolio .card-image {
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease
}

.portfolio .card:hover .card-image {
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
}

.portfolio .card .card-image .card-title {
    color: #fff;
    position: absolute;
    top: 60%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) !important;
    transform: translate(-50%, -50%) !important;
    max-width: 100%;
    padding: 0 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start
}

.portfolio .card-title {
    opacity: 0;
    color: #fff;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    z-index: 999
}

.portfolio .card:hover .card-title {
    opacity: 1
}

.portfolio .card:hover .card-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 33, 60, .7);
    opacity: 0;
    -webkit-transition: opacity .5s ease;
    transition: opacity .5s ease;
    z-index: 10
}

.portfolio .card:hover .card-image::before {
    opacity: 1
}

.portfolio .card-image {
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    width: 100%;
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
    z-index: 999
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px
}

.slick-dots li button {
    font-size: 0;
    color: rgba(0, 0, 0, 0);
    background-color: #ccc;
    border: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: background-color .3s ease;
    transition: background-color .3s ease
}

.slick-dots li.slick-active button {
    background-color: var(--cor-secundaria)
}

.testimonials {
    position: relative;
    margin-bottom: 50px
}

.testimonials .container {
    border: 10px solid #f5f5f5;
    padding: 20px
}

.image-testimonial {
    position: absolute;
    top: 0% !important;
    right: 5% !important
}

.image-testimonial img {
    max-width: 400px
}

.carousel-testimonial .slick-carousel .text {
    margin-right: 20px
}

.carousel-testimonial .slick-carousel .text p {
    text-align: justify
}

.faq {
    margin-bottom: 50px
}

.line-faq {
    border: none;
    border-top: 2px solid #f1f1f1;
    max-width: 100%
}

.icones-perguntas {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer
}

.hidden {
    display: none
}

.img-absolute-faq img {
    width: 250px;
    height: 500px;
    object-fit: cover;
}

.title-faq {
    padding: 20px 0 !important;
    margin-top: 0;
    margin-bottom: 0
}

.img-absolute-faq {
    position: relative !important
}

.text-absolut-faq {
    position: absolute;
    bottom: -8px;
    z-index: 99;
    padding: 25px;
    background: rgba(255, 255, 255, .8);
    width: 250px
}

.parallax-container.news-container {
    height: 200px;
    position: relative
}

.overlay {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(19, 33, 60, .5)
}

.absolute-news {
    position: relative;
    z-index: 12
}

.different-color3 {
    border: none;
    border-top: 3px solid var(--cor-secundaria);
    max-width: 30px;
    margin: 0;
    opacity: 1
}

footer .social-midia i {
    border: 1px solid #d3d3d3;
    padding: 10px;
    color: var(--cor-primaria) !important
}

footer .brand-logo img {
    width: 100%
}

footer ul li {
    margin-bottom: 5px
}

.contact-page {
    background: #f5f5f5;
    padding-bottom: 10px
}

.row-contact {
    margin-bottom: 0;
    padding-bottom: 50px
}

.wpcf7-submit {
    background: var(--cor-secundaria) !important;
    border: none;
    border-radius: 2px;
    display: inline-block;
    height: 36px;
    line-height: 36px;
    padding: 0 16px;
    text-transform: uppercase;
    vertical-align: middle;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    color: #fff;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .12), 0 1px 5px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .12), 0 1px 5px 0 rgba(0, 0, 0, .2);
    text-decoration: none;
    text-align: center;
    letter-spacing: .5px;
    -webkit-transition: background-color .2s ease-out;
    transition: background-color .2s ease-out;
    cursor: pointer;
    font-size: 14px
}

.contact {
    margin-bottom: 20px
}

.banner-contact {
    position: relative;
    height: 400px
}

.img-banner-contact {
    max-width: 100%;
    max-height: 400px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%
}

.text-contact {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.overlay-contact {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(19, 33, 60, .8)
}

.form-contact {
    background: #fff;
    padding: 10px 30px !important
}

input,
textarea {
    border: none !important;
    background: #f5f5f5 !important
}

.search-field {
    background: #fff !important
}

.form-contact-box .row {
    margin-bottom: 0
}

form p,
form .row {
    margin: 0
}

.input-field>label {
    top: -9px;
    font-size: 18px;
    color: var(--cor-secundaria);
    font-weight: 500
}

iframe {
    width: 100%
}

.card-contact {
    font-weight: 600 !important
}

.card-contacts {
    min-height: 170px
}

.single-service {
    background-color: #fafafa;
    padding-bottom: 10px
}

.banner-service img {
    max-width: 100%;
    width: 100%
}

.image-single {
    column-count: 3;
    column-gap: 15px;
    margin: 0 auto;
    max-width: 1200px;
}

.image-single img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    break-inside: avoid;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.image-single img:hover {
    transform: scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .image-single {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .image-single {
        column-count: 1;
    }
}

.title-single {
    font-weight: 700;
    margin-top: 0
}

.col-single {
    margin-top: 50px;
    background: #fff;
    padding: 35px !important
}

.text-single {
    margin-bottom: 30px
}

.col-single-2 {
    margin-top: 50px
}

.card-service-single {
    margin: 0 !important;
    background: var(--cor-secundaria)
}

.card-title-service {
    font-weight: 600;
    font-size: 25px
}

.btn {
    background: var(--cor-secundaria)
}

.btn-service {
    width: 100%
}

input::-webkit-input-placeholder {
    padding-left: 5px !important
}

input::-moz-placeholder {
    padding-left: 5px !important
}

input:-ms-input-placeholder {
    padding-left: 5px !important
}

input::-ms-input-placeholder {
    padding-left: 5px !important
}

input::placeholder {
    padding-left: 5px !important
}

.img-about {
    max-width: 100%
}

.about-page,
.error {
    background-image: url("../img/bg-about.jpg");
    background-repeat: no-repeat;
    position: relative;
    padding: 30px 0;
    margin-bottom: 0 !important;
    background-size: cover
}

.overlay3 {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, .9)
}

.container-about-single {
    position: relative;
    z-index: 12
}

.error {
    min-height: 60vh
}

.card-title-error {
    font-size: 80px;
    font-weight: 700;
    line-height: 0
}

.card-title-error strong {
    font-size: 30px !important
}

.card-error {
    max-width: 400px;
    width: 100%;
    padding: 30px
}

.card-error .card-content {
    position: relative
}

.absolute-error {
    position: absolute;
    right: 0;
    top: 0
}

.whats-flutuante {
    position: fixed;
    bottom: 50px;
    right: 20px;
    z-index: 20
}

.cookies {
    z-index: 999;
    background: rgba(0, 0, 0, .7);
    padding: 20px;
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center
}

.btns2 {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #fff;
    color: #fff;
    border-radius: 4px;
    padding: 3px 10px;
    font-size: 15px;
    cursor: pointer
}

.footer-copyright .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media(max-width: 1200px) {
    .img-absolute {
        display: none
    }
}

@media(max-width: 1090px) {
    .image-testimonial img {
        max-width: 300px
    }

    .image-testimonial {
        position: absolute;
        top: 0% !important;
        right: 0% !important
    }
}

@media(max-width: 992px) {
    .box-sector {
        width: 100%;
        position: inherit
    }

    .image-testimonial {
        display: none
    }

    .img-about {
        display: none
    }

    .img-absolute-faq {
        margin-top: 40px
    }
}

@media(max-width: 601px) {
    .parallax-container.sector-container {
        height: 800px
    }

    .image-single {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .image-single img {
        max-width: 100%;
        height: 200px;
        width: 100%
    }
}

@media(max-width: 426px) {
    .parallax-container.sector-container {
        height: 950px
    }
}

@media(max-width: 360px) {
    .parallax-container.sector-container {
        height: 1100px
    }
}

.tamanhoMax {
    max-width: 1100px;
    margin: auto;
    width: 95%
}

.blog_content {
    margin-bottom: 3rem
}

#blog_home {
    width: 100%
}

.blog_home h1 {
    text-align: center;
    font-size: 70px;
    color: var(--cor-secundaria)
}

@media(max-width: 767px) {
    .blog_home h1 {
        font-size: 40px
    }
}

.grid_home {
    margin-top: 5rem
}

.grid_home .container .fotos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.grid_home .container .fotos a {
    max-width: 210px !important;
    height: 210px !important;
    position: relative;
    -o-object-fit: cover !important;
    object-fit: cover !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.busca {
    width: 100%;
    padding: 0 30px
}

.grid_home .container .fotos a:hover::before {
    content: "Leia mais...";
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .8);
    width: 100%;
    height: 100%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-size: 20px
}

.grid_home .container .fotos a img {
    max-width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.grid_home .container .row>* {
    width: auto
}

.grid_home .container .row {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: auto
}

.row-page-blog {
    min-width: 300px;
    width: 100%
}

.box_gray {
    height: 110px;
    border-radius: 8px;
    width: 100%;
    background: #f2f2f2;
    max-width: 1100px;
    margin: auto;
    margin-top: 3rem;
    margin-bottom: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.botao_procura {
    position: absolute;
    left: 0;
    top: 0px;
    cursor: pointer
}

.botao_procura svg {
    position: absolute;
    left: -7px;
    width: 50px !important
}

.svg-inline--fa.fa-search {
    height: 20px
}

.search-form {
    padding: 10px 0;
    position: relative
}

.busca .botao_procura input {
    width: 35px;
    height: 100%;
    border: none;
    background: rgba(0, 0, 0, 0) !important;
    border-radius: 5px;
    padding: 0;
    position: relative
}

.busca .botao_procura input:focus-visible {
    outline: none
}

.busca .botao_procura i {
    position: absolute;
    top: 10px;
    height: 100%;
    width: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
    font-size: 1.2rem;
    color: #000
}

.busca input.search-field {
    border: none;
    padding: 14px 15px 14px 40px;
    border-radius: 6px;
    width: 100%
}

.busca input.search-field:focus-visible {
    outline: none
}

.descricao {
    width: 80%
}

.descricao img {
    max-width: 100%;
    height: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -o-object-fit: cover;
    object-fit: cover
}

.descricao p {
    max-width: 100%;
    font-size: 15px;
    color: var(--cor-secundaria);
    letter-spacing: 1px;
    font-weight: 200
}

.descricao hr {
    max-width: 400px;
    opacity: .1;
    margin-top: 5px
}

.descricao em {
    font-weight: 400;
    color: gray;
    font-size: 13px
}

.descricao h2 {
    color: var(--cor-secundaria);
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 0;
    letter-spacing: 2px
}

.topo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media(max-width: 991px) {
    .topo {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .boxes_blogs {
        margin-bottom: 3rem;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .grid_home .container .row a .col {
        margin-bottom: 1rem
    }
}

.boxes_blogs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 3rem
}

.bar-sidebar {
    font-size: 14px;
    height: 50px;
    letter-spacing: 1px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--cor-secundaria);
    color: #fff
}

.sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.sidebar h3 {
    text-align: center;
    color: var(--cor-secundaria);
    font-size: 30px
}

.logo-sidebar {
    text-align: center;
    margin-top: 20px
}

.tag-bar {
    margin-bottom: 20px
}

.sidebar p {
    text-align: center;
    font-size: 14px;
    letter-spacing: 1px;
    color: gray
}

.tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px
}

.tag {
    margin-bottom: 10px
}

.recent-posts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem
}

.posts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.r-post img {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.l-post h2 {
    font-size: 16px
}

.l-post em {
    font-size: 13px;
    color: gray
}

.sponsors {
    margin-bottom: 2rem;
    text-align: center
}

.cat-item {
    background: #f2f2f2;
    padding: 10px;
    text-decoration: none;
    color: var(--cor-secundaria);
    text-transform: lowercase;
    margin-bottom: 5px
}

.sponsors img {
    width: 300px
}

.listaCategorias_sidebar li {
    list-style: none
}

.categoria_lista {
    margin-bottom: 2rem
}

.listaCategorias_sidebar li a {
    color: #000;
    text-decoration: none
}

hr {
    margin: 0;
    opacity: .1
}

.breadcrumbs_cat p a {
    color: #000;
    text-decoration: none
}

.breadcrumbs_cat p {
    font-size: 14px;
    font-weight: 500
}

a {
    text-decoration: none
}

.reading {
    padding: 6px 10px;
    font-size: 16px;
    border-radius: 4px;
    text-decoration: underline;
    font-weight: 500
}

.midias {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 1rem
}

.links {
    color: var(--cor-secundaria)
}

@media(max-width: 375px) {
    .midias {
        gap: 5px
    }
}

.midias .social-blog i {
    font-size: 25px
}

.social-blog {
    background: #f2f2f2;
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.social-midia {
    margin-bottom: 20px
}

/* .img-single {
    height: 280px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
} */

.page-footer {
    background: var(--cor-secundaria)
}

.carousel-tarja {
    background: #fff
}

nav {
    background: var(--cor-secundaria)
}

.rodape {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px 0;
    font-family: "Rajdhani", sans-serif
}



/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
    animation: fadeIn 0.3s;
}

.lightbox-content {
    display: block;
    margin: 60px auto;
    max-width: 90%;
    max-height: calc(100vh - 120px);
    animation: zoomIn 0.3s;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close:hover {
    color: #bbb;
}

.caption {
    margin: 15px auto;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
    }

    to {
        transform: scale(1);
    }
}

/* Adicione isto para melhorar a experiência em mobile */
@media (max-width: 600px) {
    .lightbox-content {
        max-width: 95%;
        max-height: calc(100vh - 100px);
    }

    .close {
        font-size: 30px;
        top: 15px;
        right: 20px;
    }
}


.txt-footer li a {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.txt-footer li a p {
    margin-bottom: 0;
}

#name2,
#tel2 {
    padding-left: 5px;
}