:root {
    --primary-color: #521419;
    --secondary-color: #f8b82b;
    --max-width: 800px;
}

html {
    background-color: #ffffff;
}

body {
    margin: 0 auto;
    font: 16px Montserrat, sans-serif;
}

.logo {
    max-width: 350px;
    padding: 10px;
    margin: 0 auto;
}

.logo__img {
    max-width: 100%;
}

.divisor {
    background-color: var(--secondary-color);
    height: 3px;
    margin-top: 20px;
    margin-bottom: 3px;
}

.main-text {
    text-align: center;
    color: #ffffff;
    font-weight: bold;
    background-color: var(--primary-color);
    text-transform: uppercase;
    padding: 15px;
}

.sub-text {
    text-align: center;
    color: #000000;
    margin: 18px auto;
    padding: 20px;
    max-width: var(--max-width);
}

.catalog {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: var(--max-width);
    margin: 0 auto;
    gap: 20px;
    padding: 20px;
}

.catalog__item {
    display: flex;
    flex-direction: column;
    max-width: 220px;
}

.catalog__img {
    max-width: 100%;
}

.catalog__desc {
    text-align: center;
    color: var(--primary-color);
    padding: 8px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

.footer {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    margin-top: 20px;
    padding: 20px;
}

.footer__top, .footer__bottom {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    color: #2d171a;
    gap: 20px;
    justify-content: center;
}

.link {
    font-size: 14px;
    display: flex;
    column-gap: 5px;
    color: var(--primary-color);
    text-decoration: none;
}

.link:hover {
    color: #000000;
}

.link__icon {
    position: relative;
    bottom: -1px;
}

.whatsapp {
    position: fixed;
    bottom: 10px;
    left: 10px;
    height: 70px;
    width: 70px;
    z-index: 9999;
}

.whatsapp img {
    height: 100%;
}