*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: 'Montserrat',sans-serif;
}
body{
    color: black;
}

header{
    padding: 32px 50px;
    background: linear-gradient(to right, #00000070, #f5aa6d);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    
}

header a{
    color: #ffffff;
    font-weight: 600;
}

nav{
    display: flex;
    flex-direction: row;
    gap: 50px;
}
#inicio{
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 24px 80px 128px 80px;
    position: relative;
}
h2, h1{
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 32px 0;
}
.paragrafo{
    line-height: 150%;
    margin-bottom: 32px;
}
.botao{
    background-color: #ff725e;
    padding: 16px 32px;
    border-radius: 8px;
    color: #ffffff;
}
.botaotransparent{
    background-color: transparent;
    color: #ff725e;
    text-underline-offset: 4px;
}
.absolute{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}
#clinica{
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 64px 80px;

}
#clinica li{
    margin-bottom: 32px;
}
#farmacia{
    padding: 64px 80px;
    text-align: center;
}
#farmacia img{
    margin: 64px auto;
}
#farmacia .paragrafo{
    max-width: 950px;
    margin: 0 auto;
}
#duvidas{
    display: flex;
    align-items: center;
    gap: 64px;
    padding: 64px 80px;
}
.duvida{
    position: relative;
}
.duvida h3{
    border: 2px solid #ff725e;
    border-radius: 8px;
    cursor: pointer;
    padding: 24px;
}
.duvida img{
    position: absolute;
    top: 32px;
    right: 24px;
}
.duvida .paragrafo{
    border-left: 1px solid #ff725e;
    border-right: 1px solid #ff725e;
    border-bottom: 1px solid #ff725e;
    border-radius: 0 0 8px 8px;
    padding: 0 24px;
    margin-top: -8px;
    height: 0;
    overflow: hidden;
    opacity: 0;
}
.duvida.ativa .paragrafo{
    padding: 12px 24px;
    margin-top: -8px;
    opacity: 1;
    height: fit-content;

}
footer{
    background-color: #ff725e10;
    display: flex;
    justify-content: space-between;
    gap: 80px;
    padding: 64px 80px;
}
footer img, footer .titulo{
    font-weight: 600;
    margin-bottom: 24px;
    display: block;

} 
footer nav{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
footer nav a{
    color: #121212;
    
}
footer p{
    margin-bottom: 1px;
    max-width: 350px;
}
footer p a {
    color: #121212;
}
#copyright{
    background-color: #263138;
    padding: 24px;
    color: #ffffff;
    text-align: center;
}
#copyright a{
    color: #00ccff;
}