@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    max-width: 100%;
    overflow-x: hidden;
}

header {
    display: flex;
}

nav {
    height: 80px;
    display: flex;
}

img {
    width: 100%;
    height: 100%;
    max-height: 50vh;
    padding: 20px;
}

button {
    cursor: pointer;
}

h2 {
    font-size: 25px;
}

a {
    text-decoration: none;
    color: black;
    font-weight: 700;
    font-size: 15px;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style-type: none;
}

p {
    line-height: 1.5;
}

.purple {
    color: #6353fe;
}

.not-allowed {
    cursor: not-allowed;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header__logo {
    display: flex;
    align-items: center;
}

.header__logo--img {
    width: 60px;
    padding: 10px;
}

.header__title {
    padding-right: 10px;
}

.header__nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header__link--login {
    margin-left: 40px;
}


.header__link--main {
    margin-left: 20px;
    border: 2px;
    padding: 5px 20px;
    margin-right: 10px;
    border-radius: 20px;
    font-size: 15px;
    background-color: #6353fe;

    transition: all 300ms ease;
}

.header__link--text {
    color: white;
}

.header__link--text:hover {
    text-decoration: none;
}

.header__link--main:hover {
    text-decoration: none;
}

.header__link--main:active {
    transform: translateY(1px);
}

.header__link {
    text-decoration: none;
}

.header__link:hover {
    text-decoration: underline;
}

container:target, div:target {
    outline: 4px solid #6353fe;
    outline-offset: -4px;
    border-radius: 10px;
    transition: outline 300ms ease;
}

@keyframes highlight-border {
    0% {
        outline: 4px solid #6353fe;
        outline-offset: -4px;
    }
    50% {
        outline: 4px solid rgba(99, 83, 264, 0.5);
        outline-offset: -4px;
    }
    100% {
        outline: 4px solid rgba(99, 83, 254, 0);
    }
}

container:target, div:target {
    border-radius: 100px;
    animation: highlight-border 2.5s ease-out forwards;
}

.btn__menu {
    background-color: transparent;
    font-size: 40px;
    text-align: center;
    border: none;
    color: #6a5bef;
    display: none;
}

.menu__backdrop {
    position: absolute;
    background-color: #242424;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    
    transition: all 300ms ease;
}

.menu--open .menu__backdrop {
    visibility: visible;
    opacity: 1;
}

.menu--open {
    max-height: 1000vh;
    overflow-y: hidden;
}

body .menu--open {
    overflow: hidden;
}

.menu__links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    width: 50%;
    margin: 10px;
}

.menu__list {
    width: 100%;
    align-items: center;
    text-align: center;
}

.menu__list a {
    font-size: 40px;
}

.menu__link {
    padding: 32px 0;
    color: white;
}

.header__link--main--mobile {
    margin-left: 20px;
    border: 2px;
    padding: 5px 20px;
    margin-right: 10px;
    border-radius: 20px;
    font-size: 15px;
    background-color: #6353fe;

    transition: all 300ms ease;
}

.header__link--text--mobile {
    color: white;
}

.header__link--text--main:hover {
    text-decoration: none;
}

.header__link--main--main:hover {
    text-decoration: none;
}

.header__link--main--mobile:active {
    transform: translateY(1px);
}

.btn__menu--close {
    position: absolute;
    right: 20px;
    top: 10px;
    padding: 8px;
    color: white;
}

.home__row {
    padding-top: 50px;
}

.home__content {
    max-width: 600px;
    padding: 40px 20px;;
}

.home__title--text {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a202c;
}

.home__title--desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 32px;
}

.home__title--form {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 9999px;
    padding: 6px;
    max-width: 440px;
    box-shadow: 0 4px 6px -1px srgba(0, 0, 0, 0.05);
    transition: border-color 200ms ease;
}

.home__title--form:focus-within {
    border-color: #6353fe;
}

.email-input {
    flex-grow: 1;
    border: none;
    background: transparent;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #2d3748;
    outline: none;
}

.email-input::placeholder {
    color: #a0aec0;
}

.email-button {
    background-color: #6353fe;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 9999px;
    cursor: not-allowed;
    transition: background-color 200ms ease, transform 100ms ease;
}

.email-button:hover {
    background-color: #5040e6;
}

.email-button:active {
    transform: scale(0.98);
}

.home__content {
    display: flex;
    flex-direction: column;
    width: 40%;
}

.home__title--customers {
    display: flex;
    flex-direction: column;
}

.customers__desc {
    padding-top: 100px;
    color: rgba(0, 0, 0, 0.254);
}

.customers__img {
    width: 300px;
    height: auto;
    padding: 0;
    padding-top: 10px;
    opacity: 0.5;
}

.home__content--img {
    width: 60%;
}

.row__features {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.features {
    padding: 80px 0;
}

.features__title {
    text-align: center;
    padding: 20px 10px;
    width: 100%;
    max-width: 650px;
}

.features__title--main {
    font-size: 15px;
    margin-bottom: 30px;
}

.features__title--title {
    font-size: 45px;
    margin-bottom: 20px;
}

.features__desc {
    color: rgb(136, 136, 136);
}

.features__card {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.feature__card {
    display: flex;
    align-items: flex-start;
    width: calc(100% / 3);
    padding: 24px;
    gap: 16px;
}

.card__icon--container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f3f4f6;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.card__icon--container {
    color: #6353fe;
    font-size: 18px;
}

.card__text--container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card__title {
    margin-bottom: 5px;
}

.row__quality {
    padding-top: 100px;
}

.quality__work--card-info {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.quality__work--card {
    width: 50%;
}

.quality__work--text {
    padding: 10px;
    font-size: 15px;
}

.quality__work--title {
    padding: 10px;
    font-size: 40px;
}

.quality__work--desc {
    font-size: 15px;
    color: gray;
    padding: 10px;
}

.quality__work--btn {
    align-self: flex-start;
    margin: 10px;
    padding: 10px 30px;
    border-radius: 200px;
    background-color: #6353fe;
    color: white;
    font-size: 15px;
    cursor: not-allowed;

    transition: all 300ms ease;
}

.quality__work--btn:hover {
    background-color: #3f31ba;
}

.quality__work--btn:active {
    transform: translateY(1px);
}

.row__steps {
    padding: 100px;
    gap: 80px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.steps__image {
    width: 100%;
}

.steps__text {
    width: 50%;
}

.steps__text--steps {
    padding: 10px;
    font-size: 15px;
    width: 100%;
}

.steps__text--title {
    padding: 10px;
    font-size: 45px;
    width: 100%;
}

.steps__card {
    padding: 10px;
    display: flex;
    gap: 15px;
    width: 100%;
}

.steps__number {
    color: rgba(128, 128, 128, 0.402);
}

.steps__text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.steps__title {
    font-size: 20px;
}

.steps__desc {
    font-size: 15px;
    color: rgb(128, 128, 128);
}

.row__values {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 100px;
}

.values__text {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px;
}

.values__text--values {
    font-size: 15px;
}

.values__title {
    font-size: 45px;
}

.values__desc {
    color: gray;
    font-size: 15px;
}

.values__image {
    padding: 10px;
    width: 50%;
}

.row__pricing {
    display: flex;
    flex-direction: column;
    padding-top: 100px;
}

.pricing__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;

    width: 100%;
    max-width: 800px;
}

.pricing__text--pricing {
    font-size: 15px;
}

.pricing__title {
    font-size: 40px;
}

.pricing__desc {
    font-size: 15px;
    color: gray;
    padding-bottom: 40px;
    width: 400px;
}

.pricing__cards {
    display: flex;
    gap: 20px;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    width: 100%;
}

.pricing__card {
    width: calc(100% / 3);
    display: flex;
    flex-direction: column;
}

.card__pricing {
    padding: 15px 0;
}

.card__pricing--name {
    padding: 10px;
    font-size: 20px;
}

.card__pricing--price {
    padding: 10px;
    font-size: 40px;
    font-weight: 800;
}

.card__pricing--freq {
    padding: 10px;
    padding-bottom: 25px;
    font-size: 15px;
    color: gray;
}

.card__feat {
    padding: 40px 0;
    border-top: solid 2px rgba(87, 87, 87, 0.269);
    border-bottom: solid 2px rgba(87, 87, 87, 0.269);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card__feat--for {
    font-weight: 700;
    font-size: 25px;
}

.card__feat--include {
    font-weight: 400;
    font-size: 18px;
    color: gray;
}

.card__1, .card__3 {
    background-color: white;
    border: solid 2px rgba(87, 87, 87, 0.269);
    border-radius: 10px;
}

.card__1 {
    border-top: solid 10px rgb(0, 128, 70);
}

.card__2 {
    background-color: rgb(45, 134, 252);
    border: solid 2px rgb(255, 255, 255);
    border-top: solid 10px rgb(45, 134, 252);
    border-radius: 10px;
    color: white;
}

.card__pricing--white {
    color: white;
}

.card__white {
    border: solid 2px rgb(255, 255, 255);
}

.card__3 {
    border-top: solid 10px rgb(202, 73, 94);
}

.card__btn {
    padding: 40px 10px;
    margin: 0 auto;
}

.card__btn button {
    padding: 15px 40px;
    border-radius: 20px;
    border: none;
}

.btn__1 button{
    background: #008046;
    color: white;
    cursor: not-allowed;
    position: relative;
    overflow: hidden;
    z-index: 1;

    transition: all 300ms ease;
}

.btn__1 button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #008046, #00D173);
    z-index: -1;
    transition: opacity 300ms ease;
}

.btn__1 button:hover::before {
    opacity: 0;
}

.btn__1 button:active {
    transform: translateY(1px);
}

.btn__2 button {
    background: white;
    cursor: not-allowed;

    transition: all 300ms ease;
}

.btn__2 button:hover {
    background: rgb(175, 175, 175);
}

.btn__2 button:active {
    transform: translateY(1px);
}

.btn__3 button {
    background-color: #A22F42;
    color: white;
    cursor: not-allowed;
    position: relative;
    overflow: hidden;
    z-index: 1;

    transition: all 300ms ease;
}

.btn__3 button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #A22F42, #DA818F);
    z-index: -1;

    transition: opacity 300ms ease;
}

.btn__3 button:hover::before {
    opacity: 0;
}

.btn__3 button:active {
    transform: translateY(1px);
}

.row__testimonials {
    padding-top: 100px;
    display: flex;
    justify-content: space-evenly;
    align-items:center;
    gap: 20px;
}

.testimonials__image {
    width: 50%;
}

.testimonials__text {
    width: 50%;
}

.testimonials__text--testimonials {
    font-size: 15px;
    padding: 10px;
}

.testimonials__title {
    font-size: 40px;
    padding: 10px;
}

.testimonials__desc {
    font-size: 15px;
    color: gray;
    padding: 10px;
}

.get__started {
    padding-top: 100px;
}

.row__started {
    margin-top: 100px;
    margin-bottom: 100px;
    background-color: #6a5bef;
    border-radius: 10px;
    color: white;
}

.started__container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 100px 10px;
    width: 100%
}

.started__text {
    width: 50%;
    display: flex;
    align-items: center;
}

.started__description {
    padding: 0 40px;
    margin: 0 auto;
    width: 80%;
    font-size: 25px;
    line-height: 1.3;
}

.started__buttons {
    width: 50%;
    text-align: center;
    display: flex;
    justify-content: space-evenly;
    gap: 10px;
}

.started__buttons button {
    font-size: 20px;
    padding: 20px 40px;
    border-radius: 1000px;
}

.started__btn {
    background-color: rgb(255, 115, 0);
    color: white;
    border: none;
    cursor: not-allowed;

    transition: all 300ms ease;
}

.started__btn:hover {
    background-color: rgb(255, 68, 0);
}

.started__btn:active {
    transform: translateY(1px);
}

.contact__btn {
    background-color: transparent;
    border: solid 2px gray;
    color: white;
    cursor: not-allowed;

    transition: all 300ms ease;
}

.contact__btn:hover {
    border: solid 2px black;
}

.contact__btn:active {
    transform: translateY(1px);
}

footer {
    background-color: #6a5bef;
    color: white;
}

.row__footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.footer__links {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    width: 100%;
}

.footer__link--title {
    margin-top: 100px;
    font-size: 20px;
}

.footer__link--column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px;
    width: calc(100% / 5);
}

.footer__link--column a {
    color: white;
    font-weight: 400;
}

.footer__navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;

    margin-top: 30px;
    margin-bottom: 20px;
}

.footer__navbar--logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__navbar--logo img {
    width: 100px;
    height: auto;
}

.footer__navbar--copyright {
    font-size: 14px;
}

.footer__navbar--copyright h3 {
    font-weight: 400;
}

.footer__navbar--social {
    display: flex;
    gap: 20px;
}

.navbar__social {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    color: black;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;

    transition: all 300ms ease;
}

.navbar__social:hover {
    background-color: #e2e8f0;
    transform: scale(1.1);
}

.slide-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1000ms cubic-bezier(0.25, 1, 0.5, 1);
}

.slide-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1000ms cubic-bezier(00.25, 1, 0.5, 1);
}

.animate-container.active .slide-left,
.animate-container.active .slide-right {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 760px) {
    .header__link--login {
        margin-left: 10px;
    }

    .header__link--main {
        margin-left: 0;
    }

    .home__row {
        width: 80%;
        display: flex;
        flex-direction: column;
    }

    .home__content {
        width: 100%;
    }

    .home__content--img {
        width: 100%;
    }

    .row__features {
        width: 80%;
    }

    .features__card {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .feature__card {
        width: 80%;
    }

    .row__quality {
        width: 80%;
        display: flex;
        flex-direction: column;
    }

    .quality__work--card-info {
        width: 100%;
    }

    .quality__work--card {
        width: 100%;
    }

    .row__steps {
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px 0;
    }

    .steps__image {
        width: 100%;
    }
    
    .row__values {
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .values__text {
        width: 100%;
    }

    .values__image {
        width: 100%;
    }

    .row__pricing {
        width: 80%;
        display: flex;
        flex-direction: column;
    }

    .pricing__text {
        text-align: center;
    }

    .pricing__cards {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .pricing__card {
        width: 100%;
    }

    .row__testimonials {
        width: 80%;
        display: flex;
        flex-direction: column;
    }

    .testimonials__image {
        width: 100%;
    }

    .testimonials__text {
        width: 100%;
    }

    .row__started {
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .started__container {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 80px;
    }

    .started__text {
        width: 100%;
        text-align: center;
    }

    .started__buttons {
        width: 100%;
    }

    .row__footer {
        width: 80%;
    }

    .footer__navbar {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer__navbar--logo {
        order: 1;
    }

    .footer__navbar--social {
        order: 2;
        margin: 20px;
    }

    .footer__navbar--copyright {
        order: 3;
    }
}

@media (max-width: 550px) {
    .nav {
        display: none;
    }

    .btn__menu {
        display: block;
    }

    .home__row {
        display: flex;
        flex-direction: column;
    }

    .home__content {
        width: 100%;
    }

    .home__content--img {
        width: 80%;
    }

    .row__features {
        width: 100%;
    }

    .features__card {
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .features__title {
        width: 80%;
    }

    .feature__card {
        width: 100%;
    }

    .row__quality {
        display: flex;
        flex-direction: column;
    }

    .quality__work--card-info {
        width: 80%;
    }

    .quality__work--card {
        width: 80%;
    }

    .row__steps {
        width: 80%;
        display: flex;
        flex-direction: column;
        padding: 50px 0;
        gap: 40px;
    }

    .steps__image {
        width: 100%;
    }

    .steps__image img {
        width: 100%;
    }

    .steps__image--img {
        width: 100%;
    }

    .row__values {
        width: 80%;
        display: flex;
        flex-direction: column;
    }

    .values__text {
        width: 100%;
    }

    .values__image {
        width: 100%;
    }

    .row__pricing {
        width: 80%;
    }

    .pricing__cards {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .pricing__card {
        width: 100%;
    }

    .row__testimonials {
        width: 80%;
        display: flex;
        flex-direction: column;
    }

    .testimonials__image {
        width: 100%;
    }

    .testimonials__text {
        width: 100%;
    }

    .row__started {
        width: 80%;
    }

    .started__container {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        gap: 80px;
    }

    .started__text {
        width: 100%;
        text-align: center;
    }

    .started__buttons {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .row__footer {
        width: 80%;
    }

    .footer__links {
        display: flex;
        flex-direction: column;
    }

    .footer__link--column {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 20px;
        margin: 20px auto;
    }

    .footer__link--title {
        margin: 0;
    }

    .footer__navbar {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .footer__navbar--logo {
        width: 100%;
        display: flex;
        justify-content: center;
        order: 1;
    }

    .footer__navbar--social {
        order: 2;
        margin: 20px;
    }

    .footer__navbar--copyright {
        order: 3;
        width: 100%;
        text-align: center;
    }
}