/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Gabarito", sans-serif;
    line-height: 140%;
    color: #222;
    font-size: 18px;
    background-color: #FCFAFF;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Gabarito", sans-serif;
    line-height: 140%;
    color: #222222;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

h1 {
    font-size: 3rem;
    font-weight: 600;
    margin: 1rem 0;
}

h2 {
    font-size: 2.4rem;
    font-weight: 600;
    margin: 0.8rem 0;
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
}

h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

a {
    color: #4F5CEE;
}

a:hover {
    opacity: 0.7;
}


header {
    padding: 12px 24px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
}

.medium-container {
    max-width: 800px;
    margin: 0 auto;
}

.medium-container .header {
    text-align: center;
}

.header-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    margin-top: 2rem;
}

.header-content {
    display: flex;
    flex-direction: column;
    column-gap: 16px;
    justify-content: center;
}

.logo {
    max-height: 32px;
}

.logo img {
    height: 32px; /* Adjust size as needed */
    
}

nav ul li a {
    text-decoration: none;
    color: #222;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}
.hamburger div {
    width: 24px;
    height: 2px;
    background: #222;
}

.menu {
    list-style: none;
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}
.menu li {
    display: inline;
        }
.menu a {
    text-decoration: none;
}

.main {
    padding: 4rem 1rem;
}

.main-container {
    max-width: 1280px;
    margin: 1.5rem auto;
}

.content ul,
.content ol {
    padding: 0 0 16px 32px;
}

.content ul li,
.content ol li {
    padding: 8px 0;
}

.content p {
    margin-bottom: 12px;
    text-align: justify;
}

.hero {
    background-color: rgba(233,218,250,0.3);
    padding: 4rem 1.5rem;
    text-align: center;
}

.content {
    max-width: 1080px;
    margin: 1.5rem auto;
    padding: 0 1.5rem;
}

.legal-content-grid {
    grid-template-rows: auto;
    grid-template-columns: .5fr 1fr;
    align-content: start;
    align-items: start;
    position: relative;
    display: grid;
    gap: 32px;
}

.legal-menu-wrapper {
    padding-top: 0;
    position: sticky;
    top: 4rem;
}

.legal-menu-title p {
    opacity: 0.5;
    text-transform: uppercase;
    padding: 4px 8px;
}

.legal-menu-item {
    padding: 4px 8px;
    border-radius: 4px;
}

.legal-menu-link {
    color:#222222;
    text-decoration:none;
}

.legal-menu-item:hover {
    background-color: #f8f8f8;
}

.list-item-no-decoration {
    list-style-type: none;
}

table th, td {
    padding: 12px;
    border: 1px solid #eaeaea;
    text-align: left; 
}

table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    margin: 12px 0;
}

td {
    vertical-align: top;
}

.primary-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 18px;
    color: #FFFFFF;
    background-color: #B700D4;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid #B700D4;
    opacity:1;
    transition: background 1s;
}

.primary-button:hover {
    background-color:#680079;
    color: #ffffff;
    border: 1px solid #680079;
    opacity: 1;
}

.primary-button.small {
    padding: 8px 16px;
}

.secondary-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 18px;
    color: #253D4F;
    background-color: transparent;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid #253D4F;
    box-shadow: 2px 2px 0px #253D4f;
    opacity:1;
    transition: background 1s;
}

.secondary-button:hover {
    background-color:#4F5CEE;
    color: #ffffff;
    opacity: 1;
}

.call-to-action {
    background-color: #ffffff;
    padding: 4rem 1rem;
}

.main-container .description {
    display: flex;
    align-items: center;
    width: 100%;
    column-gap: 32px;
    justify-content: space-between;
}

.description-content,
.description h2 {
    width: 50%;
    padding: 1.6rem;
}


.description p {
    font-size: 1.2rem;
}

.description h2 {
    background: -webkit-linear-gradient(30deg, #B700D4, #2B0060);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-center {
    text-align: center;
}

.demo {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.demo-store-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    border: 3px solid #253D4F;
    box-shadow: 6px 6px 0px #253D4F;
    border-radius: 1.5rem;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-card {
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    text-align: left;
    flex-direction: column;
    gap: 1rem;
    
}

.benefit-icon-wrapper {
    max-width: 90px;
    max-height: 90px;
}

.benefit-icon {
    height: 80px;
    width: auto;
}

.pricing {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.pricing h2 {
    color: #FFF;
}

.pricing-container {
    display: flex;
    justify-content: center;
}

.pricing-card {

    padding: 2rem;
    align-items:center;
    text-align: left;
}

.pricing-card .price {
    font-size: 2rem;
    line-height: 140%;
}
.pricing-card .amount {
    font-size: 1rem;
    line-height: 140%;
    opacity: 0.8;
    margin-bottom: 1rem;
    
}

.pricing-card-content a {
    margin-bottom: 0.5rem;
}

.pricing-card-content p {
    opacity: 0.6;
}

.pricing-card .price {
    font-weight: 600;
}

footer {
    background: rgb(145,74,232);
background: linear-gradient(145deg, rgba(145,74,232,1) 0%, rgba(78,17,153,1) 45%, rgba(43,0,96,1) 100%);
    text-align: center;
    padding: 4rem 16px;
    color: #FFF;
}

.full-container {
    overflow: hidden;
    position: relative;
}

.marquee-infinite-slide-wrapper {
    display: block;
    width: 100vw;
    overflow: visible;
    padding: 0 0 4rem 0;
}

.marquee-infinite-slide-box {
  white-space: nowrap;
  will-change: transform;
  animation: marquee-infinite-slide-wrapper 6s linear infinite;
  width: 100%;
  height: auto;
}

.header-video {
    height:460px;
}

@keyframes marquee-infinite-slide-wrapper {
  from { transform: translateX(-10%); }
  to { transform: translateX(0%); }
}

.marquee-infinite-slide-box:hover {
	animation-play-state: paused;
}

.steps-container {
    display: flex;
    column-gap: 32px;
    justify-content: center;
    align-items: center;
    width: 100%
}

.steps-content {
    width: 30%;
    text-align: left;
}

.steps-video {
    width: 68%;
}

.steps-wrapper {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    padding: 1rem 0;
}

.steps-wrapper .step {
    display: flex;
    align-items: center;
    column-gap: 16px;
}

.step-count {
    font-size: 2rem;
    line-height: 100%;
    background-color: #E9DAFA;
    border-radius: 1rem;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.steps-text {
    display: flex;
    column-gap: 16px;
    align-items: center;
    background: #e9d9fa;
    border-radius: 16px;
    padding: 8px 16px;
    justify-content: center;
}

.steps-text img {
    width: 16px;
}

@media (max-width:991px) {
    .legal-content-grid {
        grid-template-columns:1fr;
    }
    .legal-menu-wrapper {
        position: unset;
    }
    .steps-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap:16px;
    }
}

@media (max-width:768px) {
    .description h2,
    .description-content {
        width: 100%;
        padding: 0;
    }
    
    .description {
        flex-direction: column;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .steps-content,
    .steps-video {
        width: 100%;
        margin-bottom: 16px;
    }
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        padding: 16px;
            }
        .menu.active {
            display: flex;
        }
        .hamburger {
                display: flex;
            }
}

@media (max-width: 479px) {
	.marquee-infinite-slide-box {
        animation: marquee-infinite-slide-wrapper 10s linear infinite;
    }
}