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

:root {
   --color-bg:#065E7C;
   font-family: 'Mulish', sans-serif;
}

header {
    min-width: 430px;
    min-height: 72px;
    background-color: var(--color-bg);
    display:  flex;
    justify-content: center;
    align-items: center;
    padding: 12px 28px;
    gap: 25px;
}

header .avatar {
    border-radius: 50%;
    width: 42px;
    height: 42px;

}
header .logo {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    padding: 8px;
}

header label {
    width: 1px;
    height: 1px;
    overflow: hidden;
    position: absolute;
}
header #pesquisa {
    background: rgba(255, 255, 255, 0.20);
    display: flex;
    align-items: center;
    border-radius: 4px;
    padding: 12px 16px 12px 14px;
    gap: 12px;
    border: none;
}
header #pesquisa::placeholder {
    color: #FFF;
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
}


main h1 {
    margin: 31px 0px 0px 26px;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
}

main p {
    width: 382px;
    margin-top: 31px;
    margin-left: 26px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

main .icon-logo {
    cursor: pointer;
    color: #FFF;
    background-color: #065E7C;
    margin-top: 8px;
    margin-left: 22px;
    border-radius: 50%;
    padding: 12px;
}
main .img-bg:hover {
    filter: hue-rotate(7deg) contrast(101%) saturate(200%);
}
aside img {
    transition: all 200ms ease-out;
}
aside img:hover {
    cursor: pointer;
    filter: hue-rotate(7deg) contrast(101%) saturate(200%);
    transform: scale(1.2);
}

main picture img {
    border-radius: 5px;
    min-width: 431px;
    min-height: 242px;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* */
aside {
    display: flex;
    flex-direction: column;
    margin-top: 15px;
    margin-left: 22px;
    gap: 32px;

}
aside .item  {
    width: 382px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
 }

 aside h1 {
    font-family: Mulish;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
 }

 aside h2 {
    font-family: Mulish;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
 }
 aside p {
    font-family: Mulish;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
 }


 aside img  {
    justify-content: center;
    display: flex;
    align-items: center;
    border-radius: 5px;
    width: 151px;
    height: 84px;
    object-fit: cover;
    aspect-ratio: 16/9;
 }


 /* footer */

footer {
    background-color: var(--color-bg);
    display: flex;
    width: 430px;
    height: 64px;
    padding: 16px;

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
footer p {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

/* responsivo */

@media (min-width:452px){
    body {
        
    }
    header input {
        width: 55%;
    }
    .page { 
         margin: 40px 34px 36px 109px ;  
        display: flex;
        justify-content: center;
        gap: 32px;

    }

    .img-bg {
        display: block;
        width: 800px;
        object-fit: cover;
    }

    main {
        display: flex;
        flex-direction: column;
    }
 main .icon-logo {
    display: block;
     float: right;
     margin-top: 0;
    
 }

.title {
    margin-top: 31px;
    display: flex;
    align-items: center;
}

    main h1 {
        width: 680px;
        margin-top: 0;
        margin-left: 0;
    }
    
    main p {
        min-width: 800px;
        margin-top: 32px;
        margin-left: 0;
        text-align: left;

    }

 aside {
    margin-top: 0;
    margin-left: 0;
 }
 footer {
    width: 100%;
 }
}