/* =====================
   Header
   ===================== */
header {
    background-color: #1f1f29;
    color: #eaf0d8;
    text-align: center;
    display: flex;
    justify-content: center;
}

.logoHeader {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logoHeader img {
    width: 40px;
}


/* =====================
   WhatsApp Button
   ===================== */
.whatsAppBtn {
    z-index: 1;
    position: fixed;
    bottom: 0;
    right: 0;
    margin: clamp(21px, 1vw, 55px);
}

.whatsAppBtn .btn {
    background-color: #1f1f29;
    color: #eaf0d8;
    border: 1px solid #eaf0d8;
    box-shadow: none;
}

.whatsAppBtn .btn:hover {
    background-color: #404040;
    color: #e7d7d8;
}


/* =====================
   General Description
   ===================== */
#generalDesc{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 34px;
}

#generalDesc .titleContainer{
    text-align: center;
}


/* =====================
   Footer
   ===================== */
footer {
    background-color: #1f1f29;
    color: #eaf0d8;
    display: flex;
    flex-direction: column;
    gap: 55px;
}

.footerBrand {
    text-align: center;
}

.footerBrand img {
    width: 40px;
}

.footerLegal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 34px;
}

.footerTerms{
    display: flex;
    gap: 34px;
}

.footerTerms a {
    color: #eaf0d8;
    text-decoration: underline;
}


/* =====================
   Responsive
   ===================== */
@media (max-width: 870px) {
    .footerLegal{flex-direction: column;}
}