*{
      font-family: "Urbanist", sans-serif;
}

:root {
  --VerdePrimario: #013F32;
  --VerdeSecundario: #016450;
  --Amarelo: #E7FF25;
  --Cinza: #424241;
  --Branco: #fff;
  --sombra: 4px 4px 20px 2px #56596759;
}

.btn-padrao{
    font-weight: 700;
    font-size: 20px;
    line-height: 160%;
    color: var(--Branco) !important;
    background-color: var(--VerdeSecundario);
    padding: 12px 30px;
    border-radius: 30px;
    transition: 300ms all ease-in-out;

    &:hover{
        background-color: var(--Amarelo);
        color: var(--Cinza) !important;
    }

}

h1{
    font-weight: 600;
    font-size: 48px;
    line-height: 135%;
    color: var(--Branco);
}

h2{
    font-weight: 600;
    font-size: 36px;
    line-height: 135%;
    color: var(--VerdeSecundario);
}


.moldura-card-produto{
    position: relative;

    .card-produtos{
        margin: 24px 0;
        box-shadow: 0px 4px 11.3px 0px #00000021;
        border-radius: 20px;
        transition: filter 0.3s ease;
        position: relative;
        z-index: 1;
    
        .moldura{
            overflow: hidden;
            border-radius: 20px 20px 0 0;
  
            .img-produto {
                width: 100%;
                height: 300px;
                object-fit: cover;
                border-radius: 20px 20px 0 0;
                transition: 300ms all ease-in-out;
            }
        }
        .info-card {
            padding: 24px;
            background-color: var(--Branco);
            border-radius: 0 0 20px 20px;
    
            .titulo-card {
                font-weight: 600;
                font-size: 24px;
                line-height: 160%;
                margin-bottom: 8px;
            }
            .texto-card {
                font-weight: 400;
                font-size: 16px;
                line-height: 160%;
                color: var(--Cinza);
            }
            .saber-mais {
                font-weight: 600;
                font-size: 20px;
                line-height: 160%;
                color: var(--VerdeSecundario);
                cursor: pointer;
    
                img{
                    position: relative;
                    top: -1px;
                }
            }
        }
    }

    .card-produtos:hover .img-produto{
        scale: 1.1;
    }

    .card-formulario-prd{
        padding: 30px;
        background-color: var(--Branco);
        border-radius: 20px;
        position: absolute;
        top: 0;
        min-height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        will-change: transform, opacity;
        box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        z-index: 10;
        transform-origin: center center;



        .fechar {
            position: absolute;
            right: 20px;
            top: 20px;
            font-weight: 700;
            color: #E2E2E2;
            font-size: 25px;
            cursor: pointer;
        }

        .titulo-form {
            font-weight: 600;
            font-size: 24px;
            line-height: 160%;
            color: var(--VerdeSecundario);
            margin: 0;
        }
        .text-form {
            font-weight: 400;
            font-size: 16px;
            line-height: 140%;
            color: var(--Cinza);
        }
        label {
            font-weight: 600;
            font-size: 16px;
            line-height: 160%;
            color: var(--Cinza);
        }
        .btn-enviar{
            font-weight: 700;
            font-size: 20px;
            line-height: 160%;
            color: var(--Branco) !important;
            background-color: var(--VerdeSecundario);
            padding: 12px 30px;
            border-radius: 30px;
            transition: 300ms all ease-in-out;

            &:hover{
                background-color: var(--Amarelo);
                color: var(--Cinza) !important;
            }
        }
    }
}













header{
    background-color: var(--VerdePrimario);
    
    .alt-menu {
        display: flex;
        align-items: center;

        .nav-item{
            font-weight: 700;
            font-size: 20px;
            line-height: 160%;
            color: var(--Branco);
            margin: 0 32px 0 0;
        }
    }

    .box-social-central {
        display: flex;

        .sociais-header {
            display: flex;
            margin: 0;
            padding: 0;

            li{
                list-style-type: none;
                width: 56px;
                height: 56px;
                background-color: var(--VerdeSecundario);
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 50px;
                transition: 300ms all ease-in-out;
                margin-left: 16px;

                &:hover{
                    background-color: var(--Amarelo);

                    img{
                        filter:invert(24%) sepia(13%) saturate(640%) hue-rotate(341deg) brightness(42%) contrast(89%)
                    }
                }
            }
        }
    }

}

footer {
    border-top: solid 10px #E7FF25;
    padding: 50px 0 0 0;
    background-color: #013F32;

    .text-footer {
        font-weight: 400;
        font-size: 16px;
        line-height: 160%;
        margin-top: 16px;
        color: #fff;
    }

    h5{
        font-weight: 600;
        font-size: 24px;
        line-height: 160%;
        color: var(--Branco);
    }

    .sociais-footer {
        display: flex;
        margin: 0;
        padding: 0;

        li{
            list-style-type: none;
            width: 56px;
            height: 56px;
            background-color: var(--VerdeSecundario);
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50px;
            transition: 300ms all ease-in-out;
            margin-right: 16px;

            &:hover{
                background-color: var(--Amarelo);

                img{
                    filter:invert(24%) sepia(13%) saturate(640%) hue-rotate(341deg) brightness(42%) contrast(89%)
                }
            }
        }
    }

    .links-nav {
        margin: 0;
        padding: 0;

        li{
            font-weight: 400;
            font-size: 20px;
            line-height: 180%;
            color: var(--Branco);
            list-style-type: none;
        }
    }

    .box-copy{
        padding: 20px 0 20px;
        background-color: #016450;
        margin-top: 40px;
        position: relative;
        overflow-x: hidden;

        .copy{
            font-weight: 400;
            font-size: 14px;
            line-height: 160%;
            letter-spacing: 0%;
            color: var(--Branco);
            margin: 0px;
            
            .politica{
                font-weight: 600;
                text-decoration: underline;
                color: var(--Branco);
                
            }
        }

        &::after{
            background-color: #016450;
            background-size: auto;
            display: inline-block;
            width: 100%;
            height: 100%;
            content: "";
            bottom: 0;
            left: -100%;
            position: absolute;
            z-index: 0;
        }
        &::before{
            background-color: #016450;
            background-size: auto;
            display: inline-block;
            width: 100%;
            height: 100%;
            content: "";
            bottom: 0;
            right: -100%;
            position: absolute;
            z-index: 0;
        }
    }

}


#cabecalho{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 440px;
    position: relative;
    display: flex;
    align-items: center;

    .sombra-servico {
        background: #0000004D;
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0.8;
        top: 0;
    }

    .text-cabecalho{
        font-weight: 500;
        font-size: 16px;
        line-height: 160%;
        color: var(--Branco);

    }

    .migalhas{
        padding: 0;
        margin: 0;
        display: flex;
    
        li{
            font-weight: 400;
            font-size: 16px;
            line-height: 160%;
            letter-spacing: 0%;
            color: var(--Branco);
            list-style-type: none;
            margin-right: 8px;
            
            img{
                margin-left: 8px;
            }
            
        }
        .destaque{
            font-weight: 600;
        }
    }
}




/* TABLET */
@media (min-width: 768px) and (max-width: 1200px) {
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    header {
        .box-social-central {
            display: flex;
            flex-direction: column;
            align-items: center;

            .sociais-header {
                margin-top: 30px;
            }
        }

         .alt-menu {
            padding-bottom: 30px;

            .nav-item {
                font-weight: 700;
                font-size: 20px;
                line-height: 160%;
                color: var(--Branco);
                margin: 16px 0;
            }
        }

        .btn-padrao {
            padding: 8px 30px !important;
            margin-top: 20px;
        }
    }

    footer {
        text-align: center;

        h5 {
            margin-top: 40px;
        }

        .sociais-footer {
            justify-content: center;
        }
        
        .links-nav {
            li {
                margin-bottom: 20px;
            }
        }
    }   
}

/* MOBILE */
@media all and (max-width: 767px) { 

    .navbar-toggler:focus {
        box-shadow: none;
    }

    header {
        .box-social-central {
            display: flex;
            flex-direction: column;
            align-items: center;

            .sociais-header {
                margin-top: 30px;
            }
        }

         .alt-menu {
            padding-bottom: 30px;

            .nav-item {
                font-weight: 700;
                font-size: 20px;
                line-height: 160%;
                color: var(--Branco);
                margin: 16px 0;
            }
        }

        .btn-padrao {
            padding: 8px 30px !important;
            margin-top: 20px;
        }
    }

    h1{
        font-size: 32px;
    }

    h2{
        font-size: 28px;
        text-align: center;
    }

    footer {
        text-align: center;

        h5 {
            margin-top: 40px;
        }

        .sociais-footer {
            justify-content: center;
        }
        
        .links-nav {
            li {
                margin-bottom: 20px;
            }
        }
    }      
}

.floating-button-whatsapp:hover img {
    filter: invert(100%) sepia(75%) saturate(1756%) hue-rotate(774deg) brightness(209%) contrast(107%);
}
.floating-button-mail:hover img {
    filter: invert(100%) sepia(75%) saturate(1756%) hue-rotate(774deg) brightness(209%) contrast(107%);
}
.navbar-toggler {
    border: none;
}