* {
    margin: 0;
    padding: 0;
}
a { text-decoration: none;}
.container {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url("./assets/img/background-brut.png");
    background-size: cover;
    overflow: hidden;
}

.container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: url("./assets/img/noise.png");
    mix-blend-mode: overlay;
}


nav {
    z-index: 1;
    width: 100%;
    max-width: 1052px;
    padding: 35px 8px 0 8px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.logo-container {
    width: 161px;
    height: 55px;
}

.logo-container img {
    width: 100%;
    height: 100%;
}

.social-media-wrapper {
    display: flex;
    align-items: center;
}

.social-media-wrapper a {
    border: 1px solid #fff;
    padding: 8px 14px;
    color: #fff;
    font-size: 28px;
}

main {
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
}

main h1 {
    font-weight: 600;
    font-size: min(4.6875rem, 10vw);
    line-height: min(5.5rem, 11.73vw);
    width: 100%;
    max-width: 723px;
    text-align: center;
    color: #fff;
}

main h1 span {
    position: relative;
}

main h1 span::before {
    content: "";
    z-index: -1;
    position: absolute;
    width: 120%;
    height: 100%;
    left: 50%;
    transform: translate(-50%, 15%);
    background: url("./assets/img/yellow-bars.svg") no-repeat center center;
}


.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 37px;
    margin-top: 72px;
}

.btn {
    min-width: 240px;
    padding: 18px 32px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-contact {
    background-color: #ffc547;
    color: #032f41;
}

.btn-whatsapp {
    background-color: #fff;
    border: 1px solid #000;
    color: #000;
}

.btn-whatsapp i {
    margin-right: 16px;
    font-size: 24px;
}