@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;700&display=swap');

:root {
    --color-orange-400: hsl(12, 88%, 59%);
    --color-blue-950: hsl(228, 39%, 23%);
    --color-gray-950: hsl(233, 12%, 13%);
    --color-orange-50: hsl(13, 100%, 96%);
    --color-gray-50: hsl(0, 0%, 98%);
    --color-white: hsl(0, 0%, 100%);
    --font-main: 'Be Vietnam Pro', sans-serif;
    --shadow-btn: 0 10px 15px -3px hsla(12, 88%, 59%, 0.5);
}

*,
*::after,
*::before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    width: 100%;
    min-height: 100vh;
    font-family: var(--font-main);
    font-size: 1rem;
    background-color: var(--color-white);
    color: var(--color-blue-950);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;

    background: url(images/bg-tablet-pattern.svg) no-repeat;
    background-size: 800px;
    background-position: 5rem -5rem;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-blue-950);
}

p {
    color: var(--color-gray-950);
    opacity: 0.6;
}

a {
    text-decoration: none;
    color: var(--color-blue-950);
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn,
.btn-2,
.btn-go {
    border: none;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.btn {
    background-color: var(--color-orange-400);
    color: var(--color-white);
    box-shadow: var(--shadow-btn);
}

.btn:hover {
    background-color: hsl(12, 88%, 70%);
}

.btn-2 {
    background-color: var(--color-white);
    color: var(--color-orange-400);
}

.btn-2:hover {
    color: hsl(12, 88%, 70%);
}

.btn-go {
    background-color: var(--color-orange-400);
    color: var(--color-white);
    padding: 0.8rem 1.5rem;
}

.topo-site {
    width: 100%;
    max-width: 1440px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 1.5rem;
}

.menu-desktop,
#button-topo {
    display: none;
}

.conteudo-principal {
    width: 100%;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    padding: 0 1.5rem;
}

.hero-textos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cards {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 0 1.5rem;
}

.txt-cards {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.subcards {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.list-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.list-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--color-orange-50);
    border-radius: 2rem 0 0 2rem;
}

.badge {
    background-color: var(--color-orange-400);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
}

.testimonials-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    text-align: center;
}

.coments {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 0 1.5rem;
}

.card-depoimento {
    background-color: var(--color-gray-50);
    padding: 4rem 1.5rem 2.5rem 1.5rem;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.card-depoimento img {
    width: 72px;
    height: 72px;
    margin-top: -6rem;
}

.sobre-rodape {
    background-color: var(--color-orange-400);
    background-image: url(images/bg-simplify-section-mobile.svg);
    background-repeat: no-repeat;
    background-position: left center;
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.sobre-rodape h1 {
    color: var(--color-white);
}

.attribution {
    background-color: var(--color-gray-950);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 4rem 2rem;
}

.footer-form form {
    display: flex;
    gap: 0.5rem;
}

.footer-form input {
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    border: none;
    width: 100%;
    max-width: 250px;
    font-family: inherit;
}

.links-rdp {
    display: flex;
    gap: 5rem;
    width: 100%;
    justify-content: center;
}

.coluna-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.coluna-links a {
    color: var(--color-white);
}

.coluna-links a:hover {
    color: var(--color-orange-400);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.redes-sociais {
    display: flex;
    gap: 2rem;
}

.copyright {
    color: var(--color-gray-50);
    font-size: 0.8rem;
}


@media (min-width: 1024px) {
    body {
        background-size: 800px;
        background-position: 110% -20%;
    }

    .topo-site {
        padding: 3rem 4rem;
    }

    #menu {
        display: none;
    }

    .menu-desktop {
        display: block;
    }

    .menu-desktop ul {
        display: flex;
        gap: 2rem;
        list-style: none;
    }

    .menu-desktop a {
        font-weight: 500;
    }

    .menu-desktop a:hover {
        color: var(--color-gray-950);
        opacity: 0.5;
    }

    #button-topo {
        display: inline-block;
    }

    .hero {
        flex-direction: row-reverse;
        justify-content: space-between;
        text-align: left;
        padding: 0 4rem;
        gap: 2rem;
    }

    .hero-imagem {
        width: 50%;
    }

    .hero-textos {
        width: 45%;
        align-items: flex-start;
    }

    .hero-textos h1 {
        font-size: 3.5rem;
    }

    .cards {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 4rem;
        text-align: left;
        align-items: flex-start;
    }

    .txt-cards {
        width: 45%;
        text-align: left;
    }

    .txt-cards h2 {
        font-size: 2.5rem;
    }

    .subcards {
        width: 50%;
    }

    .list-header {
        background-color: transparent;
    }

    .coments {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }

    .card-depoimento {
        width: 30%;
    }

    .sobre-rodape {
        flex-direction: row;
        justify-content: space-between;
        padding: 4rem 8rem;
        text-align: left;
        background-image: url(images/bg-simplify-section-desktop.svg);
    }

    .sobre-rodape h1 {
        max-width: 500px;
        font-size: 2.5rem;
    }

    .attribution {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 4rem 8rem;

        display: grid;
        grid-template-columns: 1fr 2fr 1fr;
        grid-template-areas:
            "brand links form"
            "brand links copy";
        gap: 2rem;
    }

    .footer-brand {
        grid-area: brand;
        align-items: flex-start;
        justify-content: space-between;
        height: 100%;
    }

    .links-rdp {
        grid-area: links;
        justify-content: center;
        gap: 8rem;
    }

    .footer-form {
        grid-area: form;
        justify-self: end;
    }

    .copyright {
        grid-area: copy;
        justify-self: end;
        align-self: end;
    }
}
