@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    color: #212121;
}




/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    background: url('/img/bg-hero.png') center center / cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    text-align: center;
    padding: 1rem 2rem;
}

.hero-logo {
    width: 100%;
    max-width: 224.94px;
    margin-bottom: 160px;
}

.hero-infos {
    text-align: start;
    padding: 0rem 5rem;
    position: relative;
}

.hero-infos h1 {
    font-size: 64px;
}

.hero-border {
    width: 110px;
    min-height: 8px;
    background-color: #EEA806;
    margin: 1rem auto 0;
    margin-bottom: 20px;
}

.hero-infos p {
    font-size: 24px;
}

.hero-infos p:nth-of-type(2) {
    margin-top: 5px;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-infos a {
    width: 100%;
    background-color: #fff;
    text-decoration: none;
    color: #212121;
    display: flex;
    justify-content: center;
    padding: 10px 10px;
    border: 1px #212121 solid;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hero-infos a:hover {
    opacity: 0.80;
    box-shadow: 0 0 6px #000000b0;
}




/* CANAL */
.canal {
    background-color: #EEA806;
    padding: 2rem 8rem;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.canal p {
    margin-bottom: 10px;
    text-align: start;
    width: 100%;
}

.canal a {
    width: 100%;
    background-color: #fff;
    text-decoration: none;
    color: #212121;
    display: flex;
    justify-content: center;
    padding: 10px 10px;
    border: 1px #212121 solid;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.canal a:hover {
    opacity: 0.80;
    box-shadow: 0 0 6px #000000b0;
}

.canal-infos {
    margin-top: 50px;
    padding-inline: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 562px;

}

.canal-infos img {
    width: 100%;
    max-width: 562px;
    margin-bottom: 15px;
}

.canal-infos h2 {
    margin-bottom: 5px;
    text-align: center;
}

.canal-infos p {
    text-align: center;
    margin-bottom: 15px;

}

/* SOLUÇÕES */
.solucoes {
    padding: 2rem 8rem;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.solucoes h2 {
    text-align: start;
    width: 100%;
    margin-bottom: 20px;
}

.solucoes p {
    margin-bottom: 20px;
    text-align: start;
    width: 100%;
}

.solucoes a:nth-of-type(1) {
    width: 100%;
    background-color: #EEA806;
    text-decoration: none;
    color: black;
    display: flex;
    justify-content: center;
    padding: 10px 10px;
    border: 1px #212121 solid;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.solucoes a:nth-of-type(1):hover {
    opacity: 0.80;
    box-shadow: 0 0 6px #000000b0;
}

.solucoes a:nth-of-type(2) {
    padding-block: 40px;
}

.solucoes img {
    width: 100%;
    max-width: 562.41px;
}

/* FOOTER */
footer {
    background-color: #EEA806;
    padding: 2rem;
}

footer p {
    text-align: center;
    font-size: 12px;
    color: black;
}

@media (max-width: 768px) {
    .hero-infos {
        padding: 5rem 0rem;

    }

    .canal,
    .solucoes {
        padding: 2rem 2rem;
    }
}

@media (min-width: 1440px) {
    .hero-infos {
        padding: 10rem 20rem;
    }
}