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

:root {
    font-size: 62.5%; /* 1rem = 10px */
    --primary-color: #26b771;
    --second-color: #FF412F;
    --rest-color: #26b771;
    --light-color: #f5f5f5;
    --yellow-color: #fac14c;
    --bg-color: #fef9f6;
    --shadow: #6c6c6c3c;
    --nav-height: 9.2rem;
    --paragraph: #222128;
    --black: #3e3e3e;
    --footer-bg: #52aeb7;
}

html {
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: "Markazi Text", serif;
    font-size: 1.6rem;
    text-align: center;
    overflow: overlay;
    background-color: var(--bg-color);
}

body::-webkit-scrollbar {
    width: 7px;
}

body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(128, 128, 128, 0);
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.wrapper {
    width: min(50rem, 100%);
    margin-inline: auto;
    padding-inline: 2.4rem;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

/* Menu */
#navigation button.open-menu path[stroke*="#00856F"],
#contact li path {
    stroke: var(--light-color);
}

#navigation.scroll button.open-menu path[stroke*="#00856F"] {
    stroke: var(--light-color);
}

#navigation .wrapper svg:nth-child(1) {
    transform: scaleX(-1);
}

nav {
    display: flex;
    height: var(--nav-height);
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100vw;
}

nav .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: radial-gradient(circle, #20ce7a 6%, #22a465 100%);
    border-radius: 0 0 30px 30px;
    padding: 0 40px;
    box-shadow: inset 0 -5px 25px #26b771;
}

.logo img {
    width: 200px;
}


nav.scroll {
    top: calc(var(--nav-height) - 2*(var(--nav-height)));
    z-index: 2;
    height: var(--nav-height);
    animation: smooth-appear 0.6s ease forwards;
}

@keyframes smooth-appear {
    to{
      top: 0;
      opacity:1;
    }
}

nav button {
    background: none;
    border: none;
    cursor: pointer;
}

#navigation a.button {
    background-color: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    border: 0px solid var(--primary-color);
    border-radius: 50%;
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    color: var(--primary-color);
    box-shadow: inset 0 0 15px #dadada78;
}

nav .menu,
nav .close-menu {
    position: fixed;
}

/* Menu Expanded */
.menu,
.close-menu,
body.menu-expanded .open-menu {
    opacity: 0;
    visibility: hidden;
}

body.menu-expanded .menu,
body.menu-expanded .close-menu {
    opacity: 1;
    visibility: visible;
}

body.menu-expanded .close-menu {
    margin-left: -100px;
}

body.menu-expanded a.button {
    position: relative;
    right: 0;
}

body.menu-expanded .logo,
body.menu-expanded a.button,
body.menu-expanded .close-menu {
    visibility: visible;
    animation: logoappear 0.6s ease forwards;
}

@keyframes logoappear {
    from {
        top:-100px;
    }
    to{
      top: 0;
      opacity:1;
    }
}

body.menu-expanded {
    overflow: hidden;
}

body.menu-expanded > :not(nav) {
    visibility: hidden;
}

.menu {
    transform: translateY(-100%);
}

body.menu-expanded .menu {
    top: 0;
    left: 0;
    background: radial-gradient(circle, #20ce7a 6%, #22a465 100%);
    height: 100vh;
    width: 100vw;
    padding-top: var(--nav-height);
    transition: transform 600ms;
    transform: translateY(0);
    border-radius: 0 0 50px 50px;
}

.menu ul:nth-child(1) {
    display: flex;
    flex-direction: column;
    gap: 4.8rem;
    margin-top: 6rem;
    font-weight: bold;
    font-size: 2.4rem;
    line-height: 3.1rem;
}

.menu ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 3rem;
}

.menu .button:hover {
    background-color: var(--third-color);
    color: var(--light-color);
}

body.menu-expanded .logo,
body.menu-expanded button {
    position: relative;
    z-index: 100;
}

.social-links-menu {
    display: flex;
    gap: 3.2rem;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}

/* Buttons */
.button-store {
    margin: -50px auto 0 auto;
    width: fit-content;
    background: radial-gradient(circle, #26b771, #20ce7a) padding-box,
              linear-gradient(to bottom, #26b771, #74c79f) border-box;
    border: 1px solid transparent;
    border-radius: 4rem;
    font-size: 2.4rem;
    line-height: 2.3rem;
    text-decoration: none;
    display: flex;
    padding: 1.8rem 3.8rem;
    align-items: center;
    gap: 10px;
    color: var(--light-color);
    -moz-box-shadow: 0 0 15px var(--shadow);
    -webkit-box-shadow: 0 0 15px var(--shadow);
    box-shadow: 0 0 15px var(--shadow);
    z-index: 1;
}

.button-store:hover {
    background: radial-gradient(circle, #20ce7a 6%, #26b771 100%) padding-box,
              linear-gradient(to bottom, #26b771, #20ce7a) border-box;
}

#button-store-desktop {
    display: none;
}

a.button-store i {
    font-size: 1.4rem;
}

a.button-store span {
    font-weight: bold;
    color: #fff;
}

.header-content {
    position: relative;
    margin-top: 130px;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
}

.box-one {
    padding: 0 30px;
    position: relative;
}

.title-text-desktop h1 {
    font-family: "Vollkorn", serif;
    font-size: 3.5rem;
    text-align: center;
    background: -webkit-linear-gradient(#20ce7a, #26b771);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-text-desktop h1 span {
    background: -webkit-linear-gradient(#20ce7a, #26b771);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.box-two img {
    position: relative;
    z-index: -1;
}

.box-three {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 50px auto 0 auto;
    gap: 40px;
}

.stats {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
}

.stat-icon {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 15px var(--shadow);
}

.stats:nth-child(1) {
    color: var(--primary-color);
}

.stats:nth-child(2) {
    color: #ffd000;
}

.stats:nth-child(3) {
    color: var(--second-color);
}

.stats .stat-text h4 {
    color: var(--paragraph);
    text-align: left;
    font-size: 2rem;
}

.stats .stat-text p {
    color: var(--paragraph);
    text-align: left;
    font-size: 1.2rem;
    font-family: Montserrat, sans-serif;
    opacity: 0.5;
    width: 169px;
}

.bg-img-one {
    position: absolute;
    right: 0;
    opacity: 1;
}

.bg-img-two {
    position: absolute;
    transform: scaleX(-1);
    left: 0;
    top: 200px;
    opacity: 1;
}

.bg-img-three {
    position: absolute;
    transform: scaleX(-1);
    right: 0;
    top: 550px;
    opacity: 1;
}

    .box-three img {
        width: 40px;
    }

    .box-three #fireworks {
        position: absolute;
        right: 0;
        top: -10%;
        width: 40px;
        transform: rotate(50deg);
    }

    .box-three #crab {
        position: absolute;
        left: -20%;
        bottom: -5%;
    }

    .box-three #beach {
        position: absolute;
        right: 0;
        bottom: -10%;
    }

.bg-img-four {
    position: absolute;
    transform: scaleX(-1);
    left: 0;
    top: 750px;
    opacity: 1;
}

.avatar-comment-desktop {
    display: none;
}

.avatar-comment {
    display: flex;
    gap: 15px;
    margin-top: 50px;
    padding: 0 30px;
}

.avatar-img img {
    border-radius: 50%;
    width: 150px;
    border: 3px solid var(--light-color);
    box-shadow: 0 0 15px var(--shadow);
}

.avatar-comment p {
    color: var(--paragraph);
    font-size: 1.5rem;
    font-family: Montserrat, sans-serif;
    opacity: 0.8;
    padding: 5px 0 0 0;
    text-align: left;
}

/* About */

#about {
    margin-top: 100px;
    width: 100%;
    height: auto;
    background: radial-gradient(circle, #20ce7a 6%, #22a465 100%);
}

#about .bg-image {
    width: 100%;
    height: auto;
    background-image: url(/assets/bg-about2.png);
    background-repeat: repeat;
    
}

.about-content-left {
    padding: 50px 30px 100px 30px;
}

.about-content-left h1 {
    font-family: "Vollkorn", serif;
    color: var(--light-color);
    font-size: 3rem;
    text-align: center;
}

.about-content-left-items {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-content-left-items img {
    width: 40px;
    height: 50px;
}

.about-content-left-text {
    margin-top: 30px;
    background: var(--light-color);
    padding: 30px 20px;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 0 15px var(--shadow);
    text-align: left;
}

.about-content-left-text p {
    color: var(--paragraph);
    font-size: 1.5rem;
    font-family: Montserrat, sans-serif;
    opacity: 0.8;
    margin-bottom: 10px;
}

.about-content-left-text p:nth-child(3){
    margin-bottom: 0px;
}

.about-content-left-text span {
    font-weight: bold;
    background: -webkit-linear-gradient(#26b771, #26b771);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-content-left-text img {
    position: absolute;
    width: 100px;
    height: auto;
    right: -30px;
}

.about-content-right {
    margin-top: 100px;
    padding-bottom: 100px;
}

.about-content-right img {
    position: relative;
}

.about-content-right .button-store {
        margin: -50px auto 0 auto;
        width: fit-content;
        background: radial-gradient(circle, #fff, #fff) padding-box,
              linear-gradient(to bottom, #26b771, #74c79f) border-box;
        border: 1px solid transparent;
        border-radius: 4rem;
        font-size: 2.4rem;
        line-height: 2.3rem;
        text-decoration: none;
        display: flex;
        padding: 1.8rem 3.8rem;
        align-items: center;
        gap: 10px;
        color: var(--primary-color);
        -moz-box-shadow: 0 0 15px var(--shadow);
        -webkit-box-shadow: 0 0 15px var(--shadow);
        box-shadow: 0 0 15px var(--shadow);
        position: relative;
        z-index: 1;
}

/*
.about-content-right .button-store:hover {
    background: radial-gradient(circle, #74c79f 6%, #74c79f 100%) padding-box,
              linear-gradient(to bottom, #ff857a, #ffbc7a) border-box;
}*/

.about-content-right a.button-store span {
    color: #26b771;
}

/* Benefits */

#benefits {
    padding-bottom: 10rem;
    position: relative;
}

.benefits-content {
    margin: 0 auto;
    padding-top: 7rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

#benefits .benefits-content h1 {
    font-family: "Vollkorn", serif;
    font-size: 3rem;
    padding: 0 3rem;
    background: -webkit-linear-gradient(#26b771, #26b771);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#benefits .benefits-content .content p {
    font-size: 1.3rem;
    font-family: Montserrat, sans-serif;
    color: var(--paragraph);
    filter: opacity(0.5);
}

#benefits .benefits-content:last-child {
    padding-top: 3rem;
}

#benefits .wrapper-ben {
    display: flex;
    flex-direction: column;
}

#benefits .wrapper-ben .ben-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 0px solid var(--shadow);
    border-radius: 50%;
    margin: 0 auto;
    color: var(--primary-color);
    box-shadow: 0 0 15px var(--shadow);
    background-color: var(--light-color);
    font-size: 3rem;
}

#benefits .wrapper-ben .fa-solid {
    font-size: 3rem;
}

.ben-a, .ben-b, .ben-c {
    width: 250px;
    height: 300px;
    padding: 5rem 0 2rem 0;
    border: 1px solid #58fa4c35;
    margin: 30px 50px 0 50px;
    background-color: #4cfa5a0c;
}

#benefits .ben-title p {
	font-weight: bold;
    font-size: 2.3rem;
	margin: 1rem 0 1rem 0;
    padding: 0 2rem;
    font-family: "Markazi Text", serif;
    color: var(--primary-color);
}

#benefits .ben-text p {
    padding: 0 2rem;
    font-size: 1.3rem;
    font-family: Montserrat, sans-serif;
    color: var(--paragraph);
    filter: opacity(0.5);
}

#benefits img {
    margin-top: 30px;
    position: absolute;
    right: 10%;
    width: 90px;
}

/* How to Use */

#howtouse {
    margin-top: 38px;
    padding-bottom: 10rem;
    position: relative;
    background-color: #4cfa5a26;
    background-image: url(/assets/bg-how.png);
}

.howtouse-content {
    margin: 0 auto;
    padding-top: 7rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

#howtouse .howtouse-content h1 {
    font-family: "Vollkorn", serif;
    font-size: 3rem;
    padding: 0 3rem;
    background: -webkit-linear-gradient(#26b771, #26b771);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#howtouse .howtouse-content .content p {
    font-size: 1.3rem;
    font-family: Montserrat, sans-serif;
    color: var(--paragraph);
    filter: opacity(0.5);
}

#howtouse .howtouse-content:last-child {
    padding-top: 3rem;
}

#howtouse .wrapper-how {
    display: flex;
    flex-direction: column;
}

.how-a, .how-b, .how-c {
    position: relative;
    padding: 0rem 0 2rem 0;
    margin: 0px 30px;
    width: 250px;
}

#howtouse img {
    max-width: 250px;
}

#howtouse .how-text p {
    padding: 0 0rem;
    font-size: 1.9rem;
    font-family: "Vollkorn", serif;
    color: var(--black);
    margin-bottom: 50px;
}

#howtouse .how-text p:nth-last-child() {
    margin-bottom: 0px;
}

#howtouse .how-text p span,
#howtouse .how-text p span a {
    color: var(--primary-color);
    font-weight: bold;
}

#howtouse .button-store {
    margin: 0px auto 0 auto;
}

/* Buying */

#buying {
    margin-top: 0;
    width: 100%;
    height: auto;
}

#buying .bg-image {
    width: 100%;
    height: auto;
    background: var(--bg-color);
}

.buying-content-left {
    padding: 50px 30px 100px 30px;
}

.buying-content-left h1 {
    font-family: "Vollkorn", serif;
    font-size: 3rem;
    text-align: center;
    background: -webkit-linear-gradient(#20ce7a, #26b771);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.buying-content-left-items {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.buying-content-left-items img {
    width: 40px;
    height: 50px;
}

.buying-content-left-content {
    margin-top: 30px;
    border: var(--primary-color) 3px dashed;
    border-radius: 30px;
    padding: 5px;
}

.buying-content-left-text {
    background: var(--light-color);
    padding: 30px 20px;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 0 15px var(--shadow);
    text-align: left;
    background: radial-gradient(circle, #20ce7a 6%, #26b771 100%);                        ;
}

.buying-content-left-text p {
    color: var(--light-color);
    font-size: 1.5rem;
    font-family: Montserrat, sans-serif;
    opacity: 0.8;
    margin-bottom: 10px;
}

.buying-content-left-text p:nth-child(3){
    margin-bottom: 0px;
}

.buying-content-left-text span {
    font-weight: bold;
    color: var(--light-color);
}

.buying-content-left-final-text {
    background: var(--bg-color);
    border-radius: 10px;
    padding: 20px;
}

.buying-content-left-final-text span {
    text-align: center;
    color: var(--primary-color);
}



.buying-content-left-text img {
    position: absolute;
    width: 100px;
    height: auto;
    right: -30px;
}

.buying-content-right {
    margin-top: 100px;
    padding-bottom: 100px;
}

.buying-content-right img {
    position: relative;
}

.buying-content-right .button-store {
        margin: -50px auto 0 auto;
    width: fit-content;
    background: radial-gradient(circle, #26b771, #20ce7a) padding-box,
              linear-gradient(to bottom, #26b771, #74c79f) border-box;
    border: 1px solid transparent;
    border-radius: 4rem;
    font-size: 2.4rem;
    line-height: 2.3rem;
    text-decoration: none;
    display: flex;
    padding: 1.8rem 3.8rem;
    align-items: center;
    gap: 10px;
    color: var(--light-color);
    -moz-box-shadow: 0 0 15px var(--shadow);
    -webkit-box-shadow: 0 0 15px var(--shadow);
    box-shadow: 0 0 15px var(--shadow);
    z-index: 1;
}

.buying-content-right .button-store:hover {
    background: radial-gradient(circle, #26b771, #20ce7a) padding-box,
              linear-gradient(to bottom, #26b771, #74c79f) border-box;
}

#buying a.button-store span {
    font-weight: bold;
    color: #fff;
}

.buying-content-right a.button-store span {
    color: #fff;
}


/* Feedback */
#feedback {
    background: radial-gradient(circle, #26b771 6%, #74c79f 100%);
}

#feedback .wrapper {
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 100px 0;
}

#feedback .wrapper h3 {
    font-family: "Vollkorn", serif;
    font-size: 3rem;
    color: var(--light-color);
    text-align: center;
    padding: 0 20px 60px 20px;
}

.swiper {
    user-select: none;
    -webkit-user-select: none;
    width: 365px;
}

#feedback .feedback-slider-wrapper {
    overflow: hidden;
    max-width: 300px;
    margin: 0 70px 55px;
    padding: 10px;
    user-select: none;
}

#feedback .feedback-slider-wrapper .swiper-slide-button {
    color: var(--light-color);
    margin-top: -40px;
}

#feedback .feedback-slider-wrapper .swiper-pagination-bullet {
    background: var(--light-color);
    height: 12px;
    width: 12px;
  }

#feedback .feedback-box {
    background-color: var(--light-color);
    border-radius: 25px;
    margin: 0 auto;
    box-shadow: 0 0 15px var(--shadow);
    padding: 12px;
    cursor: pointer;
    transition: 1s;
    user-select: none;
    max-width: 350px;
    height: auto;
}

#feedback .feedback-box:hover {
    -xpedu-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

#feedback .feedback-top {
    position: absolute;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
}

#feedback .feedback-text {
    padding: 20px 5px 20px 10px;
    font-family: Montserrat, sans-serif;
    font-size: 1.2rem;
    color: var(--paragraph);
    height: 150px;
    text-align: left;
}

#feedback .feedback-text p:nth-child(2) {
    font-weight: bold;
    padding-top: 20px;
    color: var(--primary-color);
}

#feedback .feedback-img {
    padding: 4px;
    max-width: 70px;
    background: url(/assets/google-bg.svg) no-repeat;
    background-size: 68px;
}

#feedback .feedback-img img {
    border-radius: 50%;
    width: 60px;
    padding: 2px;
}

#feedback .feedback-bottom {
    padding: 10px 0 0 0;
    display: flex;
    gap: 5px;
    align-items: center;
}

#feedback .feedback-name {
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--primary-color);
    text-align: left;
    line-height: 13px;
}

#feedback .feedback-name p:nth-child(2) {
    font-weight: normal;
    color: var(--paragraph);
    font-family: Montserrat, sans-serif;
    font-size: 1rem;
    font-style: italic;
}

#feedback .button-store {
    margin: 0 auto;
    background: radial-gradient(circle, #fff, #fff) padding-box,
              linear-gradient(to bottom, #26b771, #74c79f) border-box;
              color: var(--primary-color);
}

#feedback .button-store:hover {
    background: radial-gradient(circle, #fff, #fff) padding-box,
              linear-gradient(to bottom, #26b771, #74c79f) border-box;
}

#feedback a.button-store span {
    font-weight: bold;
    color: var(--primary-color);
}

/* Pricing */

#pricing {
    padding-bottom: 10rem;
    position: relative;
}

.pricing-content {
    margin: 0 auto;
    padding-top: 7rem;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
}

#pricing .pricing-content h1 {
    font-family: "Vollkorn", serif;
    font-size: 3rem;
    padding: 0 3rem;
    background: -webkit-linear-gradient(#20ce7a, #26b771);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-b, .pricing-c {
    display: none;
}

.pricing-a {
    width: 350px;
    min-width: 350px;
    height: auto;
    padding: 2rem;
    border: 1px solid #58fa4c35;
    border-radius: 20px;
    margin: 30px 0px;
    background: linear-gradient(8deg, rgba(51, 245, 80, 0) 20%, rgba(57, 245, 51, 0.154) 100%);
}

#pricing .pricing-year {
    background: radial-gradient(circle, #75e0ac 6%, #26b771 100%);
    border-radius: 12px;
    padding: 6px;
    display: flex;
    width: 70px;
}

#pricing .pricing-year p {
    color: var(--light-color);
    font-family: Montserrat, sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 0 10px;
}

#pricing .pricing-header-text p {
    font-family: Montserrat, sans-serif;
    color: var(--black);
    text-align: left;
    padding-top: 15px;
}

#pricing .pricing-header-img {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

#pricing .pricing-header-img img {
    width: 200px;
}

#pricing .princing-value {
    margin-top: 60px;
    display: flex;
    align-items: end;
    gap: 10px;
    border-bottom: 1px solid #5afa4c35;
    padding-bottom: 15px;
}

#pricing .princing-value p {
    color: var(--primary-color);
    font-family: Montserrat, sans-serif;
    font-size: 4rem;
    font-weight: bold;
}

#pricing .princing-value p:nth-child(2) {
    color: var(--shadow);
    font-style: italic;
    font-weight: normal;
    font-size: 1.8rem;
    padding-bottom: 10px;
}

#pricing .pricing-ben {
    margin-top: 30px;
    border-bottom: 1px solid #60fa4c35;
    padding-bottom: 30px;
}

#pricing .pricing-ben-items {
    display: flex;
    align-items: center;
    gap: 15px;
}

#pricing .pricing-ben-items i {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: bold;
}

#pricing .pricing-ben-items p {
    color: var(--black);
    font-family: Montserrat, sans-serif;
    text-align: left;
}

#pricing .button-store {
    width: 100%;
    margin: 20px auto 0 auto;
    background: var(--primary-color);
    border-radius: 15px;
    justify-content: center;
}

#pricing a.button-store span {
    font-weight: bold;
    color: #fff;
}

#last-section {
    height: 150px;
    background: var(--footer-bg);
}

/* Footer */

.footer {
    height: 120px;
    background: linear-gradient(0deg, #26b771 6%, #75e0ac 100%);
    box-shadow: inset 0 -5px 25px #26b771;
    border-radius: 30px 30px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 20px;
    width: min(112rem, 100%);
    margin: 0 auto;
}

.footer .social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
}

.footer .termos-de-uso a {
    color: var(--light-color);
}

.social-media-desktop {
    display: none;
}

.footer .footer-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer .social-media a {
    color: var(--light-color);
    font-size: 3rem;
}

.footer .footer-bottom p {
    line-height: 25px;
    font-size: 2rem;
    text-align: center;
    color: var(--light-color);
}

.footer .footer-img,
.footer .footer-bottom-desktop {
    display: none;
}

/*#pricing img {
    margin-top: 30px;
    position: absolute;
    right: 10%;
    width: 90px;
}*/

/* Bsck to top */
#backToTopButton circle {
    fill: var(--primary-color);
}

#backToTopButton {
    position: fixed;
    bottom: 1rem;
    right: 2.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: 200ms;
}

#backToTopButton.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* PopUp Form */
input:focus {
    box-shadow: 0 0 0 0;
    outline: 0;
}
/* Chrome e outros */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.overlay-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 100;
}

.popup-box {
    background: var(--light-color);
    padding: 24px;
    border: 0px solid var(--third-color);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    width: 320px;
    text-align: center;
    opacity: 0;
    transform: scale(0.8);
    animation: fadeInUp 0.5s ease-out forwards;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 25px;
}

.popup-box img {
    width: 200px;
}

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

.form-label {
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--paragraph);
    text-align: left;
}

.form-input {
    padding: 10px;
    margin-bottom: 20px;
    border: 0px solid #dddddd;
    border-radius: 8px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.btn-submit {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-submit {
    background-color: var(--second-color);
    color: var(--light-color);
    font-size: 14px;
}

.btn-close-popup {
    padding: 5px 5px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    width: 32px;
    height: 32px;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 12px;
    background-color: var(--primary-color);
    color: var(--light-color);
    font-weight: bold;
    font-size: 18px;
    position: absolute;
    top: -23px;
    right: -15px;
}

.btn-input {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.btn-input i {
    font-size: 30px;
    color: #25d366;
}

.btn-submit:hover,
.btn-close-popup:hover {
    background-color: var(--primary-color);
}

/* Keyframes for fadeInUp animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation for popup */
.overlay-container.show {
    display: flex;
    opacity: 1;
}


/*  Responsivo */
@media (max-width: 344px) {

    .swiper {
        max-width: 300px;
    }

    #feedback .feedback-text {
        height: 255px;
    }

}

@media (min-width: 1025px) {

    #feedback .feedback-slider-wrapper {
        max-width: none;
    }

    .swiper {
        width: 830px;
        max-width: none;
    }

}


/* Screen larger than 900px? 3 columns */
@media (min-width: 1080px) {

    /* Geral */
    body {
        overflow: auto;
    }

    .wrapper {
        width: min(112rem, 100%);
    }

    /* Reset */
    nav#navigation .wrapper * {
        margin: 0;
        padding: 0;
        visibility: initial;
        display: initial;
        opacity: initial;
        flex-direction: initial;
        position: initial;
        font-size: initial;
        font-weight: initial;
        transform: initial;
        color: initial;
        background: initial;
        filter: initial;
    }

    /* Navigation Desktop */
    nav#navigation .close-menu,
    nav#navigation .open-menu,
    nav#navigation .social-links-menu {
        display: none;
    }

    nav#navigation .menu {
        display: flex;
        align-items: center;
        justify-content: space-around;
        width: 80%;
    }

    nav#navigation .menu ul:nth-child(1) {
        display: flex;
        justify-content: space-between;
        gap: 4rem;
    }

    nav#navigation .menu ul li a {
        color: var(--light-color);
        font-size: 2.3rem;
    }

    nav#navigation a.button {
        background-color: var(--light-color);
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1.5rem;
        border: 0px solid var(--primary-color);
        border-radius: 50%;
        font-weight: normal;
        font-size: 14px;
        line-height: 18px;
        text-transform: uppercase;
        color: var(--light-color);
        box-shadow: inset 0 0 15px #dadada78;
    }

    nav#navigation a.button:active {
        box-shadow: inset 0 0 15px #dadada;
    }

    nav#navigation a.button i {
        color: var(--primary-color);
        font-weight: bold;
    }

    nav#navigation .menu a i {
        color: var(--light-color);
    }

    nav#navigation.scroll .menu ul li a {
        color: var(--light-color);
    }

    nav#navigation.scroll .menu a.button {
        background-color: var(--light-color);
        color: var(--primary-color);
    }

    nav#navigation.scroll .menu a i {
        color: var(--primary-color);
    }

    nav#navigation .menu li a {
        transition: opacity 0.4s;
        font-weight: 500;
    }

    nav#navigation .menu li a:hover {
        opacity: 1;
        font-weight: normal;
    }

    nav#navigation .menu li a::after {
        content: '';
        width: 0%;
        height: 2px;
        background-color: var(--light-color);
        display: block;
        position: relative;
        bottom: 0rem;
        left: 0rem;
        transition: width 0.2s;

    }

    nav#navigation.scroll .menu li a::after {
        background-color: #FFFFFF;
    }

    nav#navigation .menu li a.active::after,
    nav#navigation .menu li a:hover::after {
        padding-inline: 0.8rem;
        width: 30%;
    }

    nav#navigation .menu li a.active,
    nav#navigation .menu li a:hover {
        opacity: 1;
        font-weight: 500;
    }

    nav#navigation.scroll .menu li a.active,
    nav#navigation.scroll .menu li a:hover {
        opacity: 1;
        font-weight: 500;
    }

    /* Header */

    .bg-img-one, .bg-img-two,
    .bg-img-three, .bg-img-four,
    .avatar-comment {
        display: none;
    }

    #button-store-mobile {
        display: none;
    }

    #button-store-desktop {
        display: block;
    }

    .social-media-desktop {
        display: block;
    }

    #home .header-content {
        position: relative;
        max-width: 1080px;
        flex-direction: row;
        margin: 130px auto 0 auto;
        padding: 0 0;
        gap: 10px;
    }

    .box-one {
        width: 30%;
        padding: 0 20px 0 0;
    }

    .title-text-desktop {
        position: absolute;
        text-align: left;
    }

    .title-text-desktop h1 {
        text-align: left;
        line-height: 50px;
        letter-spacing: 0px;
    }

    .box-two {
        width: 45%;
        z-index: -1;
    }

    .box-three {
        width: 25%;
        gap: 50px;
        padding-top: 50px;
    }

    .box-one {
        padding-top: 30px;
    }

    .stats .stat-text p {
        width: 172px;
    }

    .box-three img {
        width: 58px;
    }

    .box-three #fireworks {
        right: 0;
        top: 0;
        width: 50px;
    }

    .box-three #crab {
        left: -20%;
        bottom: 5%;
    }

    .box-three #beach {
        right: 0;
        bottom: 0;
    }

    .social-media-desktop {
        display: flex;
        justify-content: flex-start;
        gap: 20px;
        padding-top: 20px;
    }

    .social-media-desktop a {
        color: var(--primary-color);
        font-size: 3rem;
    }

    #home .button-store {
        margin: 0 auto;
        position: absolute;
        bottom: 50px;
        width: 100%;
        background: radial-gradient(circle, #75e0ac 6%, #26b771 100%) padding-box,
        linear-gradient(to bottom, #75e0ac, #26b771) border-box;
        border: 1px solid transparent;
    }

    #home .button-store:hover {
        background: radial-gradient(circle, #75e0ac 20%, #26b771 100%) padding-box,
        linear-gradient(to bottom, #75e0ac, #26b771) border-box;
    }

    #home .button-store span {
        padding: 0 8px;
        color: #fff;
    }

    #home .box-two img {
        width: auto;
    }

    #home .avatar-comment-desktop {
        display: flex;
        gap: 15px;
        margin-top: 150px;
        padding: 0;
        align-items: center;
    }

    #home .avatar-comment-desktop p {
        color: var(--paragraph);
        font-size: 1.2rem;
        font-family: Montserrat, sans-serif;
        opacity: 0.8;
        padding: 5px 0 0 0;
        text-align: left;
    }

    #home .stats {
        justify-content: center;
    }

    /* About */

    #about .about-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 30px 0 30px 0;
        gap: 30px;
    }

    #about .about-content-left,
    #about .about-content-right {
        max-width: 700px;
        margin: 0 auto;
    }
    #about .about-content-left-items {
        position: relative;
    }

    #about .about-content-left-items img {
        position: absolute;
        right: 140px;
        bottom: 10px;
    }


    /* Benefits */

    #benefits .content {
        max-width: 500px;
    }

    #benefits .wrapper-ben {
        flex-direction: row;
    }

    #benefits .ben-a, .ben-b, .ben-c {
        margin: 30px 15px 0 15px;
    }

    /*How to use */

    #howtouse .howtouse-content .content {
        margin-bottom: 50px;
    }

    #howtouse .howtouse-content h1 {
        max-width: 700px;
    }

    #howtouse .wrapper-how {
        flex-direction: row;
    }

    /* Buying */

    #buying .buying-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 30px 0 30px 0;
        gap: 30px;
    }

    #buying .buying-content-left,
    #buying .buying-content-right {
        max-width: 700px;
        margin: 0 auto;
    }
    #buying .buying-content-left-items {
        position: relative;
    }

    #buying .buying-content-left-items img {
        position: absolute;
        right: 140px;
        bottom: 10px;
    }

    /* Feedback */

    #feedback .wrapper h3 {
        max-width: 700px;
        margin: 0 auto;
    }

    #feedback .feedback-slider-wrapper {
        max-width: 100%;
    }

    /* Pricing */

    .pricing-b {
        display: block;
        max-width: 250px;
        height: auto;
        padding: 2rem;
        border: 1px solid #52aeb735;
        border-radius: 20px 0 0 20px;
        margin: 30px 0px;
        background: linear-gradient(8deg, #52aeb700 20%, #52aeb727 100%);
        opacity: 0.2;
    }

    #pricing .pricing-b .pricing-year {
        background: radial-gradient(circle, #fcbb7b 6%, #b78552 100%);
        border-radius: 8px;
        padding: 6px 2px;
        display: flex;
        width: 50px;
    }

    #pricing .pricing-b .pricing-year p {
        color: var(--light-color);
        font-family: Montserrat, sans-serif;
        font-size: 1rem;
        font-weight: bold;
        padding: 0 10px;
    }

    #pricing .pricing-b .pricing-header-text p {
        font-family: Montserrat, sans-serif;
        color: var(--black);
        text-align: left;
        padding-top: 15px;
        font-size: 1rem;
    }

    #pricing .pricing-b .pricing-header-img {
        display: flex;
        justify-content: center;
        margin-top: 40px;
    }

    #pricing .pricing-b .pricing-header-img img {
        width: 100px;
    }

    #pricing .pricing-b .princing-value {
        margin-top: 20px;
        display: flex;
        align-items: end;
        gap: 10px;
        border-bottom: 1px solid #52aeb735;
        padding-bottom: 15px;
    }

    #pricing .pricing-b .princing-value p {
        color: #b78552;
        font-family: Montserrat, sans-serif;
        font-size: 2rem;
        font-weight: bold;
    }

    #pricing .pricing-b .princing-value p:nth-child(2) {
        color: var(--shadow);
        font-style: italic;
        font-weight: normal;
        font-size: 0.8rem;
        padding-bottom: 5px;
    }

    #pricing .pricing-b .pricing-ben {
        margin-top: 15px;
        border-bottom: 1px solid #b7925235;
        padding-bottom: 15px;
    }

    #pricing .pricing-b .pricing-ben-items {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    #pricing .pricing-b .pricing-ben-items i {
        font-size: 1rem;
        color: #b78a52;
        font-weight: bold;
    }

    #pricing .pricing-b .pricing-ben-items p {
        color: var(--black);
        font-family: Montserrat, sans-serif;
        font-size: 1rem;
    }

    #pricing .pricing-b .button-store {
        width: 100%;
        margin: 20px auto 0 auto;
        background: var(--shadow);
        border-radius: 10px;
        justify-content: center;
        font-size: 1.5rem;
        padding: 8px 0;
    }

    #pricing .pricing-b a.button-store span {
        font-weight: bold;
        color: var(--shadow);
    }

    .pricing-c {
        display: block;
        max-width: 250px;
        height: auto;
        padding: 2rem;
        border: 1px solid var(--shadow);
        border-radius: 0px 20px 20px 0;
        margin: 30px 0px;
        background: linear-gradient(8deg, #a1acad00 20%, #73737327 100%);
        opacity: 0.3;
    }

    #pricing .pricing-c .pricing-year {
        background: radial-gradient(circle, #bab6ae 6%, #a7afb0 100%);
        border-radius: 8px;
        padding: 6px 2px;
        display: flex;
        width: 50px;
    }

    #pricing .pricing-c .pricing-year p {
        color: var(--light-color);
        font-family: Montserrat, sans-serif;
        font-size: 1rem;
        font-weight: bold;
        padding: 0 10px;
    }

    #pricing .pricing-c .pricing-header-text p {
        font-family: Montserrat, sans-serif;
        color: var(--shadow);
        text-align: left;
        padding-top: 15px;
        font-size: 1rem;
    }

    #pricing .pricing-c .pricing-header-img {
        display: flex;
        justify-content: center;
        margin-top: 40px;
    }

    #pricing .pricing-c .pricing-header-img img {
        width: 100px;
        filter: grayscale(100%);
    }

    #pricing .pricing-c .princing-value {
        margin-top: 20px;
        display: flex;
        align-items: end;
        gap: 10px;
        border-bottom: 1px solid var(--shadow);
        padding-bottom: 15px;
    }

    #pricing .pricing-c .princing-value p {
        color: var(--shadow);
        font-family: Montserrat, sans-serif;
        font-size: 2rem;
        font-weight: bold;
    }

    #pricing .pricing-c .princing-value p:nth-child(2) {
        color: var(--shadow);
        font-style: italic;
        font-weight: normal;
        font-size: 0.8rem;
        padding-bottom: 5px;
    }

    #pricing .pricing-c .pricing-ben {
        margin-top: 15px;
        border-bottom: 1px solid var(--shadow);
        padding-bottom: 15px;
    }

    #pricing .pricing-c .pricing-ben-items {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    #pricing .pricing-c .pricing-ben-items i {
        font-size: 1rem;
        color: var(--shadow);
        font-weight: bold;
    }

    #pricing .pricing-c .pricing-ben-items p {
        color: var(--shadow);
        font-family: Montserrat, sans-serif;
        font-size: 1rem;
    }

    #pricing .pricing-c .button-store {
        width: 100%;
        margin: 20px auto 0 auto;
        background: var(--shadow);
        border-radius: 10px;
        justify-content: center;
        font-size: 1.5rem;
        padding: 8px 0;
    }

    #pricing .pricing-c a.button-store span {
        font-weight: bold;
        color: var(--shadow);
    }

    #pricing {
        padding-bottom: 5rem;
    }

    /* Footer */
    .footer .footer-img {
        display: block;
    }

    .footer .footer-img img {
        width: 200px;
    }

    .footer {
        flex-direction: row;
        justify-content: space-around;
        align-items: end;
        height: 100px;
    }

    .footer .footer-right {
        margin-bottom: 10px;
    }

    .footer .social-media {
        margin-bottom: 0px;
    }

    .footer .footer-bottom {
        display: none;
    }

    .footer .footer-bottom-desktop {
        display: block;
    }

    .footer .footer-bottom-desktop p {
        line-height: 25px;
        font-size: 2rem;
        text-align: center;
        color: var(--light-color);
    }

}
