@charset "UTF-8";

:root{

    /* Cor padrão */

    --c01: black;
    --c02: #fff;

    /* Cores */

    --c03: #4C98FA;
    --c04: #2C78DA ;
    --c05: #004CAE;
    --c06: #00004E ; 

    /* Mensagens do sistema */

    --cs1: #5FFF3F;
    --cs2: #FFFF21;
    --cs3: #FF2121;

    --f01: Arial, Helvetica, sans-serif;
}

/* @media (width: 400px) { */

    *{
        margin: 0;
        padding: 0;
        border: 0;
        outline: none;
        box-sizing: border-box;
    }

html, body{
    /* height: 100%; */
    font-family: var(--f01);
    color: var(--c02);
}

body{
    background-image: linear-gradient(to bottom, var(--c03), var(--c06));
    background-repeat: no-repeat;
    background-size: cover;
}

.logoHome{
    margin: 10px 0 0 10px;

    h1{
        color: var(--c02);
        font-size: 2em;
    }
    span{
        color: var(--c05);
    }
}

main{
    width: 90%;
    margin: 0 auto;
    
    .title{
        max-width: 250px;
        padding: 10px;
        margin: 20px auto 0 auto;

        text-align: center;
        background-color: var(--c05);
        box-shadow: 0 0 20px var(--c05);
        border-radius: 20px;
        
        h1{
            color: var(--c02);
            font-size: 1em;
        }
    }

    div{
        width: 100%;
    }

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

    h3#titulo{
        text-align: center;
    }

    /* Primeira cessão */
    .primeiro{
        height: 300px;
        margin: 20px 0;

        figure{
            width: 50%;
            height: 100%;

            border-radius: 10px;

            img{
                width: 100%;
                height: 100%;
                object-fit: none;
                border-radius: 10px;
            }
        }

        .container{
            padding: 15px;
            margin-left: 15px;
            text-align: justify;

            border-radius: 10px;
            background-color: var(--c05);

            h3{
                margin-bottom: 10px;
            }
        }
    }

    .container{
        text-align: center;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 0 20px var(--c05);
        background-color: var(--c05);

        p{
            text-align: justify;
        }
    }

    .dep{
        text-decoration: none;
        position: relative;
    }

    .dep::after{
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 2px;
        background-color: var(--c03);
        transition: width 0.3s ease;
    }

    .dep:hover::after{
        width: 151px;
    }

    h2{
        margin: 10px 0;
        transition: 0.5s;
        color: var(--c02);
    }

    h2:hover{
        color: var(--c03);
    }

    .depoimento{
        background-color: rgba(255, 255, 255, 0.5);
        backdrop-filter: opacity(100%), blur(150px), brightness(1.01);
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
        margin: 15px 0;
        border-radius: 12px;
        .flex{
            align-items: center;

            figure{
                min-width: 200px;
                height: 150px;
                img{
                    width: 100%;
                    height: 100%;
                    object-fit: none;
                    border-radius: 10px 0 0 10px;
                }
            }

            .direita{
                img{
                    border-radius: 0 10px 10px 0;
                }
            }

            p{
                color: var(--c01);
                margin: 0 20px;
                /* width: 60%; */
                font-size: 0.7em;
            }
        }
    }

    .botao{
        margin: 20px 0;
        text-align: right;

        .but{
            width: 20%;
            padding: 10px;
    
            color: var(--c02);
            text-align: center;
            background-color: var(--c05);
            box-shadow: 0 0 20px var(--c05);
            border-radius: 20px;
            text-decoration: none;
            transition: 0.5s;
        }

        .but:hover{
            box-shadow: 0 0 20px var(--c06);
            background-color: var(--c06);
        }
    }

    form{
        background-color: var(--c06);
        padding: 20px;
        border-radius: 10px;

        h3{
            font-size: 1.1em;
        }
        
        .f1{
            width: 45%;
            
            .secao{
                display: flex;
                flex-direction: column;
                margin: 10px 15px 0 0;

                input{
                    margin-top: 5px;
                    border-radius: 10px;
                    padding: 5px;
                }

                textarea{
                    margin-top: 5px;
                    padding: 5px;
                    border-radius: 10px;
                }
            }

            .enviar{
                display: flex;
                justify-content: right;
                margin-top: 10px;

                button{
                    border-radius: 20px;
                    background-color: var(--c03);
                    color: var(--c02);
                    font-weight: 800;
                    padding: 7px 15px;
                    box-shadow: 0 0 10px var(--c03);
                }
            }
        }

        .f2{
            width: 50%;
            figure{
                width: 100%;
                height: 100%;
                img{
                    width:100%;
                    height: 100%;
                    border-radius: 10px;
                    object-fit: none;
                }
            }
        }
    }
}

footer{
    margin-top: 30px;
    border-top: 1px solid white;

    padding: 10px 10% 5px 10%;

    .flex{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        .fot_block{

            h3{
                font-size: 0.8em;
            }

            ul{
                li{
                    margin-top: 5px;
                    list-style: none;
                    font-size: 0.7em;
                }
            }

            .logo{
                h1{
                    color: var(--c02);
                    font-size: 2em;
                }
                span{
                    color: var(--c05);
                }            
            }
        }
    }

    hr{
        width: 100%;
        position: absolute;
        margin: 10px 0 0 0;
        left: 0;
        padding: 0;
        height: 1px;
        background-color: var(--c02);
    }

    .fecho{
        margin-top: 10px;
        width: 100%;
        padding-top: 10px;

        justify-content: space-between;

        figure.flex{
            width: 50px;
            justify-content: space-between;
            margin-right: 15px;
        }
    }
}


:root {
    --c01: #000000;
    --c02: #f0f0f0;
}

/* Imagem destaque */
.imagem-destaque {
    position: relative;
    width: 100%;
    overflow: hidden;
}

#RaiImg {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2em;
}

.logo-tit {
    font-size: 3em;
}

.texto-sobre-imagem {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.texto-sobre-imagem h1 {
    font-size: 2.5rem;
}

.texto-sobre-imagem h3 {
    font-size: 1.2rem;
}

/* Depoimentos */
.depoimentos {
    width: 100%;
    margin-top: 50px;
    padding: 0 10px;
}

.depEsquerda,
.depDireita {
    background-color: var(--c02);
    border-radius: 10px;
    box-shadow: 0 7px 6px rgba(38, 176, 255, 0.329),
                0 1px 3px rgba(0, 0, 0, 0.08);
    width: 90%;
    margin: 0 auto 30px auto;
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.depEsquerda .imagem,
.depDireita .imagemDi {
    width: 40%;
}

.pessoa {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.textos,
.textosDi {
    width: 55%;
    padding: 10px;
}

.textos h3,
.textosDi h3 {
    color: var(--c01);
    margin-bottom: 10px;
}

.textos p,
.textosDi p {
    margin-top: 10px;
    color: var(--c01);
}

/* Responsividade para telas pequenas */
@media (max-width: 300px) {
    .logo-tit {
        font-size: 2em;
    }

    .texto-sobre-imagem h1 {
        font-size: 1.5rem;
    }

    .texto-sobre-imagem h3 {
        font-size: 1rem;
    }

    .depEsquerda,
    .depDireita {
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .depEsquerda .imagem,
    .depDireita .imagemDi,
    .textos,
    .textosDi {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 10px;
    }

    .pessoa {
        height: auto;
    }
}
