/*****************
CONFIGURAÇÕES GERAIS FINE
*****************/

* {
    font-family: 'Gordita Regular';
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}  

.color-blue {
    color: hsl(202, 100%, 72%);
}

.color-blue-dark {
    color: hsl(206, 93%, 29%);
}

.color-green {
    color: hsl(63, 69%, 62%);
}

.color-green-dark {
    color: hsl(99, 84%, 7%);
}

.color-white {
    color:hsl(0, 0%, 93%);
}

.color-ice {
    color:hsl(219, 77%, 95%);
}

.color-grey {
    color:hsl(215, 15%, 44%);
}

h1,h2,h3,h4,h5,h6 {
    line-height: 1.4;
}

h1 {
    font-size: 1.8rem;
}

h2 {
    font-size: 1.9rem;
    letter-spacing: .6px;
}

h3 {
    font-size: 1.5rem;
    letter-spacing: .6px;
}

ul {
    list-style: none;
    padding-left: 0;
}

p, li {
    margin-bottom: 1rem;
    line-height: 1.5;
}

img {
    width: 100%;
}

.section_spacing {
    padding: 4em 2em;
}

/*****************
SEÇÃO HEADER
*****************/

header {
    min-height: 100vh;
    position: relative;
}
header .container {
    max-width: 1368px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.showcase {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 660px;
    padding-top: 3em;
}

.showcase h1 {
    line-height: 1.5;
}

.showcase p {
    line-height: 1.9;
}

.showcase a {
    margin-top: 1rem;
    background-color: transparent;
    color: #fff;
    border: 2px solid hsl(202, 100%, 72%);
    padding: 1rem 1.5rem .8rem;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.4s ease all;
    text-decoration: none;
}

.showcase a:hover {
    background-color: hsl(202, 100%, 72%);
    color: #000;
    border: 2px solid hsl(202, 100%, 72%);
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    transform: rotateY(180deg);
    -webkit-transform:rotateY(180deg); /* Safari and Chrome */
    -moz-transform:rotateY(180deg); /* Firefox */
}
.video-container video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(2, 24, 2, 0.7);
}

/*****************
SEÇÃO HEADER - MENU DE NAVEGAÇÃO
*****************/

.menunav {
    position: fixed;
    z-index: 10;
    left: 0;
    right: 0;
    top: 0;
    padding: 0 5%;
    height: 80px;
    background-color: transparent;
    transition: 500ms ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menunav-scrolled {
    background-color: rgba(0, 0, 0, 0.85);
    transition: background-color 1s ease 0s;
}

.menunav-logo {
    display: block;
    width:75px;
    height: auto;
    visibility: hidden;
    transition: .2s ease-in-out;
}

.menunav-logo-scrolled {
    visibility: visible;
    transition: visibility .2s ease-in-out;
}

.menunav-links {
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menunav-links>li {
    list-style: none;
    margin-bottom: 0;
}

.menunav-links>li>a {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    position: relative;
}

.menunav-links>li:not(:last-child)>a {
    padding-top: .1em;
    padding-bottom:.5em;
}

.menunav-links>li:not(:last-child)>a:hover {
    color: hsl(202, 100%, 72%);
}

.menunav-links>li:not(:last-child)>a:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  background: hsl(202, 100%, 72%);
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.menunav-links>li:not(:last-child)>a:hover:after {
  width: 100%; 
  left: 0;
}

.menunav-links li:last-child {
    outline: none;
    cursor: pointer;
    padding: 0.5rem 1.1rem .4rem;
    border-radius: 6px;
    background: hsl(201, 73%, 46%);
    border: 2px solid hsl(201, 73%, 46%);
    color: #fff;
    font-weight: 500;
    transition: 0.4s ease all;
}

.menunav-links li:last-child:hover {
    background: hsl(201.1, 87.1%, 27.5%);
    border: 2px solid #fff;
}

#menunav-toggle {
    position: absolute;
    top: -100px;
}

.icon-burger:hover {
    cursor: pointer;
}

.icon-burger {
    display: none;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.icon-burger .line {
    width: 30px;
    height: 5px;
    background-color: #fff;
    margin: 5px;
    border-radius: 3px;
    transition: all .3s ease-in-out;
}

.fine-logo {
    width: 50px;
    transform: scale(1, 1);
    transition: transform 0.5s ease;
}

.fine-logo:hover {
    transform: scale(1.3, 1.3);
}

@media screen and (max-width: 1150px) {
    .menunav-logo {
        float: none;
        justify-content: center;
    }

    .menunav-links {
        float: none;
        position: fixed;
        z-index: 9;
        left: 0;
        right: 0;
        top: 80px;
        bottom: 100%;
        width: auto;
        height: auto;
        flex-direction: column;
        justify-content: space-evenly;
        background-color: rgba(0,0,0,.8);
        overflow: hidden;
        box-sizing: border-box;
        transition: all .5s ease-in-out;      
        margin: 0;  
    }

    .menunav-links a {
        font-size: 20px;
    }

    .menunav :checked ~ .menunav-links {
        bottom: 0;
    }

    .menunav-links > li > a :checked ~ .menunav-links {
        bottom: 0;
    }

    .menunav :checked {
        background-color: rgba(0, 0, 0, 0.85);
    }

    .menunav .icon-burger {
        display: block;
    }
    .menunav :checked ~ .icon-burger .line:nth-child(1) {
        transform: translateY(10px) rotate(225deg);
    }
    .menunav :checked ~ .icon-burger .line:nth-child(3) {
        transform: translateY(-10px) rotate(-225deg);
    }
    .menunav :checked ~ .icon-burger .line:nth-child(2) {
        opacity: 0;
    }
}

/*****************
SEÇÃO QUEM SOMOS - SOBRE A FINE
*****************/

.section-sobre {
    background-image: url('images/fine-setaverde-bg.svg');
    background-repeat: no-repeat;
    background-position-x: -150px;
    background-position-y: 200px;
    background-size: 500px;
    background-color: hsl(206, 93%, 29%)
}

.section-sobre span {
    font-weight: 600;
}

.section-sobre_spacing {
    padding: 3em 2em;
}

.section-sobre_spacing div div {
    padding: 1em 0;
}

.section-sobre>div>div>div {
    margin: 1.5em auto;
}

.fine-sobre_intro {
    letter-spacing: .6px;
    text-transform: uppercase;
    font-size: .8em;
    margin-bottom: 0;
}

.fine-sobre_titulo {
    font-size: 1.5rem;
    margin-bottom: 1.5em;
}

.fine-sobre_img {
    box-shadow: 0 10px 20px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 23%);
    border-radius: 7px;
}

.section-sobre_list {
    list-style: none;
}

.section-sobre_list li {
    display: flex;
    align-items: flex-start;
}

.section-sobre_list li img {
    width: 60px;
    height: auto;
}

.section-sobre_list li p {
    margin-top: 0;
    padding-left: .8em;
}

/*****************
SEÇÃO POR QUE A FINE
*****************/

.section-servicos_bg {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#e8effc+49,ffffff+100 */
    background: #e8effc; /* Old browsers */
    background: -moz-linear-gradient(top,  hsl(219,77%,95%) 49%, hsl(0,0%,100%) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  hsl(219,77%,95%) 49%,hsl(0,0%,100%) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  hsl(219,77%,95%) 49%,hsl(0,0%,100%) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e8effc', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}

.section-dores_intro {
    margin-bottom: 3em;
}

.section-dores_item {
    margin-bottom: 3em;
}

.section-dores_item h3 {
    margin-bottom: 0;
}

.section-dores_icon {
    width: 70px;
}

/*****************
SEÇÃO NOSSAS SOLUÇÕES
*****************/

.section-solucoes {
    background-image: url(images/fine-setaazul-bg.svg);
    background-repeat: no-repeat;
    background-position-x: -150px;
    background-position-y: bottom;
    background-size: 500px;

    background-color:hsl(99, 84%, 7%);
    margin: 0 1em;
    border-radius: 30px
}

.section-solucoes_box {
    padding: 3em 2em;
    margin: 0 auto;
}

.section-solucoes_intro {
    margin-bottom: 3em;
}

.section-solucoes_h3 {
    font-family: 'Gordita Medium';
    margin-bottom: 0;
    font-size: 1.9rem;
    font-weight: 400;
}

.section-solucoes_p {
    margin-top: .5em;
    font-size: 1.4em;
    font-family: 'Gordita Light';
    font-weight: 600;
    margin-bottom: 2em;
    line-height: 1.6;
}

.section-solucoes_p span {
    font-family: 'Gordita Medium';
    color: hsl(0, 0%, 100%);
    font-weight: 400;
}

/*****************
SEÇÃO CLIENTES - MARCAS
*****************/

.section-marcas {
    text-align: center;
}

.section-marcas img {
    width: 200px;
    height: auto;
}

/*****************
SEÇÃO CLIENTES - DEPOIMENTOS
*****************/

.section-depoimentos {
    margin-bottom: 2em;
}

.section-depoimentos h2 {
    text-align: center;
    margin-bottom: 1em;
    margin-top: 0;
}

.section-depoimentos_container {
    background-color: hsl(219, 77%, 95%);
    box-shadow: 0 8px 15px rgb(0 0 0 / 19%), 0 4px 6px rgb(0 0 0 / 23%);
    border-radius: 8px;
    padding: 1em 2em;
}

.section-depoimentos_container blockquote {
    margin: 0;
}

blockquote p {
    position: relative; 
    padding-top: 2em;
    color: hsl(217, 12%, 37%);
}

blockquote::before{
    content: "\201C"; /*Unicode for Left Double Quote*/
    font-size: 6em;
    color: hsl(63, 69%, 62%);
    position:absolute;
    left: 25;
    top: 15;
}

blockquote::after{
    content: ""; /*Reset to make sure*/
}

.section-depoimentos_nome {
    font-family: 'Gordita Medium';
    margin-bottom: 0;
    font-size: 1.125rem;
    font-weight: 700;
}

.section-depoimento_cargo {
    color: hsl(215, 15%, 44%);
    margin-top: .3em;
    font-size: .875rem;
    margin-bottom: .3em;
}

/*****************
SEÇÃO CONTATO
*****************/

.section-contato {
    position: relative;
}

.section-contato_title {
    margin: 0;
}

.section-contato_text {
    margin: .5rem 0 1.5rem;
    font-size: 1.1rem;
}

.section-contato_form {
    margin-block-end: 0;
}

.section-contato_input {
    border-radius: .75rem;
    margin-right: 1rem;
    padding: .75rem;
    width: 100%;
    margin: 0 1rem 1rem 0;
}

.section-contato_button {
    outline: none;
    cursor: pointer;
    padding: .8rem 1rem .7rem;
    display: block;
    border-radius: 6px;
    background: hsl(63, 69%, 62%);
    color: #000;
    font-weight: 700;
    transition: 0.4s ease all;
    border: 2px solid hsl(63, 69%, 62%);
    font-size: .9rem;
}

.section-contato_button:hover  {
    background: hsl(63, 67%, 40%);
    border: 2px solid #fff;
}

.section-contato_bg {
    background: url('images/fine-contato-bg.jpg');
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -2;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.section-contato_bg:after {
    position: absolute;
    content: '';
    background-color: rgba(5, 83, 143, 0.92);
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

/*****************
SEÇÃO EQUIPE
*****************/

.section-equipe {
    background-color: hsl(219, 77%, 95%);
}

.section-equipe_flex {
    margin-bottom: 2em;
}

.section-equipe_img {
    max-width: 220px;
    display: block;
    margin: 3em auto 2.5em;
    filter: drop-shadow(0px 0px 10px rgba(0,0,0,.5));
}

.section-equipe_nome {
    font-family: 'Gordita Medium';
    font-weight: 400;
    margin-bottom: 0;
}

.section-equipe_cargo {
    color: hsl(215, 15%, 44%);
    margin-top: .3em;
    margin-bottom: 1.4em;
    font-size: .9em;
}

/*****************
FOOTER
*****************/

footer {
    background-color: hsl(206, 93%, 29%);
    padding: 1em;
    text-align: center;
}

footer span {
    color: hsl(63, 69%, 62%);
}

.footer_fone a {
    text-decoration: none;
}

.footer_fone a:hover {
    color: hsl(63, 69%, 62%);
    text-decoration: underline;
}

/*****************
MEDIA QUERIES
*****************/

@media (max-width: 369px) {

    .showcase h1 {
        font-size: 1.4rem;
    }

    .showcase p {
        font-size: .9rem;
    }

}

@media (min-width: 500px) {

    .fine-sobre_titulo {
        font-size: 1.9rem;
    }

}

@media (min-width: 640px) {

    .section_width {
        max-width: 640px;
        margin: 0 auto;
    }

    .showcase h1 {
        font-size: 2.2rem;
    }

    .showcase p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .section-dores_lista {
        display: grid;
        grid-template-columns: repeat(2,minmax(0,1fr));
        grid-row-gap: 4rem;
        row-gap: 4rem;
        grid-column-gap: 3rem;
        -moz-column-gap: 3rem;
        column-gap: 3rem;
    }

}

@media (min-width: 768px) {

    .section_width {
        max-width: 768px;
    }

    .section_spacing {
        padding: 4em 1em;
    }

    .section-solucoes_intro p {
        line-height: 1.7;
    }

    .section-solucoes_itens {
        max-width: 700px;
    }

    .section-marcas img {
        padding: 1em;
    }

    .section-contato_content {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .section-contato_text {
        width: 290px;
        margin-bottom: 0;
    }

    .section-contato_form {
        padding: 0 2em;
    }

    .section-equipe_flex {
        display: flex;
        justify-content: space-between;
    }

    .section-equipe_bloco {
        max-width: 43%;
    }

    footer div {
        display: flex;
        justify-content: space-between;
    }

    .footer_fone {
        text-align: left;
    }

    .footer_copyright {
        text-align: right;
    }

}

@media (max-width: 1039px) {
    header .container .navbar .nav-links {
        position: absolute;
        top: 0;
        left: 0;
        background-color: #fff;
        height: 100%;
        width: 225px;
        margin: 0;
        padding: 0;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        transform: translateX(-100%);
        transition: 0.4s ease all;
        z-index: 10;
    }
    header .container .navbar .nav-links li a {
        color: #000;
    }
    header .container .navbar .nav-links li a::after {
        background-color: #000;
    }

    header .container .navbar .nav-links.active {
        transform: translateX(0%);
    }
    header .container .navbar i {
        display: block;
    }

}

@media (min-width: 1040px) {

    .section_width {
        max-width: 1024px;
    }

    .section-dores_intro {
        max-width: 590px;
        text-align: center;
        margin: 0 auto 6em;
    }

    .section-dores_intro p {
        letter-spacing: 1px;
    }

    .section-dores_lista {
        grid-template-columns: repeat(3,minmax(0,1fr));
    }

    .section-solucoes {
        margin: 0 2em;
    }

    .section-solucoes_box {
        display: flex;
        justify-content: space-between;
    }

    .section-solucoes_intro {
        max-width: 222px;
    }

    .section-solucoes_intro,
    .section-solucoes_itens {
        margin-left: 2em;
        margin-right: 2em;
    }

    .section-solucoes_p {
        font-size: 1.8em;
        line-height: 1.7;
        letter-spacing: 2px;
    }

    .section-sobre>div>div {
        grid-template-columns: repeat(2,minmax(0,1fr));
        display: grid;
        grid-column-gap: 3rem;
        -moz-column-gap: 3rem;
        column-gap: 3rem;
        align-items: center;
        justify-items: center;
    }

    .section-sobre>div>div>div {
        max-width: 488px;
    }

    .section-sobre_textB {
        order: 2;
    }

    .section-sobre_textB {
       order: 1;
   }

   .section-contato_form {
    display: flex;
    padding: 0;
}

.section-contato_input {
    margin: 0 2rem 0rem 0;
}

.section-contato_button {
    padding: .75rem 1rem .45rem;
}

.section-equipe_flex {
    justify-content: space-around;
}

.section-equipe_bloco {
    max-width: 32%;
}

}

@media (min-width: 1280px) {

    .section_width {
        max-width: 1100px;
    }

    .section-solucoes {
        margin: 0 3em;
    }

}

@media (min-width: 1300px) {

    .section_width {
        max-width: 1280px;
    }

    .section-solucoes {
        margin: 0 6em;
    }

    .section-solucoes_box {
        max-width: 1280px;
    }

    .section-solucoes_intro {
        max-width: 250px;
    }

    .section-solucoes_itens {
        max-width: 850px;
    }

}