:root{
--dark-color: #191719;
--light-blue-color: #B2CCE7;
--light-gray-color: #D3D4D4;
--background-gray-color: #EEEEEE;
--mid-gray-color:#CECED0;
--white-color:#FEFEFE;

}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background-image: url(images/Background_A.png);
    background-color: var(--background-gray-color);
    background-size:auto;
    background-repeat: no-repeat;
    background-position: top center;
    height: 100vh;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Geologica", sans-serif;
    height: 100vh;
    
}


/* Buttons */

.btn_primary {
    display: flex;
    flex-direction: row;
    padding: .75rem 0;
    gap: .25rem;
    font-family: "Inter" , sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
    width:fit-content;
    height: fit-content;
    
    color: var(--dark-color);
    text-decoration: none;
    align-items: center;
    justify-content:left;


    transition-property: gap, font-weight;
    transition-duration: 250ms;
    transition-timing-function:ease-in-out
}


.btn_primary:hover{
    gap: .5rem;
    font-weight: 600;
}


.btn_primary:focus{
    gap: .5rem;
    font-weight: 600;
}



/* Estilização Menu Mobile */

.menu-mobile{
    width: 100%;
    position: absolute;
    top: 4rem;
    left: 0;
    height: 0;
    background-color: var(--background-gray-color);
    border-bottom: 1px solid var(--dark-color);
    visibility: hidden;
    transition: 500ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
    overflow: hidden;
}


.menu-mobile nav{
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

.menu-mobile ul{
    
    margin-top: 4rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

}

.menu-mobile li {
    display: flex;
    width: 100%;
    height: 3rem;
    padding: 12px 0;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    
    margin-left: -.75rem;
}

.menu-mobile a{
    display: flex;
    flex-direction: row;
    justify-content: left;
    width: 100%;
    align-items: center;
    gap: .5rem;
    padding: 12px 8px;
    color: var(--dark-color);
    text-decoration: none;
    font-family: "Geologica", sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    
    transition-property: background-color;
    transition-duration: 500ms;
    transition-timing-function:ease-in-out
}

.menu-mobile a:focus{
    background-color: var(--light-gray-color);
}


.topo_menu_mobile{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
}


.menu-mobile.apresentar_menu{
    visibility: visible;
}



/* Estilização do Botão do Menu Mobile */

button{
    width: 2.5rem;
    height: 2.5rem;
    aspect-ratio: 1/1;
    background: transparent;
    border: none;
    cursor: pointer;
    display: none;
    
}

.linha{
    width: 1.75rem;
    height: 2px;
    background:var(--dark-color);
    display: block;
    margin: .5rem auto;
    position: relative;
    transform-origin: center;
    transition: 300ms ease-in-out;
}

button.ativar .linha:nth-child(1){
    transform: translateY(.6rem) rotate(-45deg);
   
}

button.ativar .linha:nth-child(3){
    transform: translateY(-.6rem) rotate(45deg);
}

button.ativar .linha:nth-child(2){
    width: 0;
}




/* Header */


header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto;
    padding: 3rem 0;
    width: 90%;    
    max-width: 75rem;
    gap: 2rem;
    z-index: 90;
   
    animation: appear_up 1.3s cubic-bezier(0.075, 0.82, 0.165, 1);   
}



.menu{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items:center;
    width: 100%;
    gap: 3rem;
    
    margin: auto; 
}


nav{
    display: flex;
    justify-content: left;
    align-items: center;
    width: 100%;
    gap: 1.5rem;
    max-width: 85rem;
    margin: auto;    
}

nav ul {
    display: flex;
    align-items: center;
    justify-content:space-between;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    width:auto;
    

}

nav ul li {
    display: flex;
    width: 90px;
    height: 48px;
    padding: 12px 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    
    margin-bottom: 8px;
}


.menu nav ul li a {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-color);
    text-decoration: none;
    padding: 12px 8px;
    justify-content: center;
    align-items: center;
    position: relative;

    transition-property: font-weight;
    transition-duration: 250ms;
    transition-timing-function:ease-in-out
    
}


.menu nav ul li a:hover{
    font-weight: 600;
}



nav ul li a::after{
    content: " ";
    width: 0%;
    height: 1px;
    background-color: var(--dark-color);
    position: absolute;
    bottom: 2px;
    left: 50%;
    right: 50%;
   
    transition-property: width, left, right;
    transition-duration: 250ms;
    transition-timing-function:ease-in-out
}


nav ul li a:hover::after{
    width: 100%;
    left: 0%;
    right: 0%;
}

/* Hero */

.hero {
    display: flex ;
    flex-direction: column;
    height: auto;
    width: 90%;
    align-items: left;
    gap: 2rem;
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
    margin-bottom: 15rem;
    padding-left: 7.5rem;

    animation: appear_left 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hero h1 {
    font-family: "Geologica", sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--dark-color);
    max-width: 37.5rem;
    width: 100%;
}


.hero p {
    font-family: "Geologica", sans-serif;
    font-size: 1.75rem;
    font-weight: 100;
    color: var(--dark-color);
    max-width: 37.5rem;
    width: 100%;
}


/* section projetos*/


.container-projetos{
    display: flex;
    flex-direction: row;
    justify-content:center;
    width: 90%;
    max-width: 75rem;
    align-items: start;
    margin: 0 auto;
    padding-top: 4rem;
    gap: 3rem;
    margin-bottom: 12rem;

    animation: appear_down 2s cubic-bezier(0.075, 0.82, 0.165, 1);
}


.project_title {
    display:flex;
    flex-direction: column;
    min-width:3.75rem;
    height:fit-content; 
    top: 12rem;
    position: sticky;
    
}


.project_title span {
    font-family: "Geologica" , sans-serif;
    font-size: 3.75rem;
    font-weight: 300;
    line-height: 3.75rem;
    color:var(--mid-gray-color);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
   
}




.projects {
    display: flex;
    flex-direction: column;
    height:auto;
    width: 100%;
    justify-content: center;
    margin: 0 auto;
    gap: 15rem;
    padding-left: 1rem;
    
}


.project-section {
    display: flex ;
    flex-direction: row;
    height:fit-content;
    width: 100%;
    justify-content: center;
    gap: 5rem;
}


.project-section .left {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 61.5rem;
    max-width: 21.5rem;
    align-items: flex-start;
    vertical-align: top;
    gap: 2rem;
}


.project-section .left h2 {
    font-family: "Geologica", sans-serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--dark-color);
}


.project-section .left hr {
    width: 7rem;
    height: 1px;
    color: var(--dark-color);
    margin-left: 0px ;
}


.description {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


.project-section .left .description p {
    font-family: "Geologica", sans-serif;
    font-size: 1.25rem;
    font-weight: 100;
    color: var(--dark-color);
}



.project-section .right_start {
    display: flex;    
    
}


.project-section .right {
    display: flex;
}

.project-section .right_start img {
    width: 100%;
}


.project-section .right img {
    width: 100%;

    animation: appear_down 2s cubic-bezier(0.075, 0.82, 0.165, 1);
    animation-timeline: view() ;
    animation-range: cover 0% cover 60%;
}




/* Footer */


footer {
    background: var(--background-gray-color);
    color: var(--dark-color);
    margin-top: 0;
    padding: 3rem 0 3rem 0;
    border-top: 1px solid var(--dark-color);
    width: 100%;
  
}

footer .content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    max-width: 75rem;
    width: 90%;
    
}

footer .brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content:space-between;
    width: auto;
    gap: 1rem;
}

footer .brand .logo{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    
}


footer .brand .logo::after{
    content: " ";
    width: 1px;
    height: 1.75rem;
    background-color: #8A898A;
}


footer p {
    font-family: "Geologica", sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: var(--dark-color);
    width: auto;
    height: auto;
    margin: 0;
}


footer .links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    width: auto;
    justify-content: left; 
}



/* ---------Pag. Projeto AmigO----------- */




.breadcrumb{

    display: flex;
    flex-direction: row;
    justify-content:space-between;
    align-items: center;
    width:90%;
    max-width: 75rem;
    height: auto;
    margin: 0 auto;
    animation: appear_left 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    
}


.hero-projetos{
   
    display: flex;
    flex-direction: column;
    height: auto;
    width: 90%;
    align-items:center;
    justify-content:flex-start;
    max-width: 75rem;
    margin: 0 auto;
    padding-top: 2rem;
    padding-bottom: 12.5rem;
    gap: 3rem;

    animation: appear_down 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hero-projetos h1{
    font-family: "Geologica", sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--dark-color);
    text-align: center;
}


.hero-projetos .hero-figure{
    display: flex;
    flex-direction: column;
    width: 95%;
    max-width: 54.5rem;
    height:auto;
    margin: 0;
    align-items: center;
    justify-content: center;
}


.hero-projetos .hero-image {
    width: 95%;
    height: auto;       
}



/* Visão Geral */


.visao_geral{
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    width: 100%;
    max-width: 61.375rem;
    align-items: start;
    margin: 0 auto;
    margin-bottom: 20rem;

}


.visao_geral span {
    font-family: "Geologica" , sans-serif;
    font-size: 3.75rem;
    font-weight: 300;
    line-height: 3.75rem;
    color: var(--mid-gray-color);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    position: sticky;
    top: 2rem;
    width:fit-content;
    height:max-content;
    margin: 0;
    
}


.container_2 {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    justify-content:center;
    gap: 5rem;
}



.project-info {
    display: flex;
    flex-direction: row;
    height:auto;
    width:100%;
    align-items: top;
    justify-content: center;
    gap: 3rem;
    padding: 0 5rem;
}


.project-info .content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 26rem;
    align-items:left;
    gap: 2rem;
    background: var(--background-gray-color);
    
}


.project-info .content h2 {
    font-family: "Geologica", sans-serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--dark-color);
    margin-top: 0px;
    
}

.project-info .content hr {
    width: 7rem;
    height: 1px;
    color: var(--dark-color);
    margin-left: 0 ;
}


.project-info .content .description p {
    font-family: "Geologica", sans-serif;
    font-size: 1.25rem;
    font-weight: 100;
    line-height: 1.8rem;
    color: var(--dark-color);
}



/*Section - Principais características */



.characteristics {
    display: flex;
    flex-direction: column;
    max-width: 75rem;
    width: 90%;
    justify-content: space-between;
    margin: auto;
    height: auto;
    gap: 10.5rem;
}


.characteristics h2 {
    font-family: "Geologica", sans-serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--dark-color);
    text-align: left;
    width: 100%;
    
}


.highlights-section{
    display: flex ;
    flex-direction: column;
    height:auto;
    width: 100%;
    justify-content: center;
    margin-bottom: 15rem;
    gap: 20rem;
    
}
    

.highlights-section_A{
    display: flex ;
    flex-direction: row;
    height:auto;
    width: 100%;
    justify-content:space-between;
    gap: 12.5rem;
    position: relative;
}



.highlights-section_B{
    display: flex ;
    flex-direction: row;
    height:auto;
    width: 100%;
    justify-content:space-between;
    gap: 12.5rem;    
}



.highlights-section .conteudo {
    width: 100%;
    max-width: 26.50rem;
    align-items: flex-start;
    vertical-align: top;
    margin-top: 0;
    margin-bottom: 8.75rem;
    background: var(--background-gray-color);
}

.highlights-section_A .conteudo {
    animation: appear_left 2s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
    animation-timeline: view();
    animation-range: cover 0% cover 40%;
}


.highlights-section_B .conteudo {
    animation: appear_right 2s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
    animation-timeline: view();
    animation-range: cover 0% cover 40%;
}


.highlights-section .conteudo h3 {
    font-family: "Geologica", sans-serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--dark-color);
    margin-top: 0;
    margin-bottom: 2rem;
}


.highlights-section .conteudo p {
    font-family: "Geologica", sans-serif;
    font-size: 1.25rem;
    font-weight: 100;
    line-height: 1.75rem;
    color: var(--dark-color);
    margin-top: .5rem;
    margin-bottom: .5rem;
}

.highlights-section .picture {
    display: flex;
    align-items: flex-start;
    vertical-align: top;
    max-width: 50rem;
    cursor: pointer;
}

.highlights-section .picture img {
    width: 100%;
    vertical-align: top;
    transition: 350ms ease-in-out;

    animation: appear_down 2s cubic-bezier(0.075, 0.82, 0.165, 1);
    animation-timeline: view() ;
    animation-range: cover 0% cover 60%;
}


.highlights-section .picture img:hover {
    scale: 1.05 1.05;
}




/* ---- Modal de imagens ------ */

.janela_modal{
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(25, 23, 25, 0.62);
    z-index: 100;
    margin: 0 auto;
}


.janela_modal.abrir{
    display: flex;
}


.modal{
    display: flex;
    flex-direction: column;
    justify-content:center;
    position: fixed;
    width: 60%;
    gap: 2rem;
}


.modal .mockup{
    width: 90%;
}


.modal_large{
    display: flex;
    flex-direction: column;
    justify-content:center;
    position: fixed;
    width: 90%;
    gap: 2rem;
}



@keyframes abrirmodal {
    from{
        opacity: 0;
        transform: translate3d(50px, 0, 0);
    }
    to{
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.abrir .modal, .modal_large{
    animation: abrirmodal 500ms;
}


.btn_fechar{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .3rem;
    width: fit-content;
    height: fit-content;
    background-color: var(--background-gray-color);
    border-radius: .5rem;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    transition: 300ms ease-in-out;
    color: var(--dark-color); 
}


.btn_fechar:hover{
    color: var(--white-color);
    background-color: #ff7a7a;
    color: var(--white-color);
}








/* Section - Benchmarking */


.benchmarking {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 75rem;
    justify-content: space-between;
    margin: auto;
    height: auto;
    gap: 5rem;
    margin-bottom: 15rem;    
}


.concorrentes{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    height: 38rem;

    animation: appear_down 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    animation-timeline: view() ;
    animation-range: cover 0% cover 60%;

}


.concorrentes_cards{
    display: flex;
    flex-direction: column;
    justify-content:start;
    height: 100%;
    width: auto;
    max-width: 19.5rem;
    gap: 2.5rem;
    padding: 1.5rem;
    border: solid 1px var(--dark-color);
    border-radius: 1.5rem;
    background:var(--white-color);
}


.concorrentes img{
    width: 75%;
}


.concorrentes .brand{
    display: flex;
    flex-direction: column;
    width: 6rem;
    height: 6rem;
    gap: .5rem;
}


.concorrentes h4 {
    font-family: "Geologica", sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5rem;
    color: var(--dark-color);
}


.concorrentes .listagem {    
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}


.concorrentes .listagem ul{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-left: 1rem;
    color: var(--dark-color);
    gap: .5rem;
}


.concorrentes .listagem ul li{
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    color: var(--dark-color);
}



/* Estilos de títulos e subtítulos */

.section-title{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 2rem;
    padding: 0;
}


.section-title h2 {
    font-family: "Geologica", sans-serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--dark-color);
    text-align: left;
    width: 100%;
}

.section-title p {
    font-family: "Geologica", sans-serif;
    font-size: 1.25rem;
    font-weight: 100;
    line-height: 2rem;
    color: var(--dark-color);
    background: var(--background-gray-color);
}


.section-subtitle{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 2rem;
    padding: 0;
}


.section-subtitle .info-list{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 2rem;
    background: var(--background-gray-color);
}

.section-subtitle .info-list ul{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-left: 1rem;
    color: var(--dark-color);
    gap: .5rem;
}


.section-subtitle .info-list ul li {
    font-family: "Geologica", sans-serif;
    font-size: 1.25rem;
    font-weight: 100;
    line-height: 2rem;
    color: var(--dark-color);

}

.section-subtitle h3 {
    font-family: "Geologica", sans-serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--dark-color);
    text-align: left;
    width: 100%;
}

.section-subtitle p {
    font-family: "Geologica", sans-serif;
    font-size: 1.25rem;
    font-weight: 100;
    line-height: 2rem;
    color: var(--dark-color);
    background: var(--background-gray-color);
   
}



/* Section - Personas */

.personas{
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 75rem;
    justify-content: center;
    margin: auto;
    height: auto;
    gap: 5rem;
    margin-bottom: 15rem;

}

.personas .fig-content {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    width: 100%;
    max-width: 57rem;
    margin: auto;

    animation: appear_down 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    animation-timeline: view() ;
    animation-range: cover 0% cover 60%;
}



/* Section - Roadmaps - Mapas */

.roadmaps {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 75rem;
    justify-content: center;
    margin: auto;
    height: auto;
    gap: 5rem;
    margin-bottom: 15rem;
}

.roadmaps .fig-content{
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 75rem;
    width: 100%;

    animation: appear_down 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    animation-timeline: view() ;
    animation-range: cover 0% cover 60%;
}


/* Section - Design da interface */

.design-interface {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 75rem;
    justify-content: center;
    margin: auto;
    height: auto;
    gap: 5rem;
    margin-bottom: 15rem;
}

.design-interface .fig-content {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    width: 100%;
    max-width: 75rem;
    margin: auto;

    animation: appear_down 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    animation-timeline: view() ;
    animation-range: cover 0% cover 60%;
}


/* Section - Protótipos */

.prototipos{
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 75rem;
    justify-content: center;
    margin: auto;
    height: auto;
    gap: 5rem;
    margin-bottom: 15rem;
}


.cards-container{
    display: flex;
    flex-direction: row;
    width: auto;
    height: auto;
    gap: 3rem;
    margin: 0;
    justify-content:flex-start;
    align-items:flex-start;

    animation: appear_down 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    animation-timeline: view() ;
    animation-range: cover 0% cover 60%;
}


.prot-card {
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 17.5rem;
    gap: 1.5rem;
    border-radius: 1.5rem;
    height: auto;
    margin: 0;
    border: 1px solid #191719;
    padding: 1.5rem;
    background: var(--background-gray-color);
    

   /* transition-property: gap;
    transition-duration: 250ms;
    transition-timing-function:ease-in-out */

}


.prot-card hr {
    width: 112px;
    height: 1px;
    
    margin-left: 0px ;
}

.prot-card h3{
    font-family: "Geologica", sans-serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--dark-color);
    text-align: left;
    width: 100%;
}


/* Section - Branding design */

.branding-design{
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 75rem;
    justify-content: center;
    margin: auto;
    height: auto;
    gap: 5rem;
    margin-bottom: 15rem;
}


.branding-content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: auto;
    gap: auto;

    animation: appear_down 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    animation-timeline: view() ;
    animation-range: cover 0% cover 60%;
}


.branding-left{
    display: flex;
    flex-direction: column;
    max-width: 26.5rem;
    height: auto;
    gap: 5.5rem;
    width: 100%;
   
}

.branding-right{
    display: flex;
    flex-direction: column;
    max-width: 44.5rem;
    width: 100%;
    
    
}


/* Section - Reflexão */


.reflexao {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 75rem;
    justify-content: center;
    margin: auto;
    height: auto;
    gap: 5rem;
    margin-bottom: 25rem;

    animation: appear_down 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    animation-timeline: view() ;
    animation-range: cover 0% cover 50%;
}


.more-projects{
    display: flex;
    flex-direction: row;
    width: 90%;
    max-width: 75rem;
    margin: auto;
    margin-bottom: 12rem;
    justify-content:space-between;
    gap: 4rem; 
    

    animation: appear_down 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    animation-timeline: view() ;
    animation-range: cover 0% cover 70%;
}



.more-projects span {
    font-family: "Geologica" , sans-serif;
    font-size: 56px;
    font-weight: 300;
    line-height: 56px;
    color: var(--mid-gray-color);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    
    width: fit-content;
    height:fit-content;
    margin: 0;

    animation: appear_left 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    animation-timeline: view();
    animation-range: cover 0% cover 50%;    
}

.project-card{
    display: flex;
    flex-direction: column;
    max-width: 30rem;
    gap: 1rem;
    
}

.project-card .card-header{
    display: flex;
    flex-direction: column;
    width: auto;
    gap: 1rem;
}

.project-card h3{
    font-family: "Geologica", sans-serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--dark-color);
    text-align: left;
    width: 100%;
}






/* ---------Pag. Projeto GSX----------- */

.project-container{
    display: flex;
    flex-direction: column;
    max-width: 75rem;
    justify-content: center;
    margin: auto;
    height: auto;
    gap: 5rem;
    margin-bottom: 0;
    
}


.project-container .fig-content {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    width: 100%;
    max-width: 57rem;
    margin: auto;

    animation: appear_down 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    animation-timeline: view() ;
    animation-range: cover 0% cover 60%;

}


.gsx-roadmaps {
    display: flex;
    flex-direction: column;
    max-width: 75rem;
    justify-content: center;
    margin: auto;
    height: auto;
    gap: 5rem;
    margin-bottom: 0;

}

.gsx-roadmaps .fig-content{
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    max-width: 75rem;

    animation: appear_down 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    animation-timeline: view() ;
    animation-range: cover 0% cover 50%;
}


.baixar_pdf{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gsx_design_interface{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 75rem;
    justify-content: center;
    margin: auto;
    height: auto;
    gap: 5rem;
    margin-bottom: 15rem;
}

.gsx_design_interface .fig-content{
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    max-width: 75rem;

    animation: appear_down 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    animation-timeline: view() ;
    animation-range: cover 0% cover 60%;
}


.redesign{
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    width: 100%;
    height: auto;
    gap: auto;
}


.design-sample{
    display: flex;
    flex-direction: column;
    width: 45%;   
    height: auto;
    gap: 1.75rem;
    align-items: left;

    animation: appear_down 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    animation-timeline: view() ;
    animation-range: cover 0% cover 60%;
}


.design-sample > figure > img {
    width: 100%;
}


.design-sample h4{
    font-family: "Geologica", sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--dark-color);
    width: 100%;
    padding-left: 4.5rem;
}


.next-steps {
    display: flex;
    flex-direction: column;
    max-width: 75rem;
    justify-content: center;
    margin: auto;
    height: auto;
    gap: 2rem;
    margin-bottom: 25rem;

    animation: appear_down 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    animation-timeline: view() ;
    animation-range: cover 0% cover 60%;
}


.next-steps .info-list > ul {
    font-family: "Geologica", sans-serif;
    font-size: 1.25rem;
    font-weight: 100;
    line-height: 2rem;
    color: var(--dark-color);
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: .5rem;
    padding-left: 1rem;
    background: var(--background-gray-color);
}


/* -----------Sobre------------- */


.about-me{
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 90%;
    max-width: 75rem;
    margin: 6rem auto;
    margin-bottom: 6rem;
    
    
    justify-content: space-between;
    gap: 8.5rem;
    
    
    
}

.about-me .myself  {
    top: 5rem;
    position: sticky;
    height: 100%;

    animation: appear_left 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}


.about-me .artigo{
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    width: 60%;
    height: auto;
    margin-right: 5rem;
    margin-left: auto;
    justify-content: right;    

    animation: appear_right 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}


.about-me h1{
    font-family: "Geologica", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--dark-color);
    text-align: left;
    line-height: 3rem;

}

.about-me .texto{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: auto;
    height: auto;
    font-family: "Geologica", sans-serif;
    font-size: 1.25rem;
    font-weight: 100;
    line-height: 2rem;
    color: var(--dark-color);
    background: var(--background-gray-color);

}

.about-me .botoes{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: auto; 
    width: 100%;
}


.primary_button{
    display: flex;
    flex-direction: row;
    padding: 0.75rem 0rem;
    justify-content: left;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    color: var(--dark-color);
    font-family: "Inter" , sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
    width: fit-content;

    transition-property: gap, font-weight;
    transition-duration: 250ms;
    transition-timing-function: ease-in-out;
}


.primary_button:hover{
    gap: .5rem;
    font-weight: 600;
}


.just-about{
    background-color: var(--background-gray-color);
    
}



.topo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: auto;
    max-width: 75rem;
    align-items: center;
    margin: 0 auto;
    
}



.topo .back_to_top{
    width: 5rem;
    height: 5rem;
    padding: .5rem;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: var(--mid-gray-color);
    
    transition: all 350ms ease-in-out;
}

.topo .back_to_top:hover{
    padding-bottom: 2rem;
    
}


/* Página de contato*/

.contact-main{
    display: flex;
    flex-direction: row;
    width: 90%;
    max-width: 75rem;
    height: auto;
    justify-content: space-between;
    margin: 0 auto;
    margin-top: 3rem;
    gap: 3rem;

}

.contact-info{
    display: flex;
    flex-direction: column;
    width: fit-content;
    height: auto;
    gap: 3rem;
}

.contact-mode{
    display: flex;
    flex-direction: column;
    gap: .75rem;
    
}


.contact-mode h3 {
    font-family: "Geologica", sans-serif;
    font-size: 1.125rem;
    color: #808080;
    font-weight: 200;
}


.contact-mode p{
    font-family: "Geologica", sans-serif;
    font-size: 1.125rem;
    color: var(--dark-color);
    font-weight: 300;
    
}

.contact-mode a{
    text-decoration: none;
}




/* Container do form */


.contact-container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem;
    background: var(--white-color);
    gap: 4rem;
    width: 100%;
    max-width: 55.75rem;
    height: 100%;
    align-items: flex-start;
    margin-bottom: 10rem;
}


.contact-header{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16rem;
}


.contact-header h1{
    font-family: "Geologica", sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--dark-color);
}


.contact-header h2{
    font-family: "Geologica", sans-serif;
    font-size: 1.5rem;
    font-weight: 100;
    color: var(--dark-color);
}


#form{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 3rem;
    height: 100%;
}


.input-container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: auto;
    gap: 3rem;    
}


.form-cell{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 3rem;    
}


.input-box{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    
}

.input-label{
    font-family: "Geologica", sans-serif;
    font-size: 1.125rem;
    color: #808080;
    font-weight: 200;
    display: none;

}

.input-field{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 3rem;
    border-bottom: 1px solid var(--dark-color);
    transition: border-bottom 100ms linear;
    
}

.message-field{
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 3rem;
    height: auto;
    border-bottom: 1px solid var(--dark-color);
    transition: border-bottom 100ms linear;
    
}

/*.input-field::after{
    content: " ";
    width: 100%;
    height: 1px;
    background: var(--dark-color);
    position: absolute;
    left: 0;
    bottom: 0;
    display: none;
}*/


.form-control{
    width: 100%;
    height: 3rem;
    border: none;
    font-family: "Geologica", sans-serif;
    font-size: 1.125rem;
    color: #808080;
    font-weight: 200;
    padding: .5rem;
}


.form-control:focus{
    outline: none;
    background-color: rgba(22, 117, 211, 0.05);
    color: var(--dark-color);
    border-bottom: 1px solid  #0F5194;
}



/*.input-box .input-field:focus-within {
    
    
}*/




input:-webkit-autofill{
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    color: #000;

}


.message-control{
    width: 100%;
    max-width:100%;
    min-width: 100%;
    min-height: 3rem;
    height: auto;
    border: none;
    font-family: "Geologica", sans-serif;
    font-size: 1.125rem;
    color: #808080;
    font-weight: 200;
    padding: .5rem;
}


.message-control:focus{
    outline: none;
    background-color: rgba(22, 117, 211, 0.05);
    color: var(--dark-color);
    border-bottom: 1px solid  #0F5194;
}


/*.input-box .message-field:focus-within {
    border-bottom: 2px solid  #0F5194;
    background: rgba(22, 117, 211, 0.13);

}*/




.submit-button{
    display: flex;
    flex-direction: row;
    padding: 0.75rem;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    background-color: var(--dark-color);
    height: 3rem;
    transition: background-color 300ms ease-in-out;
    text-decoration: none;
}


.submit-button span{
    font-family: "Geologica", sans-serif;
    font-size: 1.125rem;
    color: var(--white-color);
    font-weight: 200;
    

}


.submit-button:hover{
    background-color: #0F5194;

}





/* Página de feedback */


.feedback{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--background-gray-color);
    height: 100vh;
    width: 100vw;
    margin: 0 auto;
}


.feedback-content{
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
    gap: 3rem;
    width: 90%;
    max-width: 75rem;
    height: auto;
    padding-top: 2rem;
}


.feedback .logo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 33.5rem;
    padding: 0;
    margin: 0;
    
}


.feedback-header{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 33.5rem;
    padding-top: 3rem;
}


.feedback-header > h1{
    font-family: "Geologica", sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--dark-color);
    max-width: 33.5rem;
    width: 100%;
    margin: 0;
    padding: 0;
}


.feedback-message{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 33.5rem;
    gap: 5.5rem;
}


.feedback-message > h2{
    font-family: "Geologica", sans-serif;
    font-size: 1.75rem;
    font-weight: 100;
    color: var(--dark-color);
    width: 100%;
    
}




/* Animações diversas*/

@keyframes appear_left {

    from{
        opacity: 0;
        translate: -100vw 0;
    }

    to{
        opacity: 1;
        translate: 0 0;

    }
}


@keyframes appear_right {

    from{
        opacity: 0;
        translate: 100vw 0;
    }

    to{
        opacity: 1;
        translate: 0 0;
    }
}


@keyframes appear_up {

    from{
        opacity: 0;
        translate: 0 -100vh;
    }

    to{
        opacity: 1;
        translate: 0 0;
    }
}


@keyframes appear_down {

    from{
        opacity: 0;
        translate: 0 150vh;
    }

    to{
        opacity: 1;
        translate: 0 0;
    }
}


@keyframes appear_4 {

    from{
        opacity: 0;
        translate: 100vh 0;
    }

    to{
        opacity: 1;
        translate: 0 0;
    }
}


@keyframes reveal{

    from{
        opacity: 0;
        clip-path: inset(80% 60% 80% 60%);
    }
    to{
        opacity: 1;
        clip-path: inset(0% 0% 0% 0%);
    }
}




/* Media Querry - Tablet*/


@media (max-width: 1200px) {


header {
    max-width: 54rem;
    
}


footer .content {    
    width: 90%;
    max-width: 54rem;
}


.hero {
    max-width: 54rem;
    margin-top: 4rem;
    margin-bottom: 18rem;
    padding-left: 0;
}


.container-projetos{ 
    flex-direction: column;
    margin-bottom: 6rem;
}


.project_title {
    display: flex;
    flex-direction: column;
    width:100%;
    height:auto; 
    max-width: 54rem;
    margin: auto;
    padding: 2rem 0 2rem 0;
    top: 0;
    bottom: 0;
    position:sticky;
    margin-bottom: 6rem;
    background: var(--background-gray-color);
    transition: all 300ms ease-in-out;
    z-index: 5;
}

.project_title.scrolled {
    box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.10);
}

.project_title span {
writing-mode:horizontal-tb;
transform:none;
}


.projects {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 54rem;
    margin: auto;
    align-items: top;
    gap: 12rem;
    margin-bottom: 4rem;
    padding-left: 0;     
}


.project-section {
    padding-left: 0;
    width: 100%;
    height:fit-content;
    justify-content:space-between;
    margin: 0;
    gap: 1.5rem;
    transition:all 500ms ease;    
}


.project-section .left {
    max-width:19.5rem;
    height: auto;
    gap: 1rem;
}


.project-section .left .description p {
    font-size: 1.125rem;
}


.project-section .right {
    display: flex;
    align-items: flex-start;
    vertical-align: top;
    margin: 0;
    height: auto; 
    max-width: 33rem;    
}

/* Tablet - Pág de Projetos */


.breadcrumb{
    max-width: 54rem;
    margin-bottom: 2rem;
}

.hero-projetos{   
    max-width: 54rem;
    padding-top: 0;
    padding-bottom: 20rem;
    
}


.hero-projetos h1{
    font-size: 2.75rem;
}


.hero-projetos .hero-image {
    width: 100%;
}


/* Tablet - Visão Geral */


.visao_geral{
    flex-direction: column;
    width: 90%;
    max-width: 54rem;
}




.visao_geral span {
    writing-mode:horizontal-tb;
    transform:none;
    position: unset;
    text-align: center;
    margin-bottom: 5rem;
    width: 100%;
}


.project-info {    
    margin-bottom: 2rem;
    padding: 0 3rem;    
}


.project-info .content {
    width: 25rem;
    margin-top: 0; 
}




/*  Tablet - Características  */

.characteristics {
    max-width: 54rem;
    justify-content: space-between;
    gap: 10.5rem;
}

.highlights-section{
    margin-bottom: 15rem;
    gap: 20rem;
}

.highlights-section_A{
    gap: 3rem;
}

.highlights-section_B{
    gap: 3rem;
}

.highlights-section .conteudo {
    max-width: 26rem;
    margin-bottom: 0; 
}

.highlights-section .conteudo p {
    line-height: 1.6rem;
}


.highlights-section .picture {
    max-width: 30rem;
}




/*  Tablet - Modal de imagens  */

.janela_modal{
    transform: rotate(90deg);
    width: 100vh;
    height: 150vw;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    justify-content:center;
    box-sizing: border-box;
}




/*  Tablet - Demais seções  */

.benchmarking {
    max-width: 54rem;
    justify-content:space-between;
    margin-bottom: 15rem;    
}

.concorrentes{
    flex-direction: column;
    gap: 2.5rem;
    height: 46rem;
}

.concorrentes .listagem {    
    max-width: 17rem;
   
}


.concorrentes_cards{
    flex-direction: row;
    justify-content:space-between;
    width: 100%;
    max-width: 54rem;
    gap: 1rem;
}


.personas{
    max-width: 54rem;
    gap: 5rem;
    margin-bottom: 15rem;
}

.roadmaps {

    max-width: 54rem;
    gap: 4rem;
    margin-bottom: 15rem;
}

.design-interface {
    max-width: 54rem;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 12.5rem;
}

.prototipos{

    max-width: 54rem;
    gap: 3rem;
    margin-bottom: 15rem;
}

.branding-design{
    max-width: 54rem;
    gap: 8rem;
    margin-bottom: 15rem;
}

.branding-left{
    display: flex;
    flex-direction: column;
    max-width: 20rem;
    height: auto;
    gap: 5.5rem;
    width: 100%;
   
}

.branding-right{
    display: flex;
    flex-direction: column;
    max-width: 28rem;
    width: 100%;
}

.reflexao {
    max-width: 54rem;
    gap: 5rem;
    margin-bottom: 12.5rem;
}

.reflexao .section-title p{

    font-size: 1.25rem;
    line-height: 2rem;

}


.more-projects{
    display: flex;
    flex-direction: column;
    max-width: 54rem;
    margin: auto;
    margin-bottom: 6rem;
    justify-content:space-between;
    gap: 8rem; 
    position: relative;  
}

.more-projects span {
    font-size: 3.75rem;
    font-weight: 300;
    line-height: 3.75rem;
    writing-mode:horizontal-tb;
    transform:none;
    position:unset;
    width: auto;
    height:max-content;
    margin: 0;
}

.project-card{
    display: flex;
    flex-direction:row-reverse;
    width: 100%;
    max-width: 54rem;
    gap: 1rem;
    margin: 0;
    justify-content:space-between;
     
}

.project-card .card-header{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 20rem;
    gap: 1rem;
    
}

.project-card .card-image {
    width: 60%; 
}


/* ----projeto GSX---*/

.project-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 54rem;
    justify-content: center;
    margin: auto;
    height: auto;
    gap: 3rem;
    margin-bottom: 0;
}

.project-container .fig-content {
    width: 100%;
    max-width: 54rem;
}

.gsx-roadmaps {
    max-width: 54rem;
    gap: 3rem;
}

.gsx-roadmaps .fig-content {
    width:100%;
    max-width: 54rem;
    
}


.gsx-roadmaps .fig-content img {
    width:100%;
    max-width: 54rem;
}


.redesign{
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.design-sample{
    width: 100%;   
}

.design-sample h4{    
    padding-left: 6rem;
}

.next-steps {
    width: 90%;
    max-width: 54rem;
    margin-bottom: 15rem;
}

.about-me{
    max-width: 54rem;
    margin: 3rem auto;
    margin-bottom: 6rem;
    gap: 4rem;
}

.about-me .myself  {
    top: 5rem;
    height: auto;
}

.about-me img{
    width: 95%
}

.about-me .artigo{
    width: 80%;
    margin-right: 2rem;
}



/*  Tablet - Página de contato  */


.contact-header{
    flex-direction: column;
    gap: 1rem;
}

.form-cell{
    flex-direction: column;  
}

}






/* --------- Media Querry - Mobile ------------ */



@media (max-width: 720px){



header {
    padding: 1.5rem 1.5rem;
    max-width: 45rem;
    width: 100%;
    height: auto;
    margin: 0 auto;
    position: sticky;
    top: 0;
    bottom:0;
    background: var(--background-gray-color);
    transition: all 300ms ease-in-out;
}

header.menu_scroll {
    box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.05);
}


footer {
    
    padding: 2rem 0 2rem 0 ;
    border-bottom: solid 1px;
}


footer .content {
    
    flex-direction: column;
    align-items:flex-start;
    justify-content:left;
    margin: auto;
    max-width: 45rem;
    width: 90%;
    gap: 2rem;
}

footer .brand {
    display: flex;
    flex-direction: column;
    align-items:flex-start;
    justify-content:space-between;
    width: 100%;
    gap: 1rem;
}

footer .brand .logo{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items:flex-start;
    gap: 1rem;
   
    width: 100%;
}

footer .brand .logo::after{
    content: " ";
    width: 100%;
    height: 1px;
    background-color: #8A898A;
    display: none;
}


footer .links {    
    align-items:center;
    gap: 2rem;
    width: 100%;
    justify-content:space-between;
}


.hero{
    gap: 1.5rem;
    margin-bottom: 6rem;
}


.hero h1 {
    font-size: 2.25rem;
}


.hero p{
    font-size: 1.5rem;
}


.container-projetos{ 
    flex-direction: column;
    gap: 1rem;
}


.project_title {
    position: unset;
    top: 0;
    padding: 0;
    margin-bottom: 2.5rem;    
}


.project_title span {
    font-size: 3rem;
    line-height: 3.75rem;
    text-align: center;
}


.projects {
    gap: 12rem;
    margin-bottom: 0;
    
}


.project-section {
    flex-direction: column-reverse;
    height:fit-content;
    gap: 1.6rem;
    padding-left: 0;
}


.project-section .left {
    width: 100%;
    max-width:45rem;
    height: auto;
    gap: 1.25rem;
}


.project-section .left .description p {
    font-size: 1.25rem;
}

.project-section .right img {
    animation:none
}


/*  Mobile - Pág. de Projetos  */


.breadcrumb{
    width:92%;
}

.hero-projetos{   
    padding-bottom: 5.5rem;
    
}


.hero-projetos h1{
    font-size: 2rem;
}





/*  Mobile - Visão Geral  */


.visao_geral{
    margin-bottom: 9rem;
    width: 90%;
}


.container_2 {
    gap: 4rem;
}


.visao_geral span {
    margin-bottom: 5rem;
    font-size: 3rem;
}


.project-info {
    flex-direction: column;
    height:auto;
    width:100%;
    gap: 4rem;
    padding: 0;
}


.project-info .content {
    width: 100%;
    gap: 1.5rem;
}


.project-info .content .description p{
    line-height: 1.7rem;
}



/*  Mobile - Características  */



.characteristics {
    gap: 5rem;

}


.characteristics h2 {
    font-size: 2.5rem;
    line-height: 2.75rem;
}


.highlights-section{
    gap: 10rem;
}


.highlights-section_A{
    flex-direction: column-reverse;
    gap: 2rem;
}


.highlights-section_B{
    flex-direction: column;
    gap: 2rem;  
}


.highlights-section .conteudo {
    width: 100%;    
    animation: none;
}

.highlights-section .picture img {
    animation: none;
}


/* Mobile - Estilos de títulos e subtítulos */


.section-title{
    gap: 1.5rem;
    position: unset;
}

.section-title h2 {
    font-family: "Geologica", sans-serif;
    font-size: 2.5rem;
    font-weight: 350;
    color: var(--dark-color);
    text-align: left;
    width: 100%;
}

.section-title p {
    font-size: 1.25rem;
    line-height: 1.5rem;
}


.section-subtitle{
    position: unset;
}

.section-subtitle .info-list ul li {
    font-family: "Geologica", sans-serif;
    font-size: 1.25rem;
    font-weight: 100;
    line-height: 1.5rem;
    color: var(--dark-color);

}

.section-subtitle p {
    font-family: "Geologica", sans-serif;
    font-size: 1.25rem;
    font-weight: 100;
    line-height: 1.5rem;
    color: var(--dark-color);
    background: var(--background-gray-color);
   
}

.reflexao .section-title p{
    line-height: 1.75rem;
}



/*  Mobile - Modal de imagens  */

.janela_modal{
    transform: rotate(90deg);
    width: 100vh;
    height: 150vw;
    bottom: 0;
    right: 0;
    left: -12rem;
    margin: auto;
}




/* Mobile - Demais seções */

.benchmarking {
    gap: 4rem;
    margin-bottom: 10rem;    
}


.concorrentes{
    flex-direction: column;
    gap: 4rem;
    height: auto;

    animation: none;
}


.concorrentes_cards{
    display: flex;
    flex-direction: column;
    justify-content:start;
    height: 100%;
    width: 100%;
    max-width: 19.5rem;
    gap: 2.5rem;
}


.personas{ 
    gap: 4rem;
    margin-bottom: 15rem;
}


.personas .fig-content {
    gap: 4rem;
    animation: none;
}


.roadmaps .fig-content{
    animation:none;
}


.design-interface .fig-content {
    animation: none;
}


.prototipos{
    max-width: 54rem;
    gap: 3rem;
    margin-bottom: 15rem;
}


.cards-container{
    flex-direction:column;
    width: 17.5rem;
    height: auto;
    animation: none;
}


.branding-design{
 
    gap: 3rem;
    margin-bottom: 15rem;
}


.branding-content{
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    width: 100%;
    height: auto;
    gap: 2rem;

    animation: none;
}


.branding-left{
    max-width:20rem;
    gap: 3rem;
}


.branding-right{
    max-width:none;
}


.more-projects{
    display: flex;
    flex-direction: column;
    max-width: none;
    margin: auto;
    margin-bottom: 3rem;
    justify-content:space-between;
    gap: 4.5rem; 
    position: relative;
    
}


.project-card{
    display: flex;
    flex-direction:column;
    width: 100%;
    max-width:none;
    gap: 1rem;
    margin: 0;
    justify-content:space-between;
    margin-bottom: 4rem;
     
}


.project-card .card-image {
    width: 100%; 
}



/* Mobile - Projeto GSX */ 

.project-container{
    gap: 2rem;
}


.project-container .fig-content {
    animation: none;
}


.gsx-roadmaps .fig-content{
    animation: none;
}


.gsx_design_interface{
    gap: 3rem;
    margin-bottom: 15rem;
}


.gsx_design_interface .fig-content{
    animation: none;
}


.design-sample{
    animation: none;
}


.design-sample h4{    
    padding-left: 2.5rem;
}


.next-steps {
    animation: none;
}


.about-me{
    flex-direction: column;
    position: unset;
    justify-content: center;
    gap: 2rem;    
}


.about-me .myself  {
    display: flex;
    justify-content: center;
    align-items: center;
    position:unset;
    height: auto;
    width: 100%;
    
}

.about-me .artigo{
    gap: 3.5rem;
    width: 100%;
    margin-right: 0;
    margin-left: auto;
    justify-content:center;
    
}

.about-me .artigo h1{
    line-height: 2.5rem;
}





/* Mobile - Estilização do Menu */ 

.menu nav, .Linkedin{
    display: none;
}

button{
    display: block;
}

.linkedin-mobile{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;
    align-items: center;
    gap: .5rem;
    margin-top: 12rem;
    
}

.linkedin-mobile p{
    font-family: "Geologica", sans-serif;
    font-size: 1.25rem;
    font-weight: 200;
    line-height: 1.5rem;
    color: var(--dark-color);
}


/* Estilização da animação do Menu Mobile */

.menu-mobile.apresentar_menu{
    visibility: visible;
    height: calc(100vh - 4rem);
    position: fixed;
}




/* Mobile - Página de contato */

.contact-main{
    flex-direction: column-reverse;
    margin-bottom: 6rem;
    gap: 6rem;
    
}

.contact-container{
    padding: 1.5rem;
    margin-bottom: 0;
}


/* Mobile - Página de feedback */

.feedback-content{
    padding-top: 1.5rem;
    gap: 2rem;
}


.feedback-header{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 33.5rem;
    padding-top: 1.5rem;
}

.feedback-header > h1{
    font-size: 2.25rem;
}

.feedback-message{
    gap: 3rem;
}

.feedback-message > h2{
    font-size: 1.25rem;
}

.feedback-content > img{
    width: 100%;
    height: 100%;
}


}