@import url('https://fonts.googleapis.com/css2?family=Pinyon+Script&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

body, html{
    margin: 0;
    overflow-x: hidden;
    font-family: "Urbanist", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    scrollbar-width: thin;
    scrollbar-color: #2b2b2b #0f0f0f;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #0f0f0f; }
::-webkit-scrollbar-thumb { background: #2b2b2b; border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: #3d3d3d; }

b, strong {
    font-weight: bold;
}
  
/* Padroes */

.title-default *:last-child {
    margin-bottom: 20px;
}

section.section_pd {
    padding: 30px 0;
}

.title-default p {
    font-size: 16px;
    font-weight: 300;
}

.title-default h2 {
    font-size: 26px;
    font-weight: 200;
}

.title-default h3{
    font-weight: 300;
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.title-default h4 {
    font-weight: 300;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.line_border hr {
    border: 1px solid;
    opacity: 1;
    margin-bottom: 10px;
}

.text-orange{
    color: #DA6432;
    border-color: #DA6432;
}

.text-orange-dark{
    color: #7C3626;
    border-color: #7C3626;
}

@media(min-width:996px){
    .title-default p {
        font-size: 18px;
    }

    .line_border{
        width: 65%;
    }

    .title-default h2 {
        font-size: 40px;
    }

    .title-default h4{
        margin-bottom: 25px;
    }
}

@media(min-width:1290px){
    section.section_pd {
        padding: 60px 0;
    }
}

@media(min-width:1290px){
    section.section_pd {
        padding: 100px 0;
    }
}

/* Menu */

nav.nav_home ul {
    list-style: none;
    padding: 0;
}

nav.nav_home ul li a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.8em;
    letter-spacing: 2px;
    font-size: 16px;
    margin-bottom: 10px;
    display: inline-block;
}

.header-wrapper{
    display: none;
    padding: 40px 25px;
    background: #F2F2F2;
}

.header:before {
    display: none;
    content: '';
    width: 100%;
    height: 74px;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    transition: all 300ms ease
}

.header-toggle-btn {
    position: absolute;
    top: 24px;
    left: 40px;
    width: 26px;
    height: 26px;
    background: transparent;
    z-index: 2;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    transition: all 300ms ease;
    border: none;
}

.header-toggle-btn i {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 3px;
    background: #d7d7d7;;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 300ms 400ms ease;
    -moz-transition: all 300ms 400ms ease;
    -o-transition: all 300ms 400ms ease;
    -ms-transition: all 300ms 400ms ease;
    transition: all 300ms 400ms ease;
}

.header-toggle-btn.whited i{
    background: #000000;
}


.header-toggle-btn i:nth-child(1) {
    top: 0
}

.header-toggle-btn i:nth-child(2) {
    top: 11px
}

.header-toggle-btn i:nth-child(3) {
    top: 23px
}

.header-toggle-btn--mobile {
    visibility: hidden;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0)
}

.header-home-btn {
    position: absolute;
    top: 24px;
    right: 25px;
    width: 26px;
    height: 26px;
    overflow: hidden;
    text-indent: -9999em;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    transition: all 300ms ease;
}

.header-home-btn:before,.header-home-btn:after {
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: #d7d7d7;;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    border: none;
}

button.header-inverser i {background: white;}

.header-home-btn:before {
    width: 100%;
    height: 3px
}

header.scrolled {
    position: fixed;
}

.header-home-btn:after {
    width: 3px;
    height: 100%
}

.header-col {
    position: relative;
    display: inline-block;
    vertical-align: bottom;
    width: 33.3%;
    height: 242px;
}

nav.nav_home {
    margin: 40px 0 0 0;
}

.menu_larissaa ul {
    counter-reset: item; 
    margin: 0;
    padding: 0;
  }
  
.menu_larissaa li {
    counter-increment: item; 
    display: flex;
    justify-content: space-between;
    align-items: center;
}
  
.menu_larissaa li a span::before {
    content: counter(item, decimal-leading-zero); /* gera tipo 01, 02, 03 */
    font-weight: bold;
    color: #ffffff;
}

nav.menu_larissaa li a {
    display: flex;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid #fff;
    padding: 20px 20px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s linear;
}

nav.menu_larissaa li a:hover {
    color: #000;
    background: #fff;
}

nav.menu_larissaa li a:hover span:before {
    color: #000;
}

/* Footer */
.realfooter{
    background: #f8f8f8;
    padding: 40px 20px;
}

.big__footer h3 {
    font-weight: 100;
    color: #fff;
    font-size: 20px;
    letter-spacing: 3px;
    text-align: left;
}

.big__footer__contatcs ul li {
   color: #F7F7FF;
    font-weight: 200;
    display: flex;
    flex-direction: column;
    padding: 5px 0;
}

.big__footer__contatcs ul li span{
    font-size: 13px;
}

.big__footer__contatcs ul:first-child li{
    justify-content: flex-end;
}

.big__footer__contatcs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.big__footer__contatcs ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

/* Home */

section {
    position: relative;
    z-index: 1;
}

.section-transition{
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 2;
    background: white; /* ou a cor da seção */
    display: flex;
    align-items: center;
    justify-content: center;
}

section.banner__principal {
    height: 60vh;
    background: #ECECEC;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
    background-image: url(assets/img/banner/banner.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.desc__banner_pr h1 {
    font-size: 60px;
    font-weight: 250;
    color: #fff;
    margin-bottom: 25px;
    line-height: 0.9em;
}

.desc__banner_pr p {
    font-weight: 250;
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 1px;
    color: #fff;
}

.false_main_banner{
    height: 40vh;
}

.bg__dark {
    background: #0A0F0D;
    padding: 20px 0;
    position: relative;
}

/* section.section_pd.bg__dark:before {
    content: "";
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(0, 0, 0, 0) 100%);
    inset: 0;
    position: absolute;
    pointer-events: none;
} */

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 400px;
    text-decoration: none;
}

.swiper-slide img {
    display: block;
    width: 100%;
}

.single_exp {
    padding: 15px 0;
}

.top_title_exp h3 {
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    color: #000;
}

.mid_title_exp ul {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
    font-size: 16px;
    align-items: center;
    padding: 0;
    list-style: none;
}

.mid_title_exp ul li {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #0A0F0D;
    min-width: 100px;
}

.mid_title_exp ul span {
    display: block;
    height: 1px;
    background: #000;
    flex: 1;
    margin: 0 15px;
    min-width: 30px;
    max-width: 30px;
}

.mid_title_exp ul p {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 0;
    color: #0A0F0D;
    max-width: 65%;
}

.time_exp p {
    margin: 15px 0 5px;
    color: #0A0F0D;
    font-weight: 300;
}

.slider-inside {
    background: #F5853F;
    min-height: 400px;
    border-radius: 30px;
    padding: 40px;
    display: flex;
    align-items: flex-end;
}

.slider-inside h3 {
    color: #F7F7FF;
    text-decoration: none;
    font-weight: 200;
    font-size: 40px;
}


@media(min-width:996px){
    .expex_home {
        margin-left: 45%;
    }

    .mid_title_exp ul span{
        min-width: 100px;
        max-width: 100px;
    }

    .mid_title_exp ul p{
        font-size: 16px;
        margin-left: 10px;
        margin-right: 20px;
    }

    .top_title_exp h3{
        font-size: 22px;
    }
        
    .false_main_banner{
        height: 22vh;
    }

    .desc__banner_pr h1 {
        font-size: 120px;
    }

    .desc__banner_pr p{
        font-size: 22px;
    }

    section.banner__principal {
        height: 80vh;
    }

    .realfooter{
        padding: 90px 90px;
        max-width: 1000px;
    }

    .mid_title_exp ul{
        justify-content: flex-start;
    }

    .big__footer{
        display: flex;
        justify-content: center;
    }
 
    .big__footer h3 {
        font-size: 50px;
        text-align: left;
    }      
    
    .big__footer__contatcs ul li {
        display: flex;
        flex-direction: row;
        grid-gap: 35px;
        padding: 5px 0;
    }   

    .big__footer__contatcs ul li a{
        font-size: 16px;
    }
}

@media(min-width:1270px){
    .false_main_banner{
        height: 30vh;
    }

    section.banner__principal {
        height:70vh;
    }
}

@media(min-width: 1440px){
    section.banner__principal {
        height: 75vh;
    }

    .false_main_banner{
        height: 25vh;
    }

    .realfooter{
        max-width: 1140px;
    }
}

/* Social Midia */

section.interna__first {
    height: 30vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px 0;
}

.desc-interna h1 {
    font-size: 40px;
    font-weight: 100;
    letter-spacing: 1px;
    color: #FFF6E4;
    font-weight: 700;
}

.desc-interna h1 span.subname-desc-interna {
    color: #545454;
    font-weight: 100;
}
/* Old Carrosel 100% */
/* .carrosel__social__mdiia {
    width: 100vw; 
    margin-left: calc(-50vw + 50%); 
    position: relative;
    overflow: hidden;
} */

.carrosel__social__mdiia {
    width: 100vw; 
    position: relative;
    overflow: hidden;
}

.social_media_swiper {
    width: 100%; 
}

.swiper-button-prev, 
.swiper-button-next {
    color: white;
}


.social_media_swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px; 
}


.swiper-button-prev, 
.swiper-button-next {
    color: white; 
}

.desc__big__cliente {
    padding: 40px 0;
}

.desc__big__cliente p {
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.5em;
    margin: 0;
}

@media (min-width:996px) {
    .desc__big__cliente{
        max-width: 75%;
    }

    .desc-interna h1{
        font-size: 60px;
    }

    .desc__big__cliente {
        padding: 60px 0 40px;
    }

    .desc__big__cliente p{
        font-size: 18px;
    }
}


/* ID Visual */

.grid-idvisual {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    grid-gap: 2px;
}

.flex-lado-big, .flex-lado-little{
    width: 100%;
}

.single-bloco-image {
    min-height: 145px;
    width: 49.8%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.big__grid {
    min-height: 240px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.flex-top_little {
    display: flex;
    grid-gap: 1px;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media(min-width: 996px){
    .big__grid{
        min-height: 450px;
    }

    .flex-lado-big, .flex-lado-little{
        width: 50%;
    }

    .grid-idvisual{
        flex-direction: row;
    }

    .single-bloco-image{
        min-height: 225px;
    }
}

/* Logos e KVS */

.logo_edital {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.grid-logos-kvs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    grid-gap: 10px;

}

.logo_edital img {
    width: 100%;
    max-width: 170px;
    margin-bottom: 15px;
}

.col-grid .card_kvs{
    min-height: 250px;
}

.col-grid{
    width: 48%;
}

.card_kvs {
    min-height: 200px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.false_nav hr {
    border: 7px solid #000000;
    width: 3%;
    opacity: 1;
    border-radius: 80px;
}

.colun-6 {
    width: 50%;
}

.column-66 {
    width: 100%;
}

.colun-6 .card_kvs {min-height: 380px;}

@media(min-width: 996px){
    .colun-6 {
        width: 50%;
    }

    .elos-click .card_kvs{
        min-height: 300px;
    }

    .grid-logos-kvs{
        flex-wrap: nowrap;
    }

    .col-grid .card_kvs{
        min-height: 500px;
    }

    .col-grid {
        width: 33%;
    }   

    .logo_edital img {
        width: 75%;
        max-width: max-content;
        margin: 0;
    }

    .logo_edital{
        width: 30%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
    }

    .col-grid {
        width: 33%;
    }

    .column-66 {
        width: 66%;
    }

    
    .card_kvs {
        min-height: 500px;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
    
}

/* UI Pág */

.container-ui {
    height: 400px;
    overflow-y: auto; 
    position: relative; 
    padding-right: 5px;
    margin: 10px 0;
}

/* Estilizando a barra de rolagem */
.container-ui::-webkit-scrollbar {
    width: 6px; 
    position: absolute;
    right: -20px; 
    background: #fafafa
}

.container-ui::-webkit-scrollbar-thumb {
    background: #000; 
    border-radius: 10px;
    width: 16px; 
    height: 50px
}


/* .container-ui::-webkit-scrollbar {
    width: 7px; 
  };
  
.container-ui::-webkit-scrollbar-thumb {
    background: brown;
};
  
.container-ui::-webkit-scrollbar-track {
    background: black;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    background-clip: padding-box;
  }; */

.container-ui img {
    display: block;
    width: 100%; 
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

@media(min-width:996px){
    .container-ui{
        height: 360px;
        max-width: 460px;
        margin: 0 auto;
        padding-right: 20px; 
    }
}

@media(min-width:1250px){
    .container-ui{
        Height: 730px;
        max-width: fit-content;
    }
}

.container-ui .slider-images img {
    display: none;
    width: 100%;
    max-width: 100%;
}

.container-ui .slider-images img.active {
    display: block;
}

.slider-buttons {
    margin-top: 10px;
    text-align: center;
    display: flex;
    justify-content: flex-end;
}

.slider-buttons button {
    margin: 0 5px;
    padding: 8px 20px;
    cursor: pointer;
    border-radius: 58px;
    font-size: 16px;
    font-weight: 600;
    border: 0;
    background: none;
    font-size: 18px;
}

.slider-buttons button.active {
    background-color: #000;
    color: #fff;
}

  
.swiper-scrollbar-drag {
    background: #FFF6E4;
    border-radius: 10px;
}
  
  
.false__kite__img {
    min-width: 100%;
    min-height: 330px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.swiper-controls {
    margin-top: 15px;
}

@media(min-width: 1024px){
    .false__kite__img{
        min-height: 264px;
    }
}


@media(min-width: 1440px){
    .false__kite__img{
        min-height: 400px;
    }
    
    .swiper-controls{
        margin-top: 35px;
    }
}

span.swiper-pagination-bullet {
    display: inline-block;
    width: 14px;
    height: 5px;
    background: #000000;
    border-radius: 50px;
    transition: .6s ease-in-out;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #000000;
    width: 50px;
}

/* NOVO BANNER DO NEWS OLDS BOYS DA ARGENTINAAAAAAAAA */

.new_old_boys img {
    width: 50%;
}

section.banner__novo {
    padding: 40px 0;
    height: 60vh;
}

@media(min-width:996px){
    section.banner__novo {
        padding: 80px 0;
        height: 100vh;
    }
}

.flip-container {
    perspective: 1000px;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
}

.flipper {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-container:hover .flipper {
     transform: rotateY(180deg);
}

.front, .back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    cursor: pointer;
}

.front img,
.back img {
    width: 100%;
    height: auto;
}

@media(min-width:996px){
    .front img,
    .back img {
        width: 40%;
        height: auto;
    }
}

@media(min-width:1440px){
    .front img,
    .back img {
        width: 45%;
        height: auto;
    }
}

@media(min-width:1840px){
    .front img,
    .back img {
        width: 50%;
        height: auto;
    }
}


.keycaps__projetos a img {width: 100%;}

.keycaps__projetos a {
    width: 100%;
    display: inline-block;
    text-align: center;
    position: relative;
}


.back {
    transform: rotateY(180deg);
}

.keycaps__projetos a:hover img {
    transform: scale(0.9);
    z-index: 9;
    position: relative;
}

.keycaps__projetos a img {
    transition: 0.150s linear;
}

.row.container-falso-dobaraga .col-lg-2 {
    margin: 0 !important;
    padding: 0 !important;
}

.keycaps__projetos a:before {
    content: "";
    background-image: url(assets/img/home/sombra.png);
    width: 180px;
    height: 90px;
    position: absolute;
    bottom: -90px;
    background-position: center;
    background-size: cover;
}

.topo__field a {
    color: #000;
    font-weight: 200;
    font-size: 14px;
    transition: 0.4s linear;
}

.topo__field{
    padding: 10px 0;
}

.real__memu__meuamor ol{
    counter-reset: items;
    padding: 0;
}

nav.real__memu__meuamor ol a {
    display: inline-flex;
    width: 100%;
    transition: 0.3s linear;
    padding: 15px 0;
    border-bottom: 1px solid #C0C0C0;
    position: relative;
    align-items: center;
    grid-gap: 10px;
}

.real__memu__meuamor a{
    text-decoration: none;
}

.real__memu__meuamor li {
    display: inline;
    counter-increment: items;
    color: #000;
    text-decoration: none;
    font-size: 20px;
    transition: 0.2s linear;
    font-weight: 300;
}

nav.real__memu__meuamor ol a:hover li{
    font-weight: 700;
}

.real__memu__meuamor li:before {
    content: "0" counter(items)" ";
}

.real__memu__meuamor li:nth-child(n+10):before {
    content: "0" counter(items)". ";
}

.real__memu__meuamor li:nth-child(n+100):before {
    content: counter(items)". ";
}

.bottom__menu ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    padding: 0;
}

.bottom__menu ul li a {
    color: #000;
    font-weight: 300;
    text-decoration: none;
    font-size: 18px;
    transition: 0.2s linear;
}

.bottom__menu ul li a:hover{
    font-weight: 700;
}


button.header-toggle-btn.header-toggle-btn--desktop:hover i {
    background-color: #000;
}

@media(min-width: 996px){
    .topo__field a{
        font-size: 18px;       
    }

    .real__memu__meuamor li {
        font-size: 30px;    
    }

    .header-wrapper{
        padding: 50px 0;
    }
}

/* ANIMACOES */

.hero {
  text-align: center;
  padding: 100px 20px;
}

.words {
  position: relative;
  font-size: 25px;
  font-weight: 300;
  height: 80px;
}

.word {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.05;
  font-weight: 100;
  color: #000;
  transition: all 0.3s ease;
  pointer-events: none;
  width: 100%;
}

.word.active {
  opacity: 1;
  font-weight: 700;
  color: #000;
  z-index: 10;
}

.menu {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 60px;
}

.menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.menu-item img {
  width: 40px;
  height: 40px;
  opacity: 0.1;
  transition: opacity 0.3s ease;
  filter: grayscale(1);
}

.menu-item span {
  width: 24px;
  height: 4px;
  background-color: var(--color);
  margin-top: 6px;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-item:hover img {
  opacity: 1;
  filter: none;
}

.menu-item:hover span {
  opacity: 1;
}

.menu-item:hover {
  cursor: pointer;
  opacity: 1;
}


a.ui_btn {
    color: #000;
    margin-bottom: 20px;
    font-weight: 200;
    font-size:18px;
    letter-spacing: 1.5px;
    text-underline-offset: 6px;
    transition: 0.3s linear;
}

@media(min-width: 996px){
    .words{
        font-size: 80px;
    }

    .menu{
        margin-top: 120px;
        gap: 100px;
    }

    
    a.ui_btn {
        font-size:25px;
    }

    .menu-item img {
        width: 60px;
        height: 60px;
    }

    .menu-item:nth-child(2) img{
        width: 70px;
        height: 70px;
    }
}



a.ui_btn i, a.ui_btn_low i {
    content: url(assets/svg/arrow.svg);
    width: 15px;
    margin-bottom: 0 !important;
    margin-left: 10px;
}

a.ui_btn_low{
    color: #000;
    font-weight: 200;
    font-size: 18px;
    text-underline-offset: 4px;
    transition: 0.3s linear;

    & i{
        width: 10px;
        margin-left: 5px;
    }
}

a.ui_btn:hover, a.ui_btn_low:hover{
    transform: scale(1.05);
}

/* Container fixo da scrollbar */
.swiper-scrollbar-container {
  width: 250px; 
  /* margin: 20px auto 0;  */
  position: relative;
}

/* Linha da barra */
.swiper-scrollbar {
  height: 2px;
  background: #373737;
  border-radius: 5px;
  position: relative;
}

/* Menu novo */
.menu-novo nav ul{
    list-style: none;
    padding-left: 0;
    display: flex;
    grid-gap: 7px;
    justify-content: center;
    margin: 0;
    width: fit-content;
    background: #f6f6f6;
    padding: 14px 10px;
    border-radius: 50px;
}

.menu-novo nav ul li a {
    color: #000;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 40px;
    transition: 0.3s linear;
    font-size: 13px;
}

.menu-novo nav ul li a:hover {
    background: #000;
    color: #fff;
}

.menu-novo {
    transform: translateY(40px);
}
/* 
.btn-voltar-topo > div {
    position: fixed;
    right: 96px;
    bottom: 25px;
    background: #f6f6f6;
    padding: 10px 5px 10px 20px;
    color: #000;
    text-decoration: none;
    border-radius: 35px;
    font-size: 10px;
    z-index: 9;
}

.btn-voltar-topo > div span {
    background: #000;
    color: #fff;
    padding: 8px 15px;
    border-radius: 40px;
    margin-left: 10px;
}

.btn-voltar-topo a i{
    content: url(assets/svg/iconaarrow.svg);
    width: 11px;
    margin-right: 7px;
} */

.d-done{
    display: none !important;
}

/* Footer */

.main-title-footer a {
    color: #000;
    text-decoration: none;
    font-weight: 800;
    font-size: 26px;
    transition: 0.3s linear;
}

.main-title-footer a:hover{
    opacity: 0.35;
}

.links-footer a {
    color: #000;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
    transition: 0.3s linear;
}

.links-footer a:hover {
    opacity: 0.5;
}

.main-title-footer span {
    font-weight: 200;
    font-size: 14px;
}

@media(min-width: 996px){
    .main-title-footer a{
        font-size: 32px;
    }

    /* .btn-voltar-topo a i{
        width: 14px;
        margin-right: 8px;
    }

    .btn-voltar-topo a{
        right: 45px;
        bottom: 45px;
        padding: 17px 5px 17px 20px;
        font-size: 16px;
    }

    .btn-voltar-topo a span{
        padding: 13px 20px;
    } */

    .menu-novo nav ul li a{
        font-size: 16px;
    }

    .menu-novo nav ul{
        grid-gap: 35px;
    }
}

/* BTN */

/* From Uiverse.io by vinodjangid07 */ 
.button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgb(20, 20, 20);
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 0px 4px rgba(180, 160, 255, 0.253);
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
  position: relative;
}

.svgIcon {
  width: 12px;
  transition-duration: 0.3s;
}

.svgIcon path {
  fill: white;
}

.button:hover {
  width: 140px;
  border-radius: 50px;
  transition-duration: 0.3s;
  background-color: rgb(181, 160, 255);
  align-items: center;
}

.button:hover .svgIcon {
  /* width: 20px; */
  transition-duration: 0.3s;
  transform: translateY(-200%);
}

.button::before {
  position: absolute;
  bottom: -20px;
  content: "Back to Top";
  color: white;
  /* transition-duration: .3s; */
  font-size: 0px;
}

.button:hover::before {
  font-size: 13px;
  opacity: 1;
  bottom: unset;
  /* transform: translateY(-30px); */
  transition-duration: 0.3s;
}


/* NEW BTN FIXED HOME */

.btn-voltar-topo {
    position: fixed;
    right: 96px;
    bottom: 25px;
    z-index: 99999;
}

.realbtn-voltar-topo {
    background: #f6f6f6;
    padding: 3px 5px;
    border-radius: 40px;
    color: #000;
}

.realbtn-voltar-topo a:first-child {
    padding: 15px 20px;
    background: #f6f6f6;
    border-radius: 60px;
    color: #000;
    padding: 8px 15px;
    border-radius: 40px;
    text-decoration: none;
}


.realbtn-voltar-topo a:hover i{
    animation: moveInTop .7s ease-out;
}

@keyframes moveInTop {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    75% {
        transform: translateY(15px);
    }
    100% {
        transform: translateY(0);
    }
}

.realbtn-voltar-topo a:first-child i{
    content: url(assets/svg/iconaarrow.svg);
    width: 11px;
    margin-right: 7px;
}

.realbtn-voltar-topo a:last-child {
    padding: 15px 20px;
    background: #000;
    border-radius: 60px;
    background: #000;
    color: #fff;
    padding: 8px 15px;
    border-radius: 40px;
    margin-left: 10px;
    text-decoration: none;
}

@media(min-width: 996px){
    .btn-voltar-topo {
        right: 45px;
        bottom: 45px;
    }
}

/* ================================================================
   V2 DESIGN SYSTEM
   ================================================================ */

/* --- Global dark theme --- */
body {
    background-color: #0f0f0f;
    color: #fff6e4;
}

/* ----------------------------------------------------------------
   HEADER V2
   ---------------------------------------------------------------- */
.header-v2 {
    position: relative;
    width: 100%;
    background: #0f0f0f;
    height: 260px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 36px;
    padding-right: clamp(24px, 5vw, 80px);
    z-index: 200;
}

.header-brand {
    margin-left: auto;
    font-size: clamp(18px, 2.5vw, 42px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.nav-v2 {
    padding-left: clamp(24px, 14vw, 280px);
    width: 100%;
}

.nav-v2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: clamp(30px, 4vw, 70px);
    align-items: flex-start;
}

.nav-v2 ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.nav-v2 ul li::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 300px;
    background: #ff2f00;
    opacity: 0;
    transition: opacity 0.25s;
    pointer-events: none;
}

.nav-v2 ul li:hover::before,
.nav-item-active::before {
    opacity: 1;
}

.nav-v2 ul li a {
    font-family: 'Urbanist', sans-serif;
    font-size: clamp(16px, 1.5vw, 24px);
    font-weight: 400;
    color: #fff6e4;
    text-decoration: none;
    line-height: 1;
    transition: opacity 0.2s;
}

.nav-v2 ul li a:hover {
    opacity: 0.6;
}

.nav-item-active a {
    font-weight: 800;
}

.nav-arrow-down {
    display: block;
    margin-top: 10px;
    line-height: 0;
    cursor: pointer;
}

.nav-arrow-down svg {
    transition: transform 0.25s;
}

.nav-item-has-dropdown.is-open .nav-arrow-down svg {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    background: #0f0f0f;
    border: 1px solid #2b2b2b;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s;
    white-space: nowrap;
    z-index: 300;
}

.nav-dropdown.is-open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.nav-dropdown a {
    color: #fff6e4;
    text-decoration: none;
    font-family: 'Urbanist', sans-serif;
    font-size: clamp(14px, 1.2vw, 18px);
    font-weight: 400;
    transition: opacity 0.2s;
}

.nav-dropdown a:hover {
    opacity: 0.6;
}

/* Mobile hamburger */
.nav-mob-btn {
    display: none;
    position: absolute;
    right: 24px;
    bottom: 36px;
    width: 36px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-direction: column;
    justify-content: space-between;
}

.nav-mob-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff6e4;
    transition: all 0.3s;
}

.nav-mob-btn.is-open span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.nav-mob-btn.is-open span:nth-child(2) { opacity: 0; }
.nav-mob-btn.is-open span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

.nav-mob-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: #0f0f0f;
    z-index: 199;
    padding: 100px 40px 40px;
}

.nav-mob-overlay.is-open {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nav-mob-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.nav-mob-overlay ul li a {
    font-family: 'Urbanist', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff6e4;
    text-decoration: none;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .header-v2 {
        height: 160px;
    }
    .header-red-corner {
        width: 80px;
        height: 110px;
    }
    .nav-v2 {
        display: none;
    }
    .nav-mob-btn {
        display: flex;
    }
    .header-brand {
        display: none;
    }
}

/* ----------------------------------------------------------------
   HERO V2
   ---------------------------------------------------------------- */
.section-hero-v2 {
    position: relative;
    background: #0f0f0f;
    min-height: calc(100vh - 260px);
    overflow-x: clip;
    overflow-y: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 80px;
}

.hero-watermark {
    position: absolute;
    font-family: 'Pinyon Script', cursive;
    font-size: clamp(120px, 22vw, 400px);
    color: #2b2b2b;
    left: -1%;
    top: 70%;
    transform: translateY(-60%);
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
    line-height: 1;
}

.hero-left {
    position: relative;
    z-index: 2;
    width: 55%;
    padding-left: clamp(20px, 11%, 220px);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-name {
    font-size: clamp(40px, 6.5vw, 124px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.header-brand .name-bold {
    font-weight: 800;
    color: #fff6e4;
}

.header-brand .name-thin {
    font-weight: 100;
    color: #fff6e4;
}

.hero-name .name-bold {
    font-weight: 800;
    color: #fff6e4;
}

.hero-name .name-thin {
    font-weight: 100;
    color: #fff6e4;
}

.hero-categories {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cat-link {
    font-family: 'Urbanist', sans-serif;
    font-size: clamp(26px, 4.5vw, 86px);
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1.15;
    font-weight: 300;
    color: #2B2B2B;
    transition: all 0.3s;
    display: block;
}

.cat-link:first-child {
    font-weight: 800;
    color: #fff6e4;
}

.cat-link:first-child:hover {
    font-weight: 800;
    color: #fff6e4;
}

.hero-categories:hover .cat-link:first-child {
    font-weight: 300;
    color: #2B2B2B;
}

.cat-link:hover {
    font-weight: 800;
    color: #fff6e4;
}

.hero-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-photo-wrap {
    position: relative;
    display: inline-block;
    top: -150px;
    right: -90px;
}

img.hero-photo {
    position: relative;
    display: block;
    max-width: 100%;
    z-index: 2;
}

.hero-photo-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 85%;
    height: 50%;
    background: #ff2f00;
    z-index: 1;
}


@media (max-width: 996px) {
    .section-hero-v2 {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 40px;
        min-height: auto;
    }
    .hero-left {
        width: 100%;
        padding-left: 24px;
        padding-right: 24px;
        gap: 24px;
    }
    .hero-right {
        position: relative;
        width: 100%;
        height: 50vw;
        max-height: 400px;
        order: -1;
    }
    .hero-photo {
        object-position: center 20%;
    }
    .hero-watermark {
        font-size: 34vw;
        top: 80%;
    }
}

/* ----------------------------------------------------------------
   EXPERIENCE V2
   ---------------------------------------------------------------- */
.section-exp-v2 {
    background: #0f0f0f;
    display: flex;
    align-items: stretch;
    padding: 80px 0;
    gap: 0;
}

.exp-label-wrap {
    width: 80px;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.exp-label-rotated {
    font-family: 'Urbanist', sans-serif;
    font-weight: 300;
    font-size: clamp(32px, 3.5vw, 72px);
    color: #fff6e4;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex: 1;
}

.exp-card {
    padding: clamp(24px, 3vw, 48px) clamp(20px, 2.5vw, 36px);
    transition: background 0.3s;
}

.exp-card:nth-child(3n + 1) {
    border-left: none;
}

.exp-card--highlight {
    background: #fff6e4;
}

.exp-card--highlight .exp-date,
.exp-card--highlight .exp-title,
.exp-card--highlight .exp-company,
.exp-card--highlight .exp-skills {
    color: #0f0f0f;
}

.exp-date {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: clamp(14px, 1.2vw, 20px);
    color: #fff6e4;
    margin: 0 0 16px;
}

.exp-title {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 1.8vw, 32px);
    color: #fff6e4;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.exp-company {
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.2vw, 20px);
    color: #fff6e4;
    margin: 0 0 16px;
}

.exp-skills {
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    font-size: clamp(13px, 1vw, 18px);
    color: #fff6e4;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 996px) {
    .section-exp-v2 {
        padding: 40px 0;
        flex-direction: column;
    }
    .exp-label-wrap {
        width: 100%;
        height: 60px;
        writing-mode: initial;
        justify-content: flex-start;
        padding: 0 24px;
    }
    .exp-label-rotated {
        writing-mode: initial;
        transform: none;
        font-size: 28px;
    }
    .exp-grid {
        grid-template-columns: 1fr;
    }
    .exp-card {
        border-left: none;
        border-top: 1px solid #2b2b2b;
        padding: 28px 24px;
    }
    .exp-card:nth-child(3n + 1) {
        border-top: 1px solid #2b2b2b;
    }
    .exp-card--highlight {
        border-top: none;
    }
}

/* ----------------------------------------------------------------
   ACADEMIC V2
   ---------------------------------------------------------------- */
.section-academic-v2 {
    background: #0f0f0f;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px clamp(20px, 5%, 100px);
}

.academic-label {
    font-family: 'Urbanist', sans-serif;
    font-weight: 300;
    font-size: clamp(32px, 4.5vw, 72px);
    color: #fff6e4;
    text-transform: uppercase;
    margin: 0;
    flex: 1;
    white-space: nowrap;
}

.academic-content {
    flex: 1;
}

.academic-degree {
    display: flex;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
}

.academic-field {
    font-family: 'Urbanist', sans-serif;
    font-weight: 800;
    font-size: clamp(24px, 2.2vw, 32px);
    color: #fff6e4;
    text-transform: uppercase;
}

.academic-institution {
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    font-size: clamp(24px, 2.2vw, 32px);
    color: #fff6e4;
}

.academic-type {
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 1.5vw, 24px);
    color: #fff6e4;
    margin: 4px 0 0;
}

.academic-icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.academic-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 61px;
    height: 61px;
    border-radius: 50%;
    border: 1.5px solid #fff6e4;
    text-decoration: none;
    transition: opacity 0.3s;
    flex-shrink: 0;
}

.academic-icon-btn:hover {
    opacity: 0.7;
}

.academic-icon-btn--light {
    background: #fff6e4;
    border-color: #fff6e4;
}

.academic-icons--floating {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 300;
}

@media (max-width: 768px) {
    .section-academic-v2 {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 40px 24px;
    }
    .academic-icons {
        flex-direction: row;
    }
}

/* ----------------------------------------------------------------
   FOOTER V2
   ---------------------------------------------------------------- */
.footer-v2 {
    background: #0f0f0f;
    border-top: 1px solid #1e1e1e;
}

.footer-contact-bar {
    background: #fff6e4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 16vw, 120px);
    flex-wrap: wrap;
    padding: 20px 0;
    overflow: visible;
}

.footer-email-pill {
    background: #ff2f00;
    color: #fff6e4;
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.2vw, 20px);
    text-decoration: none;
    padding: 36px 28px;
    margin: -25px 0;
    white-space: nowrap;    
    transition: opacity 0.3s;
    z-index: 9;
}

.footer-email-pill:hover {
    opacity: 0.85;
    color: #fff6e4;
}

.footer-link {
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.2vw, 20px);
    color: #0f0f0f;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.footer-link:hover {
    opacity: 0.6;
    color: #0f0f0f;
}

.footer-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px clamp(20px, 11%, 220px);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-city {
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    font-size: clamp(18px, 2vw, 32px);
    color: #fff6e4;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.footer-year {
    font-weight: 100;
}

.footer-credit {
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.3vw, 24px);
    color: #fff6e4;
    margin: 0;
}

.footer-credit a {
    color: #fff6e4;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-credit a:hover {
    opacity: 0.7;
}

.footer-arrow {
    font-size: 0.85em;
}

/* ----------------------------------------------------------------
   BACK TO TOP BTN V2
   ---------------------------------------------------------------- */
.btn-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: #ff2f00;
    color: #fff6e4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 300;
}

.btn-top.is-visible {
    opacity: 1;
    pointer-events: all;
}

.btn-top:hover {
    transform: translateY(-4px);
    color: #fff6e4;
}


/* Edits do dia 23/06/2026 */



@media(min-width: 996px){
    .cat-link:nth-child(1) { padding-left: 0px; }
    .cat-link:nth-child(2) { padding-left: 100px; }
    .cat-link:nth-child(3) { padding-left: 200px; }
    .cat-link:nth-child(4) { padding-left: 300px; }

    .exp-label-wrap {
        position: absolute;
        left: 0px;
    }
}

@media(min-width: 1440px){
    .exp-label-wrap {
        left: 10%;
    }
}


.big_socialmedia_titles h2{
    font-family: 'Urbanist', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 4.5vw, 72px);
    color: #FFF6E4;
}


.big_socialmedia_titles p{
    font-weight: 300;
    color: #FFF6E4;
    font-size: clamp(16px, 2vw, 24px);
    margin-bottom: -10px;
}