@import url('https://fonts.googleapis.com/css2?family=Sofia+Sans:ital,wght@0,100;0,200;0,300;0,400;0,600;1,100;1,200;1,300;1,600&family=Source+Code+Pro:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --color-geral: rgb(255, 255, 255);
    --color-heading: #8f9a9c;
    --color-base: #41484d;
    --color-base2: rgb(30, 30, 30);
    --color-brand:#5b88a5;
    --color-brand2:  #879a9d;
    
    --sidebar-width:120px;
    --font-base: "Sofia";

}

html {
    scroll-behavior: smooth;
    scroll-snap-type: proximity;
    scroll-snap-align: start;
    }


body{
    background-color: var(--color-base2);
    color: var(--color-geral);
    font-family: var(--font-base),sans-serif;

}


h1,h2,h3,h4,h5,h6{
    color: var(--color-heading);
    font-weight: 600;
}

a{
    text-decoration: none;
    color: var(--color-geral);
    transition: all 0.4s ease;
}

a:hover{
    color: var(--color-brand);

}

img{
    width: 100%;
}

.carousel {
    width: 100%;
}

.text-brand {
    color: var(--color-brand);

}

.bg-base {
    background-color: var(--color-base);
}

.full-height {
    min-height: 100vh;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 80px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);

}

.shadow-effect {
    transition: all 0.2s;
}
.shadow-effect:hover {
    box-shadow: 0 0 15px 1px var(--color-brand2);
}

.iconbox {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background-color: /**/var(--color-brand);
    color: var(--color-base2);
    

}
/*-------NAVBAR--------*/

.navbar {
    /*background-color: var(--color-base);*/
    background-color:var(--color-base);
}
.navbar .nav-link {
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-geral);
} 

.navbar .nav-link:hover {
    color: var(--color-brand);
}



@media (min-width: 992px ){
    .navbar{
        min-height: 100vh;
        width: var(--sidebar-width);
        background: linear-gradient(rgba(122, 147, 160, 0.7),rgba(30, 30, 30, 0.7)), url();
        background-position: center;
        background-size: cover;
            
    }

    .navbar .nav-link.active {
        background-color: #1E1E1E;
     }



    /*-------Content wrapper--------*/

    #content-wrapper {
        padding-left: var(--sidebar-width);
    }
}

/*-------Button--------*/

.btn {
    padding: 12px 28px;
    font-weight: 600;
}

.btn-brand {
    background-color: var(--color-brand);
    border-color: var(--color-brand);
    color: var(--color-base2);
}

.btn-brand:hover,.btn-brand:focus{
    background-color: var(--color-brand2);
    color: black;
    border-color: var(--color-brand2);
}

.link-custom {
    font-weight: 600;
    position: relative;
}

.link-custom::after {
    content: "";
    width: 0%;
    height: 2px;
    background-color: var(--color-brand);
    position: absolute;
    left: 0;
    top: 110%;
    transition: all 0.4s;

}

.link-custom:hover::after {

    width: 100%;
}

/*-------Card--------*/

.card-custom .card-custom-image {

    overflow: hidden;

}

.card-custom .card-custom-image img{

    transition:  all 0.4s ease;

}

.card-custom:hover .card-custom-image img{

    transform: scale(1.05);

}

/*-----CONTACTO------*/

#contacto .form-control {
    background-color: var(--color-base);
    border-color: var(--color-base);
    color: var(--color-geral);
}

#contacto .form-control:focus {
    border-color: var(--color-brand);
    box-shadow: none;
}

#contacto .form-control::placeholder {
    
    color: var(--color-geral);
}

#contacto input.form-control {
    height: 44px;
}

/*----Icons-----*/

.redes-sociais {

}

.redes-sociais a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-base);
    border-radius: 100px;
    font-size: 24px;

}