 :root{
    /* ===== Primary (Base: rgb(241,164,60)) ===== */
    --primary-25:  #fff9ed;
    --primary-50:  #FCE8CB;
    --primary-100: #F7C883;
    --primary-200: #F3B76A;
    --primary-300: #F1A43C; /* base */
    --primary-400: #E39338;
    --primary-500: #C8822E;
    --primary-600: #A56C27;
    --primary-700: #8F5F23;
    --primary-800: #6D471B;
    --primary-900: #4C3113;

    /* ===== Analogous ===== */
    --analog-1: #F6D44A; /* Amarelo */
    --analog-2: #F25E3E; /* Vermelho-laranja */

    /* ===== Complementary (Azuis) ===== */
    --complement-50:  #AECBFA;
    --complement-100: #7EB0F7;
    --complement-200: #5A9CF5;
    --complement-300: #3C8BF1; /* complementar direta */
    --complement-400: #2F6BBE;
    --complement-500: #1F4D8C;

    /* ===== Triadic ===== */
    --triad-1: #33ce8b; /* verde-água */
    --triad-2: #A43CF1; /* roxo-azulado */

    /* ===== Neutral UI Grays ===== */
    --gray-50:  #F6F7F9;
    --gray-100: #ECEEF1;
    --gray-200: #D8DCE1;
    --gray-300: #B9BFC7;
    --gray-400: #969DA8;
    --gray-500: #7A8088;
    --gray-600: #5A5E64;
    --gray-700: #3C3F44;
    --gray-800: #26282B;
    --gray-900: #1E1F22;

    /* ===== Accent (UI moderna) ===== */
    --accent-blue: #3C6FA6;
    --accent-soft-blue: #DCE7F5;
}

/* font */
@font-face {
  font-family: 'Switzer';
  src: url('../fonts/Switzer-Regular.woff2') format('woff2'),
       url('../fonts/Switzer-Regular.woff') format('woff');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

.modal {
  z-index: 2000;
}

.modal-backdrop {
  z-index: 1990;
}

/* estilização do index */
body {
  font-family: 'Switzer';
  line-height: 1.6;
  color:rgb(27, 27, 27);
  overflow-x: hidden;
}

#smooth-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#smooth-content {
  will-change: transform;
}

section {
    position: relative;
    overflow: hidden;
    will-change: transform;
}


section.header#index {
    position: relative;
    height: 100vh;
}



/* estilizacao do menu */
.menus header{
    padding:10px 8rem;
    background:white;
    width: 100%;
    z-index: 5;
    transition: all 0.3s ease;
}

.mainMenu {
    position: fixed;
    width: 100%;
    transition: all 0.3s ease;
}

.mainMenu

.menu-fixed {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.menus header nav li a{
    font-size: 14px;
    color:rgb(27, 27, 27);
}

.menus header nav .btn-login{
    background:var(--primary-300);
    border-radius:20px;
    padding: 0 20px;
}

/* menu toggle */

.menus header .btn-toggle button{
    color:#F1A43C;
}

.menu-toggle{
    width:90% !important;
}

.menu-toggle ul li{
    padding:10px;
}

.menu-toggle ul li a{
    color:black;
}

.menu-toggle ul .btn-login li{
    background:#F1A43C;
}

.menus header .btn-toggle{
    display: none;
}



/* hero section */
section.header .hero-section{
    height: 90%;
    padding:2rem  8rem;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color:rgb(27, 27, 27);
}

section.page-index .hero-section .text-desc{
   width: 50%;
}

section.header .hero-section .text-desc h1{
   font-size: 3rem;

}
section.header .hero-section .text-desc .buttons a{
    border:2px solid;
    border-radius: 20px;
    padding:8px 16px;
    font-size: 14px;
    display: flex;
    align-items:center;
    justify-content: center;
    color:rgb(15, 15, 15);
    width:40%;
    height: 50px;
}

section.header .hero-section .text-desc .buttons a:nth-child(1){
    border-color:  var(--primary-300);
    background:var(--primary-300);
    color:white;
}


section.header .hero-section .text-desc .buttons a:nth-child(2){
    border-color:  var(--gray-100);
    background:var(--gray-100);
}


section.header .hero-section .hero-img{
    width: 80%;
    height: 80%;

}

section.page-index .hero-section .hero-img{
    height: 550px;
    padding: 0 ;
}


section.header .hero-section .hero-img .swiper {
    width: 100%;
    height: 100%;
}

section.header .hero-section .hero-img .swiper
.swiper-slide img{
    transition: transform 1.2s ease, opacity 1.2s ease;
    transform: scale(1.05);
    opacity: 0.7;
}

section.header .hero-section .hero-img .swiper .swiper-slide-active img {
    transform: scale(1);
    opacity: 1;
}

section.header .hero-section .hero-img img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background:rgb(255, 255, 255);

}



/* estilização do section about */
section.about{
    padding:3rem  8rem;
    background:rgb(255, 255, 255);

}

section.about .desc .title{
    background:var(--primary-25);
    color:var(--primary-400);
    padding: 5px;
    border-radius:20px;
    width: 100px;
    font-size: 14px;
}


section.about .desc .first{
   gap: 50px;
}


section.about .desc .first .image{
   width: 35%;
   height: 500px;
}

section.about .desc .first .image img{
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center;
}

section.about .desc .first .details{
   width: 40%;
}

section.about .desc .first .details p{
  text-align: justify;
}


section.about .first .details .differentials{
    gap: 10px;
}

section.about .first .details .differentials .item{
    width: 250px;
    display: flex;
    align-items:center;
    gap: 10px;
}

section.about .first .details .differentials .item i{
    padding: 10px;
    border-radius:50%;
    background:var(--primary-25);
    color:var(--primary-300);
    font-size:20px;
}

section.about .desc .first .details > div.details-dest{
    position: relative;
    margin:20px 0 ;
    padding: 10px;
    background:var(--primary-25);

}
section.about .desc .first .details > div.details-dest::before{
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 4px;
    background:var(--primary-100);

}

section.about .first .details a.btn{
    background:var(--primary-300);
    font-size:14px;
    padding: 8px 16px;
    color:white;
}


/* section index indicators */
section.index-indicators{
    padding: 0 8rem;
    background:rgb(248,247,252);
}

section.index-indicators
.index-indicators-itens{
    display: flex;
    align-items:center;

    justify-content: space-between;
}

section.index-indicators
.index-indicators-itens .item{
    position: relative;
    cursor:pointer;
    width: 100%;
    padding: 4rem 10px;
    text-align: center;
    transition: all .3s ease-in-out;
}

section.index-indicators
.index-indicators-itens .item:hover{
    background:rgb(255, 255, 255);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

section.index-indicators
.index-indicators-itens .item:hover::before,
section.index-indicators
.index-indicators-itens .item:hover::after{
    content:'';
    position: absolute;
    bottom: 40%;
    background:var(--primary-100);
    width: 2px;
    height: 20%;
}

section.index-indicators
.index-indicators-itens .item::before{
    left:0;
}


section.index-indicators
.index-indicators-itens .item::after{
    right: 0;
}


section.index-indicators
.index-indicators-itens .item i{
    font-size: 3.5rem;
    color:var(--primary-300)
}

/* section services */
section.services{
    background:white;
    padding:8rem  8rem;
}

section.services .desc{
    display: flex;
    justify-content: center;
    align-items:center;
}

section.services .card-services .card-services-item{
    position: relative;
    background:white;
    height: 420px;
}

section.services .card-services .card-services-item .image{
    height: 200px;
}
section.services .card-services .card-services-item .image img{
   width: 100%;
   height: 100%;
   object-fit: cover;
}

section.services .card-services .card-services-item .details{
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

section.services .card-services .card-services-item .details a{
    background:var(--primary-300);
    color:white;
    text-decoration: none;
    font-size: 14px;
    margin: 10px 0;
    padding:8px 20px;
    width: 100px;
    text-align: center;
    border-radius:20px;
}

section.services .card-services{
    position: relative;
}



section.services .card-services .guide{
    position: absolute;
    right: 0;
    top: 30%;
    z-index: 1;
}

section.services .card-services .guide button{
    background:none;
    border:none;
}


section.services .card-services .guide button i{
    font-size: 24px;
    background:var(--primary-400);
    color:white;
    padding: 10px;
    border-radius:50%;
}


/* estilização do section feedback */

section.feedback{
    padding: 5rem 8rem;
    background:rgb(248,247,252);
}
section.feedback .desc .title{
    background:var(--primary-25);
    color:var(--primary-400);
    padding: 5px;
    border-radius:20px;
    width: 200px;
    font-size: 14px;
}
section.feedback .card-feedback{gap: 20px;}

section.feedback .card-feedback
.card-feeddback-item{
    position: relative;
    width: 290px;
    height: 290px;
    padding: 10px;
    background:rgb(255, 255, 255);
}

section.feedback .card-feedback
.card-feeddback-item.active{
    width: 320px;
    height: 320px;
}

section.feedback .card-feedback
.card-feeddback-item.active::before{
    content:'';
    position: absolute;
    bottom:0;
    left: 0;
    width: 100%;
    height: 2px;
    background:var(--primary-300)
}



section.feedback .card-feedback
.card-feeddback-item .profile img{
    border-radius:50%;
    height: 40px;
    object-fit: cover;
}

/* section portfolio */

section.portfolio{
    height: 100vh;
    padding:5rem  8rem;
    gap: 20px;
}

section.portfolio .desc{
  width: 50%;
}

section.portfolio .desc .title{
    background:var(--primary-25);
    color:var(--primary-400);
    padding: 5px;
    border-radius:20px;
    width: 120px;
    text-align: center;
    font-size: 14px;
}

section.portfolio .desc ul li{
    position: relative;
    font-weight: 600;
    font-size: 14px;
    padding: 0 10px;
}

section.portfolio .desc ul li::before{
    content:'';
    position: absolute;
    top:50%;
    left: 0;
    width:8px;
    height: 2px;
    background:black;
}

section.portfolio .desc .gallery{
    gap: 10px;
}

section.portfolio .desc .gallery img {
    width: 120px;
    height: 100px;
    object-fit: cover;
}

section.portfolio .card-portfolio{
    position: relative;
    display: flex;
    gap:10px;
    padding:0;
}

section.portfolio .card-portfolio .card-group{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    width: 350px;
}


section.portfolio .card-portfolio .card-portfolio-item{
    position: relative;
    width: 100%;

}

section.portfolio .card-portfolio .card-group .card-portfolio-item .image{
    height: 100%;
}

section.portfolio .card-portfolio .card-portfolio-item .image img{
   width: 100%;
   height: 100%;
   object-fit: cover;
}

/* section contact */
section.contact{
    background:rgb(248,247,252);
    color:rgb(27, 27, 27);

}

section.contact .item:nth-child(1){
    padding: 2rem 8rem;
    display: flex;
    justify-content: space-between;
    align-items:center;

}

section.contact .item .desc{
    width: 60%;
}

section.contact .item .desc .text{
    width: 60%;

}

section.contact .item .desc .budget{
    padding: 10px;
    border-radius:10px;
    background:rgb(255, 255, 255);
}

section.contact .item .desc .budget form{
    gap:10px;
}

section.contact .item .desc .budget select{
    width: 200px;
    font-size: 14px;
    padding: 8px;
}

section.contact .item .desc .budget button{
    font-size: 14px;
    padding: 8px 16px;
    background:var(--primary-300);
    color:white;
}

section.contact .item form.form-contact{
    background:white;
    width: 500px;
    padding: 20px 40px;
    border-radius:10px;
    transform: translateY(100px);
}

section.contact .item form.form-contact .input-field{
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

section.contact .item form.form-contact .input-field input,
section.contact .item form.form-contact .input-field textarea{
    outline: none;
    border:1px solid var(--gray-100);
    padding: 8px 10px;
    border-radius:5px;
    font-size: 14px;
}

section.contact .item form.form-contact .input-field textarea{
    height: 200px;
}

section.contact .item form.form-contact .button-field button{
    background:rgb(15, 28, 36);
    padding: 8px 40px;
    font-size: 14px;
    color: white;
}

section.contact .item:nth-child(2){
    padding: 0 8rem;
    background:white
}

section.contact .item:nth-child(2) .social-icons a i{
    border: 1px solid rgb(15, 28, 36);
    color: rgb(10, 10, 10);
    padding: 8px;
    border-radius:50%;
    transition: all 0.3s ease;
}

section.contact .item:nth-child(2) .social-icons a i:hover{
    transform: translateY(-5px);
    background-color: rgb(15, 28, 36);
    color:white;
}

/* estilização do section blog */
section.blog{
    height: 100vh;
    padding: 10px 8rem 5rem;
}

section.blog .desc{
    width: 40%;
    margin: 0 auto;
}

section.blog .desc .title{
    background:var(--primary-25);
    color:var(--primary-400);
    padding: 5px;
    border-radius:20px;
    width: 140px;
    text-align: center;
    font-size: 14px;
    margin: 0 auto;
}

section.blog .card-blog .card-blog-group{
    height: 500px;
    display: flex;
    gap:20px;
    flex-direction: column;
}

section.blog .card-blog{
    gap: 20px;
}
section.blog .card-blog .card-blog-group
.card-blog-item {
    height: 100%;
}

section.blog .card-blog .card-blog-item{
    position: relative;
    height: 500px;
    width: 350px;
}

section.blog .card-blog .card-blog-item .image{
    position: relative;
    height: 100%;
    width: 100%;
}

section.blog .card-blog .card-blog-item .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

section.blog .card-blog .card-blog-item .image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.397);
}


section.blog .card-blog .card-blog-item .details{
    position: absolute;
    bottom:0;
    padding: 10px;
    color:white;
}

section.blog .card-blog .card-blog-item .details p > span{
    background:var(--gray-50);
    border-radius:20px;
    padding: 10px;
    font-size: 12px;
    margin-left: 10px;
    color:black;
}

section.blog .card-blog .card-blog-item .details a i{
    background:var(--gray-50);
    padding: 2px;
    margin-left: 4px;
    border-radius:50%;
    color:black;
}
/* footer */
section.footer{
    padding: 2rem 8rem;
    background-color: rgb(15, 28, 36);

}
section.footer .footer-body{
    gap: 10px;
}

section.footer .footer-body .footer-link,
section.footer .footer-body .footer-service,
section.footer .footer-body .footer-newsletter
{
   width: 300px;
}
section.footer .footer-body p,
section.footer .footer-body ul li{
    font-size:14px;

}


section.footer .footer-body .footer-newsletter form{
    background:rgb(13, 23, 29);
    border-radius:20px;
}

section.footer .footer-body .footer-newsletter form input{
    border-radius:20px 0 0 20px;
    outline: none;
    border:none;
    padding: 8px 12px;
    font-size: 14px;
    background:none;
    color:white
}

section.footer .footer-body .footer-newsletter form button{
    border-radius:20px;
    outline: none;
    border:none;
    padding: 10px 12px;
    font-size: 14px;


}

div.footer-dev {
    padding:10px 8rem;
    color: white;
    background-color: rgb(13, 23, 29);
}

/* estilização da pagina about */
section.page-about{
    height: 100vh;
}

section.page-about .hero-section .text-desc{
   width: 40%;
}

section.page-about .hero-section .hero-img{
    position: relative;
    width: 35%;
}

/* estilização do section history */
section.history{
    position: relative;
    padding:10px 8rem;
    display: flex;
    gap: 40px;
    justify-content: space-between;
    height: 640px;
}

section.history .guide,
section.indicators .guide,
section.map .guide{
    width: 80px;
    height: 100%;
    text-align: center;
}

section.history .guide .guide-number,
section.indicators .guide .guide-number,
section.map .guide .guide-number{
    background:var(--primary-50);
    border-radius: 50%;
    padding: 5px;
}

section.history .guide .line,
section.indicators .guide .line,
section.map .guide .line{
    position: relative;
    height: 100%;
}

section.history .guide .line:before{
    content:"";
    position:absolute;
    top: 0;
    left: 50%;
    width: 2px;
    background:var(--gray-50);
    height: 100%;
    z-index: -1;
}

section.history .history-item:nth-child(1){
    background:url('../img/background11.jpg') center/cover;
    height: 480px;
}


section.history .history-item:nth-child(3)
.card-history-item{
    gap: 20px;
}

section.history .history-item:nth-child(3)
.card-history-item .card-item{
    display: flex;
    gap: 10px;
    align-items:center;
    width: 100%;
    height: 130px;
    border-radius:8px;
    background:rgb(255, 255, 255);
}

section.history .history-item:nth-child(3)
.card-history-item .card-item i{
    font-size: 28px;
    color:var(--primary-300)
}

/* estilização do section indicators */
section.indicators{
    position: relative;
    padding:0 8rem;
    gap: 40px;
    height: 640px;
}

section.indicators .guide .line:before{
    content:"";
    position:absolute;
    top: 0;
    left: 50%;
    width: 2px;
    background:var(--gray-50);
    height: 100%;
    z-index: -1;
}

section.indicators .indicators-item
.card-testimony{
   gap: 10px;
}
section.indicators .indicators-item
.card-testimony .card-testimony-item{
    background:rgb(255, 255, 255);
    width: 290px;
    height: 100%;
    padding: 15px;
    border-radius:10px;
}

section.indicators .indicators-item
.card-testimony .card-testimony-item
.card-testimony-item-profile {
    gap:5px;
}

section.indicators .indicators-item
.card-testimony .card-testimony-item
.card-testimony-item-profile img {
    border-radius:50%;
    object-fit: cover;
    height: 40px;
}

/* estilização da section map */
section.map{
    position: relative;
    padding:0 8rem;
    gap: 40px;
    height: 640px;


}

section.map  .locate ul li{
    margin: 8px 10px;
}
section.map  .locate ul li i{
    border-radius:50%;
    padding: 10px;
    font-size: 1.3rem;
    color:var(--primary-200);
    border:1px solid var(--gray-200);
    margin-right: 5px;
}

section.map .guide .line:before{
    content:"";
    position:absolute;
    top: 0;
    left: 50%;
    width: 2px;
    background:var(--gray-50);
    height: 100%;
    z-index: -1;
}

/* estilização  da page blog */
section.page-blog{
    height: 100vh;
}

section.page-blog .hero-section .text-desc{
   width: 40%;
}

section.page-blog  .hero-section .hero-img{
    position: relative;
    width: 35%;
}

/* estilização da section news */
section.news{
    padding: 10px 8rem;
}

section.news .filters-menu {
    margin:10px 0;
}
section.news .filters-menu ul{
    gap: 20px;
}
section.news .filters-menu ul li{
    position: relative;
    padding: 8px 0;
}

section.news .filters-menu ul li.active::before{
    content:"";
    position: absolute;
    bottom:0;
    left: 0;
    background:var(--primary-50);
    width: 100%;
    height: 2px;
}

section.news .filters-menu ul li.active a{
    color: rgb(10, 10, 10);
    font-size: 15px;
    font-weight: 600;
}

section.news .filters-menu ul li a{
    color: var(--gray-500);
    font-size: 12px;
}

section.news .news-content .featured-news .image{
    position: relative;
    width: 100%;
}

section.news .news-content .featured-news .image img{
    width: 100%;
    object-fit: cover;
}

section.news .news-content .featured-news .image p{
    position: absolute;
    top: 10px;
    left: 0;
    background:var(--primary-300);
    font-size: 14px;
    color:white;
    padding: 8px 20px;
    text-align: center;
}

section.news .news-content .stories > p{
    background:var(--primary-300);
    font-size: 14px;
    color:white;
    padding: 8px 0;
    text-align: center;
    width: 160px;
}

section.news .news-content .stories
.stories-card {
    border:1px solid var(--gray-100);
}

section.news .news-content .stories
.stories-card .stories-card-item{
    display: flex;
    align-items:center;
    gap:20px
}



section.news .news-content .stories
.stories-card .stories-card-item
.image img{
    width: 70px;
    height: 70px;
    object-fit: cover;
}

section.news .news-content > p{
    background:var(--primary-300);
    font-size: 14px;
    color:white;
    padding: 8px 0;
    text-align: center;
    width: 160px;
}

section.news .news-content .card-news-content{
    flex-wrap: wrap;
    gap: 20px;
    border:1px solid var(--gray-100);

}



section.news .news-content .card-news-content
.card-news-content-item{
    background:rgb(255, 255, 255);
    width: 320px;
    height: 350px;
}

section.news .news-content .card-news-content
.card-news-content-item .image{
    height: 200px;
}
section.news .news-content .card-news-content
.card-news-content-item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.news .news-content .card-news-content
.card-news-content-item .desc{
   padding: 10px;
}

/* estilização da page work-us */
section.page-work-us{
    height: 100vh;
}

section.page-work-us .hero-section .text-desc{
   width: 40%;
}

section.page-work-us  .hero-section .hero-img{
    position: relative;
    width: 35%;
}

section.jobs{
    padding:10px 8rem;
}

section.jobs .filters .search{
    padding: 0 10px;
    border:1px solid var(--gray-200);
    border-radius: 20px;
    width: 50%;
}

section.jobs .filters .search input{
    border:none;
    background:none;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    outline: none;
}

section.jobs .filters .search i{
    font-size: 24px;
    color:var(--triad-1);
}

section.jobs .card-jobs .card-jobs-item{
    width: 280px;
}

section.jobs .card-jobs .card-jobs-item .image {
    position: relative;
}

section.jobs .card-jobs .card-jobs-item .image img{
    width: 100%;
    object-fit: cover;
}

section.jobs .card-jobs .card-jobs-item .image > p {
    position:absolute;
    top: 10px;
    left: 0;
    padding: 5px 14px;
    font-size: 14px;
    color:white;
}

section.jobs .card-jobs .card-jobs-item .desc {
    position: relative;
    height: 150px;

}


section.jobs .card-jobs .card-jobs-item .desc button{
    border-radius:20px;
    padding: 8px 16px;
    font-size: 14px;
    border:none;
    background:var(--primary-200);
    color:white;
    position: absolute;
    bottom:1rem;
    left: 1rem;
}

section.jobs .form{
    margin: 3rem 0;
    border:1px solid var(--gray-100)

}

section.jobs .form .desc{
    width: 40%;
    margin: 0 auto;

}

section.jobs .form form input,
section.jobs .form form select{

    border-radius:5px;
    padding:8px 10px;
    font-size: 14px;
    outline: none;
    border:1px solid var(--gray-200)
}

section.jobs .form form  button{
    width: 140px;
    font-size: 14px;
    padding: 8px 0;
}

/* estilização da page portfolio */
section.page-portfolio{
    height: 100vh;
}
section.page-portfolio .hero-section .text-desc{
   width: 40%;
}

section.page-portfolio  .hero-section .hero-img{
    position: relative;
    width: 35%;
}
/* estilização do section projects */

section.projects{
    padding:5rem 8rem;
    gap: 40px;
}

section.projects .filters-menu{
    width: 300px;
    height: 100vh;
    padding: 40px;
}

section.projects .filters-menu ul li{
    font-size: 14px;
    margin: 10px 0;
}

section.projects  .projects-content{
    width: 80%;
}
section.projects  .projects-content .search input{
    width: 100%;
    outline: none;
    border:1px solid var(--gray-100);
    border-radius: 20px;
    font-size:14px;
    padding: 8px 16px;
    margin-bottom: 40px;
}

section.projects  .projects-content
.card-projects{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
section.projects  .projects-content
.card-projects .card-projects-item{
    min-width: 200px;
    background:rgb(255, 255, 255);
}

section.projects  .projects-content
.card-projects .card-projects-item .image{
    width: 100%;
    height: 220px;
}
section.projects  .projects-content
.card-projects .card-projects-item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.projects  .projects-content
.card-projects .card-projects-item .desc{
    padding: 10px;
}

/* estilização da page project-details */
section.page-project-details .hero-section{
    padding-top:5rem;
    padding-bottom: 5rem;
    background:rgb(248,247,252);
}

section.carousel{
    height: 400px;
}
section.carousel .swiper {
    width: 100%;
    height: 100%;
}

section.carousel .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
}

section.carousel .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.details-project{
    padding:5rem 8rem;
    gap: 20px;
}

section.details-project h4{
    position: relative;
    padding: 0 5px;
}

section.details-project h4::before{
    content:'';
    position: absolute;
    top:0;
    left: 0;
    width: 2px;
    height: 100%;
    background:var(--primary-300);
}

section.details-project .desc{
   width: 60%;
}

section.details-project .desc .property .itens{
    position: relative;
    background:rgb(248,247,252);
    gap: 20px;
    height: 220px;
}

section.details-project .desc .property .itens .divisor{
    height: 100%;
    width: 2px;
    background:var(--gray-100);
}


section.details-project .latest-projects{
    width: 400px;
    height: 100%;
    background:rgb(255, 255, 255);
    padding: 10px 20px;
}

section.details-project .latest-projects .item{
    display: flex;
    align-items:center;
    gap: 10px;
    margin:10px 0;
    height: 90px;
}

section.details-project .latest-projects .item .image{
    height: 100%;
}
section.details-project .latest-projects .item img{
    height: 100%;
    object-fit: cover;
}

section.details-project .plan img{
    width: 60%;
    object-fit: cover;
}
