@import url('http://fonts.googleapis.com/css2?family=Lato');

* {
    margin: 0;
    padding: 0;
}

:root {
    --white: #fff;
    --dark1: #34344e;
    --dark2: #3a415a;
    --dark3: #566981;
    --dark4: #89a7b1;
    --dark5: #cbdad5;
    --dark6: #2f2f46;
    --cyan1: #70e3ea;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark2);
}

::-webkit-scrollbar-thumb {
    background: var(--dark2);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark4);
}

body {
    background-color: var(--dark1);
    height: 100vh;
    width: 100vw;
    font-family: 'Lato', sans-serif;
    font-size: bold;
}

header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    width: 100%;
    max-width: 100%;
    gap: 1rem;
    flex-wrap: wrap;
    padding: .8rem;
    background-color: var(--dark6);
}


.modal {
    background-color: aliceblue;
    color: var(--cyan1);
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    align-items: center;
    width: 400px;
    height: 350px;
    border-radius: 12px;
    display: none;
    z-index: 99;
}

.modal h2 {
    margin-bottom: 20px;
    text-align: center;
    align-items: center;
}


input {
    width: 280px;
    height: 28px;
    display: block;
    align-items: center;
    margin-left: 58px;
    margin-bottom: 8px;
    border-radius: 5px;
}

textarea {
    width: 280px;
    height: 70px;
    border-radius: 5px;
    align-items: center;
    margin-bottom: 10px
}

.btnModal {
    border: none;
    background-color: var(--cyan1);
    margin: 15px;
}

.box-img-header {
    height: 100%;
}

.img-logo {
    max-width: 90px;
    cursor: pointer;
    border-radius: 5px;
}

nav {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links {
    text-decoration: none;
    color: var(--white);
}

.nav-links:hover {
    color: var(--dark4);
    transition: .4s;
    text-decoration: underline;
}

.box-btn-actions {
    display: flex;
    gap: 1rem;
}

:is(button, .link-action) {
    padding: .6rem;
    font-size: .9rem;
    border-radius: 6px;
    cursor: pointer;
    transition: .4s;
}

.btn-action {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-whats {
    background-color: rgb(20, 180, 20);
    width: 250px;
    height: 52px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: underline;
    font-weight: bold;
    color: black;
}

.btn-ico {
    background-color: rgb(20, 180, 20);
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

.btn-action:hover {
    background-color: var(--dark3);
    border: 1px solid var(--dark3);
}

.link-action {
    text-decoration: none;
    width: 180px;
    text-align: center;
}

main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

section {
    padding: 4rem;
}

.first-section {
    display: flex;
    justify-content: space-evenly;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
    padding: 9rem;
    margin-top: 10rem;
}

.first-section>div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 300px;
}

h1 {
    font-size: 4rem;
    color: var(--white);
    letter-spacing: 5px;
}

strong {
    color: var(--cyan1);
}

.first-section {
    color: var(--white);
}

.box-img-main {
    max-width: 500px;
    padding: 1rem;
}

.img-profile {
    border-radius: 30%;
    width: 420px;
    margin-top: 5rem;
}

:is(.second-section, .fourth-section) {
    background-color: var(--dark2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}


.second-section ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.second-section ul li {
    color: rgb(180, 82, 180);
    letter-spacing: 2px;
    font-weight: bold;
}

.second-section ul li:hover {
    color: var(--dark4);
    transition: .4s;
    transform: scale(1.08);
    cursor: pointer;
}

.title {
    color: var(--dark5);
}

.third-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.third-section>div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.third-section>div img {
    width: 100%;
    max-width: 420px;
    border-radius: 10px;
}

.third-section>div p {
    font-weight: bold;
    padding: 2rem;
    max-width: 500px;
    color: var(--white);
}

.fourth-section>img {
    border-radius: 15px;
    width: 800px;
    max-width: 130%;
}


.fifth-section>div {
    display: flex;
    padding: 2rem;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.fifth-section>div img {
    width: 200px;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
}

.fifth-section>div img:hover {
    transform: scale(1.05);
    cursor: pointer;
}


.fifth-section h2 {
    text-align: center;
    justify-content: center;
}

footer {
    background-color: var(--dark6);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

footer>div {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

footer>p {
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark5);
    font-weight: bold;
}

/* Responsividade */
@media (max-width: 768px) {
    .img-logo {
        height: auto;
    }

    header {
        max-width: 100%;
    }

    nav {
        flex-direction: column;
        gap: 1rem;
    }

    .box-btn-actions {
        flex-direction: column;
    }

    .first-section {
        margin-top: 12rem;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 3rem;
    }

    .box-img-main,
    .img-profile {
        max-width: 100%;
    }

    .second-section ul {
        flex-direction: column;
        gap: 1rem;
    }

    .third-section>div {
        flex-direction: column;
    }

    .fifth-section>div {
        flex-direction: column;
        max-width: 100%;
    }

    footer>div {
        text-align: center;
    }
}

@media (max-width: 480px) {

    header {
        max-width: 100%;
    }

    .btn-action {
        margin-right: 10px;
    }

    .img-logo {
        height: auto;
    }

    h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .link-action,
    .btn-action {
        font-size: 0.8rem;
    }

    .third-section>div p {
        padding: 1rem;
    }

    .fifth-section>div {
        flex-direction: column;
        max-width: 100%;
    }
}