@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500&display=swap');

:root {
    --header-language: #4B4B4B;
    --Label-title: #A2A099;
    --text-light: #CECAC0;
    --writings-principal: #4B4B4B;
    --writings-footer: #727068;
    --background-default: #E4E0CF;
    --highlights: #AE986E;
    --gradient: linear-gradient(92deg, #A5986E 13.4%, #D7CD7B 28.67%, #CCBB85 46.11%, #EBDAA2 57.02%, #CCBB85 69.23%, #D0C775 83.62%);
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Rubik', sans-serif;
    font-weight: 300;
}

body {
    height: auto;
    box-sizing: border-box;
}

.navigation {
    display: flex;
    justify-content: space-between;
    padding: 1em;
}

.logo {
    width: 170px;
}

/* .language {
    display: flex;
    gap: 0.3em;
} */

.hr-nav {
    height: 1.8em;
}

.portuguese,
.english {
    font-size: 24px;
    color: var(--header-language);
    text-decoration: none;
}

.banner {
    background-image: url(images/background.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    color: white;
    display: flex;
    justify-content: space-between;
    height: 90vh;
    background-size: cover;
    /* Padrão */
    -webkit-background-size: cover;
    /* Para Safari */
    background-position: center;
    background-attachment: fixed;
    align-items: center;
    padding: 0 6em;
}

.banner-title {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 40%;
}

.emphasis {
    font-weight: 500;
    background-image: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-label {
    display: flex;
    justify-content: space-around;
    gap: 1em;
    font-size: 20px;
    font-weight: 400;
}

.contact-card {
    border-radius: 20px;
    border: 1px solid #666;
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0px 0px 7px 2px rgba(45, 46, 47, 0.75);
    backdrop-filter: blur(15.5px);
    width: 20em;
    height: 23em;
    padding: 1.5em;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.contact-title {
    font-size: 23px;
    font-weight: 400;
    text-align: center;
}

input::placeholder {
    color: var(--text-light);
}

input:focus {
    outline: 1px solid var(--Label-title);
}

select:focus {
    outline: 1px solid var(--Label-title);
}

.select-item {
    background-color: var(--writings-footer);
}

.name,
.phone,
.email,
.select-service {
    background-color: rgba(0, 0, 0, 0.10);
    border: 0;
    border-radius: 22px;
    padding: 0.4em;
    color: var(--text-light);
    font-size: 22px;
    font-weight: 300;
}

.contact-button {
    background-color: rgba(255, 255, 255, 0.23);
    border-radius: 27px;
    padding: 0.5em;
    border: 0;
    font-size: 23px;
    font-weight: 400;
    color: white;
    cursor: pointer;
}

.services {
    text-align: center;
    margin: 15em 5em;
}

.card {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.card-services {
    padding: 0.5em;
}

.card-title {
    font-size: 25px;
    font-weight: 400;
    margin: 0.5em;
    color: var(--writings-principal);
}

.card-text {
    color: var(--writings-footer);
    font-size: 20px;
}

.card-services:hover {
    background-color: rgba(0, 0, 0, 0.08);
    border-radius: 20px;
}


/* Container com foto e empresas clientes */

.title {
    border: 0;
    border-bottom: 1px solid var(--Label-title);
    color: var(--Label-title);
    width: 250px;
    text-align: center;
    margin: auto;
    padding-bottom: 0.8em;
    margin-bottom: 3em;
    font-size: 30px;
}

.presentation-member {
    display: flex;
    justify-content: space-around;
    margin: 12em 5em;
    padding: 0.5em;
}

.container-partners {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

#c1l1,
#c1l3,
#c2l3 {
    width: 60%;

}

#c1l2 {
    width: 60%;
    margin-right: 10em;
}

#c2l2 {
    width: 60%;
    margin-left: 10em;
}

#c2l1 {
    width: 40%;
}

.juliaeallan {
    width: 30%;
}

.fotosome{
    display: none;
}

/* Rodapé */

footer {
    position: relative;
    padding: 1em;
    bottom: 0em;
    color: var(--writings-footer);
}

#logo-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 70%;
}

#information {
    margin: 0 4em;
}

.content {
    margin-bottom: 2em;
}

.content-item {
    text-align: right;
    align-items: right;
    margin-bottom: 0.8em;
    color: var(--writings-footer);
    text-decoration: none;
    font-size: 15px;
}

.hr-footer {
    width: 100%;
    margin: 0 auto;
    color: var(--writings-footer);
}

.email-footer {
    text-decoration: none;
    color: var(--writings-footer);
}

.bottom-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 2em;
    align-items: center;
}

.contact {
    display: flex;
    gap: 2em;
}

.imagem {
    width: 70%;
}

/* Frase do banner principal que se altera no mquery */

.banner-title-responsive {
    display: none;
}


@media screen and (max-width: 1280px) {

    .banner {
        align-items: center;
        padding: 0 3em;
    }

    .presentation-member {
        margin: 6em 0.5em 10em 0.5em;
    }
}

@media screen and (max-width: 1100px) {
   
    #logo-footer {
        right: 60%;
    }

    .logo {
        width: 130px;
    }
        .banner-title {
        margin-bottom: 20%;
    }

    .presentation-member {
        margin: 3em 0.5em 8em 0.5em;
    }

    #c2l2 {
        margin-left: 8em;
    }

    #c1l2 {
        margin-right: 8em;
    }
}

@media screen and (max-width: 970px) {


    .navigation {
        padding-bottom: 0.3em;
    }

    .banner-title {
        margin: 2em 0 1em 0;
    }

    .banner {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .contact-card {
        margin: 2em 0;
    }

    .title {
        font-size: 25px;
    }

    .card {
        display: flex;
        justify-content: space-between;
        gap: 1.5em;
    }

    .card-services {
        padding: 0.2;
    }

    .card-title {
        font-size: 16px;
    }

    .card-text {
        font-size: 14px;
    }

    .presentation-member {
        margin: 1em 0.5em 8em 0.5em;
    }

    #c2l2 {
        margin-left: 5em;
    }

    #c1l2 {
        margin-right: 5em;
    } 
    
    .title {
        width: 160px;
        font-size: 20px;
    }

}

@media screen and (max-width: 600px) {

    .banner-title-responsive {
        display: block;
        font-size: 30px;
        font-weight: 400;
        margin: 1.5em 0 1em 0;
    }

    .banner-label {
        display: none;
    }

    .banner-title {
        display: none;
    }

    .banner-label {
        gap: 0.5em;
        font-size: 15px;
    }

    .contact-card {
        width: 18em;
        height: 20em;
        padding: 1.5em;
        display: flex;
        flex-direction: column;
        gap: 1em;
    }

    .name,
    .phone,
    .email,
    .select-service,
    .contact-title,
    .contact-button {
        font-size: 20px;
    }

    .services {
        text-align: center;
        margin: 10em 0;
    }

    .card {
        display: flex;
        flex-direction: column;
        gap: 3em;
        padding: 1.5em;
    }

    .juliaeallan {
        display: none;
    }

    .fotosome{
        display: block;
        width: 100%;
        margin-bottom: 10em;
    }

    #c1l1,
    #c1l2,
    #c1l3,
    #c2l2,
    #c2l3 {
        width: 80%;
    }

    #c2l2 {
        margin-left: 0;
    }

    #c1l2 {
        margin-right: 0;
    }

    .container-partners{
        display: flex;
        justify-content: center;
        gap: 2.5em;
    }

    #logo-footer {
        right: 50%;
    }

    .contact {
        gap: 0.3em;
    }

    .icons-contact {
        width: 80%;
    }

    footer {
        font-size: 14px;
    }

    .bottom-footer {
        display: flex;
        flex-direction: column;
        gap: 2em;
    }

    .content-item{
        font-size: 10px;
    }
}

@media screen and (max-width: 375px){

    .contact-card {
        width: 15em;
        height: 16em;
        padding: 1em;
        display: flex;
        flex-direction: column;
        gap: 0.7em;
    }

    .name,
    .phone,
    .email,
    .select-service,
    .contact-title,
    .contact-button {
        font-size: 16px;
    }

    .services {
        margin: 5em 0;
    }

    .fotosome{
        margin-bottom: 5em;
    }

    .presentation-member {
        margin: 0 0.5em 5em 0.5em;
    }
}