* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Hanken Grotesk", sans-serif;
    font-optical-sizing: auto;
}

html {
    scroll-behavior: smooth;
}

header {
    padding: 35px 0;
    background-color: #fff;
    position: sticky;
    top: 0px;
    z-index: 1;
    box-shadow: 1em 0.5em 1em #e4e9f1;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 15px;
    z-index: 1000;
    margin-left: auto;
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.menu-toggle:hover {
    background-color: rgba(241, 138, 65, 0.1);
}

.hamburger-icon {
    width: 24px;
    height: 18px;
    position: relative;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.line {
    width: 24px;
    height: 2px;
    background-color: #233831;
    transition: all 0.3s ease;
}

.menu-toggle.active .line-1 {
    transform: translateY(8px) rotate(45deg);
    background-color: #F18A41;
}

.menu-toggle.active .line-2 {
    opacity: 0;
}

.menu-toggle.active .line-3 {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #F18A41;
}

header nav li {
    display: inline;
    margin-right: 18px;
}

header nav li a {
    text-decoration: none;
    color: #233831;
}

header nav li a:hover {
    cursor: pointer;
    color: #F18A41;
    transition: 0.4s;
}

.special-button {
    font-weight: bold;
    border: none;
    cursor: pointer;
    padding: 15px 25px;
    background-color: #233831;
    color: #fff;
    transition: 0.3s;
    border-radius: 10px;
}

.special-button:hover {
    background-color: #F18A41;
    color: #fff;
}

.container {
    max-width: 1050px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

main {
    max-width: 1000px;
    margin: auto;
}

.section1 {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.section2 {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.content {
    padding: 0 16px;
}

.content h2 {
    font-size: 250%;
    margin-bottom: 15px;
    color: #233831;
}

.content h6 {
    width: fit-content;
    font-size: 15px;
    padding: 7px;
    background-color: #F0EEEA;
    border-radius: 15px;
    margin-top: 50px;
    margin-bottom: 10px;
    font-weight: 600;
}

.content h2+p,
.content p {
    color: #666;
    margin-bottom: 30px;
    line-height: 30px;
    font-size: 18px;
    font-weight: 400;
}

.content li {
    font-weight: bold;
    font-size: x-large;
    list-style: none;
    background-image: url(/imagens/check-mark.svg);
    background-repeat: no-repeat;
    background-size: 16px 16px;
    padding-left: 30px;
    background-position: 0 50%;
}

span {
    color: #F18A41;
    box-shadow: 0 0.1em;
}

.section1 img,
.section2 img {
    width: 48%;
    object-fit: cover;
    background-color: #F0EEEA;
    padding: 85px;
    border-radius: 10px;
    margin: 16px;
}

.wrapper {
    display: grid;
    grid-template-columns: 35% 35% 35%;
}

.wrapper img {
    background-color: #fff;
    width: fit-content;
    height: 20vh;
    padding: 0px;
    border-radius: 10px;
    margin-left: 20px;
    margin: 20px;
}

.wrapper div {
    background-color: #F0EEEA;
    margin: 20px;
    border-radius: 15px;
}

.wrapper div h3 {
    margin: 0px 0px 20px 20px;
    font-size: 22px;
    color: #233831;
}

.wrapper div p {
    margin: 0px 0px 50px 20px;
    color: #666;
    line-height: 30px;
    width: 80%;
}

#clients {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    background-color: #F0EEEA;
    margin: 0 auto;
}

#clients .content {
    display: inline-block;
    padding: 5px 10px;
    font-size: 20px;
    margin-bottom: 20px;
}

#clients p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    width: 80%;
    color: #666;
    margin-bottom: 10px;
}

#clients h6 {
    background-color: #fff;
}

#clients .special-button {
    padding: 15px 25px;
    margin-top: 15px;
    font-size: 17px;
    transition: 0.4s;
}

.left-section {
    flex: 1;
    padding-right: 20px;
}

.sticky-content {
    position: sticky;
    top: 100px;
}

#clients .right-section {
    flex: 1;
    padding-left: 20px;
}

.review {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.stars {
    color: #f39c12;
    font-size: 20px;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.reviewer-photo {
    width: 70px;
    height: 70px;
    padding: 0;
    border: 3px solid #F0EEEA;
    border-radius: 50%;
    margin-right: 15px;
}

.reviewer-name {
    font-size: 20px;
    width: 50%;
    margin-top: 15px;
}

#form {
    display: flex;
    justify-content: space-between;
    padding: 100px 40px;
    background-color: #233831;
    border-radius: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

#form h2 {
    font-size: 50px;
}

#form .content,
#form .content p {
    color: #fff;
}

#form .content p {
    line-height: 40px;
}

#form .special-button2 {
    font-weight: bold;
    border: none;
    cursor: pointer;
    padding: 15px 25px;
    margin-right: 20px;
    background-color: #F18A41;
    color: #fff;
    transition: 0.4s;
    border-radius: 10px;
}

#form .special-button3 {
    font-weight: bold;
    border: none;
    cursor: pointer;
    padding: 15px 25px;
    margin-right: 20px;
    background-color: #fff;
    color: #233831;
    transition: 0.4s;
    border-radius: 10px;
}

#form .special-button2:hover {
    background-color: #000;
    color: #fff;
}

#form .special-button3:hover {
    background-color: #666;
    color: #fff;
}

.features {
    margin-top: 40px;
}

.features li {
    display: inline;
    color: #fff;
    margin-right: 20px;
}

#form .content h6 {
    background-color: #344841;
}

#form .content h2 {
    color: #fff;
}

.form-container {
    background-color: #fff;
    width: 80%;
    height: 110%;
    padding: 45px;
    border-radius: 10px;
}

.form-container h1 {
    font-size: 35px;
    color: #233831;
    margin-bottom: 15px;
}

.form-container p {
    color: #233831;
    line-height: 28px;
    width: 80%;
    margin-bottom: 30px;
}

form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 25px;
}


input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 13px;
    border: 1px solid #ccc;
    background-color: #F0EEEA;
    border-radius: 10px;
    font-size: 15px;
}

input[type="checkbox"] {
    margin-right: 10px;
    background-color: #F18A41;
}

.footer {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding: 30px;
    border-top: 1px solid #F0EEEA;
    align-items: center;
}

footer p {
    color: #666;
}

.footer .policy {
    font-size: 30px;
    margin-left: 40px;
    color: #233831;
}

.footer .policy:hover {
    cursor: pointer;
    color: #F18A41;
    transition: 0.4s;
}

#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border: 2px solid #F89B42;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    text-decoration: none;
    color: #F89B42;
    font-size: 24px;
}

#scrollToTopBtn:hover {
    background-color: #F89B42;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
    }

    header {
        padding: 15px 0;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #fff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu li {
        margin: 15px 0;
        width: 100%;
    }

    .nav-menu .special-button {
        display: block;
        text-align: center;
        margin-top: 20px;
    }

    header nav {
        margin-top: 20px;
        width: 100%;
    }

    header nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    header nav li {
        display: block;
        margin-bottom: 10px;
    }

    .section1,
    .section2 {
        flex-direction: column;
    }

    .section1 img,
    .section2 img {
        width: calc(100% - 32px);
        padding: 40px;
        margin: 16px auto;
    }

    .content h2 {
        font-size: 200%;
    }

    .wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    #clients {
        flex-direction: column;
    }

    #clients .right-section {
        padding-left: 0;
        margin-top: 30px;
    }

    .sticky-content {
        position: static;
    }

    #form {
        padding: 50px 20px;
        flex-direction: column;
    }

    #form h2 {
        font-size: 36px;
    }

    .form-container {
        width: 100%;
        margin: 30px auto 0;
        max-width: 100%;
    }

    .footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer .profile,
    .footer .policy {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media screen and (max-width: 480px) {
    .content h2 {
        font-size: 150%;
    }

    .wrapper {
        grid-template-columns: 1fr;
    }

    .section1 .content,
    .section2 .content {
        min-width: 100%;
    }

    .section1 img,
    .section2 img {
        padding: 20px;
    }

    #form {
        padding: 30px 15px;
    }

    #form h2 {
        font-size: 28px;
    }

    .form-container {
        padding: 25px 15px;
    }

    .features li {
        display: block;
        margin-bottom: 15px;
    }

    #form .special-button2,
    #form .special-button3 {
        display: block;
        width: 100%;
        text-align: center;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .reviewer-name {
        font-size: 16px;
    }

    .footer .policy {
        font-size: 20px;
    }
}