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


html, body {
    width: 100%;
    overflow-x: hidden;
}
.demo-section {
    padding: 150px 0;
    background-color: #fff;
}

.demo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.demo-content {
    flex: 1;
    min-width: 300px;
}

.demo-content h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 150%;
    margin-bottom: 1.5rem;
    width: 640px;
}

.demo-content h1 span {
    color: #6c2bd9;
}

.demo-content p {
    font-size: 21px;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 150%;
    font-weight: 400;
}

.demo-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}



.demo-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: #555;
    font-size: 1rem;
}

.demo-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6c2bd9;
    font-size: 1.5rem;
    line-height: 1;
}

.demo-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #6c2bd9;
    color: #fff;
    padding: 12px 24px;
    border-radius: 0px;
    border-bottom-right-radius: 16px;
    border-top-left-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    font-weight: 400;
    font-size: 16px;
    width: 200px;
}

.btn-primary:hover {
    background-color: #5a1ccf;
}

.btn-outline {
    border: 1px solid #6544E5;
    color: #6544E5;
    background-color: #EFE9FC;
    padding: 12px 24px;
    border-radius: 0px;
    border-bottom-right-radius: 16px;
    border-top-left-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
    font-weight: 400;
    font-size: 16px;
    width: 200px;
    text-align: center;
}

.btn-outline:hover {
    background-color: #6c2bd9;
    color: #fff;
}

.demo-image {
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-image img {
    width: 500px;
}

/*product feture section*/
.features-section {
    padding: 5rem 2rem;
    background-color: #fff;
    text-align: center;
}

.features-container {
    max-width: 1100px;
    margin: 0 auto;
}

.features-container h2 {
    font-size: 48px;
    font-weight: 700;
    color: #343434;
    margin-bottom: 1rem;
    line-height: 150%;
    letter-spacing: 0%;
}

.features-container p {
    font-size: 21px;
    color: #555555;
    margin-bottom: 3rem;
    line-height: 150%;
    letter-spacing: 0%;
    font-weight: 400;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 24px;
    justify-items: end;
}

.feature-item {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 280px;
    box-shadow: 20px 20px 30px rgba(59, 57, 182, 0.363);
    border-radius: 16px;
    animation: breathe-shadow 3s ease-in-out infinite;
    padding: 16px;
    background-color: #fff;
    
}
@keyframes breathe-shadow {
  0%, 100% {
    box-shadow: 20px 20px 30px rgba(59, 57, 182, 0.20);
  }
  50% {
    box-shadow: 20px 20px 50px rgba(59, 57, 182, 0.45);
  }
}

.feature-item:nth-child(1) {
  animation-delay: 0ms;
}
.feature-item:nth-child(2) {
  animation-delay: 150ms;
}
.feature-item:nth-child(3) {
  animation-delay: 300ms;
}
.feature-item:nth-child(4) {
  animation-delay: 250ms;
}
.feature-item:nth-child(5) {
  animation-delay: 400ms;
}
.feature-item:nth-child(6) {
  animation-delay: 550ms;
}

.feature-item:hover{
    animation: none;
    box-shadow: 20px 20px 50px rgba(59, 57, 182, 0.45);
    transform: scale(1.3)!important;
    z-index: 5;
}

.feature-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 21px;
    color: #000000;
    margin-bottom: 0.5rem;
    line-height: 150%;
    letter-spacing: 0%;
    font-weight: 400;
}

.feature-item p {
    font-size: 14px;
    color: #555555;
    line-height: 132%;
    font-weight: 400;
}

.benefits-section {
    padding: 5rem 2rem;
    background-color: #f8f7fc;
    text-align: center;
}

.benefits-container {
    max-width: 1100px;
    margin: 0 auto;
}

.benefits-container h2 {
    font-size: 48px;
    font-weight: 700;
    color: #343434;
    margin-bottom: 3rem;
    line-height: 150%;
    letter-spacing: 0%;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    animation: benefit-shadow-rgb 6s linear infinite;
    background-color: #fff; 
    transition: box-shadow 0.5s, background-color 0.5s;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0px 4px 15px #0000002E;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    height: 380px;
    width: 265px;
}

@keyframes benefit-shadow-rgb {
  0%   { box-shadow: 0px 4px 30px #6545E5; }
  33%  { box-shadow: 0px 4px 30px #F9EBE0; }
  66%  { box-shadow: 0px 4px 30px #301598; }
  100% { box-shadow: 0px 4px 30px #6545E5; }
}
.benefit-card:nth-child(1) { animation-delay: 100ms; background-color: #F9EBE0; }
.benefit-card:nth-child(2) { animation-delay: 350ms; background-color: #EFE9FC;}
.benefit-card:nth-child(3) { animation-delay: 250ms; background-color: #F9EBE0;}
.benefit-card:nth-child(4) { animation-delay: 400ms; background-color: #EFE9FC; }

.benefit-card img {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 21px;
    font-weight: 400;
    color: #343434;
    margin-bottom: 1.5rem;
    line-height: 150%;
}

.benefit-card p {
    font-size: 14px;
    color: #555555;
    line-height: 132%;
    font-weight: 400;
    letter-spacing: 0%;
}

.benefits-2 {
    background: #f8f7fc;
    padding: 80px 20px;
}

.benefits-2 .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.image-container {
    position: relative;
    width: 550px;
    height: 655px;
    overflow: hidden;
    box-shadow: 0px 4px 15px #0000002E;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.indicator {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
}

.dot {
    width: 16px;
    height: 16px;
    border: 1px solid #333;
    border-bottom-right-radius: 4px;
    border-top-left-radius: 4px;
    background: transparent;
}

.dot.active {
    background: #6b3df0;
    border-color: #6b3df0;
}

.text-content {
    flex: 1;
    max-width: 500px;
}

.text-content h2 {
    font-size: 48px;
    color: #343434;
    font-weight: 700;
    line-height: 150%;

}

.subtext {
    margin: 20px 0;
    font-size: 21px;
    color: #555555;
    line-height: 150%;
    font-weight: 400;
}

.highlight-group {
    margin-top: 1.5rem;
    position: relative;
}

.highlight-item {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 0px;
    border-bottom-right-radius: 16px;
    border-top-left-radius: 16px;
    background: transparent;
    transition: background 0.3s ease;
    color: #9D9D9D;
    font-size: 16px;
    font-weight: 400;
}

.highlight-item.active {
    background: linear-gradient(90deg, #6c5ce7, #5f27cd);
    color: white;
    box-shadow: 0px 5px 20px rgba(108, 92, 231, 0.3);
}
#carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s ease;
    opacity: 1;
}
.dot, .highlight-item {
    transition: background 0.6s ease, color 0.6s ease, border-color 0.6s ease, box-shadow 0.6s ease;
}
/* Service Section */
.service-section {
    padding: 150px 0;
    background-color: #fff;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
}

.service-text {
    flex: 1;
    text-align: left;
}

.service-text h2 {
    font-size: 48px;
    font-weight: 700;
    color: #343434;
    margin-bottom: 1rem;
}

.service-text p {
    font-size: 21px;
    color: #555555;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 150%;
}

.service-buttons {
    display: flex;
    gap: 1rem;
}

.service-buttons .btn-primary {
    background-color: #6c2bd9;
    color: #fff;
    padding: 12px 24px;
    border-radius: 0px;
    border-bottom-right-radius: 16px;
    border-top-left-radius: 16px;
    text-decoration: none;
    font-weight: 400;
    transition: background 0.3s;
    font-size: 16px;
    line-height: 150%;

}

.service-buttons .btn-primary:hover {
    background-color: #5a1ccf;
}

.service-buttons .btn-outline {
    border: 1px solid #6545E5;
    color: #6545E5;
    padding: 12px 24px;
    border-radius: 0px;
    border-bottom-right-radius: 16px;
    border-top-left-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
}

.service-buttons .btn-outline:hover {
    background-color: #6c2bd9;
    color: #fff;
}

.service-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: #ffffff;
    padding: 36px;
    border-bottom-right-radius: 24px;
    border-top-left-radius: 24px;
    box-shadow: 0px 4px 15px #0000003D;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    width: 265px;
    height: 280px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.49)
}

.service-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 21px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 0.5rem;
    line-height: 150%;
}

.service-card p {
    font-size: 16px;
    color: #555555;
    line-height: 150%;
    font-weight: 400;
}
  /* CTA Section */
.cta {
    background: #7b3aed;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cta p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #e0e0e0;
    text-align: center;
}

.cta h2 {
    font-size: 48px;
    margin-bottom: 35px;
    color: #fff;
    text-align: center;
    line-height: 150%;
    font-weight: 700;
}


.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.cta .btn {
    padding: 12px 25px;
    border-radius: 0px;
    border-bottom-right-radius: 16px;
    border-top-left-radius: 16px;
    font-size: 1rem;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.cta .btn.primary {
    background: #fff;
    color: #7b3aed;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}

.cta .btn.primary:hover {
    background: #e5e5e5;
}

.cta .btn.secondary {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}

.cta .btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}


  /* Responsividade */
@media (max-width: 1024px) {
    .demo-container, .features-grid, .benefits-grid, .service-grid {
        flex-direction: row;
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .demo-image img{
        width: 400px;
    }
    .service-container{
        flex-direction: column;
    }
    .demo-buttons{
        justify-content: flex-end;
    }
    .service-buttons{
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .demo-content h1, .features-container h2, .benefits-container h2, .service-text h2 {
        font-size: xx-large;
        width: auto;
    }
    .demo-content{
        text-align: center;
    }

    .demo-content p, .features-container p, .benefit-card p, .service-text p {
        font-size: medium;
    }

    .feature-item h3, .benefit-card h3, .service-card h3 {
        font-size: 18px;
    }

    .cta h2 {
        font-size: x-large;
    }

    .cta p {
        font-size: medium;
    }
    .demo-content ul li{
        padding-left: 0;
    }
    .demo-buttons {
        align-content: center;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .demo-image img {
    max-width: 400px;
    max-height: 400px;
    }
    .features-grid{
        display: flex;
    }
    .benefits-grid{
        display: flex;
    }
    .benefit-card{
        height: auto;
    }
    .benefits-2 .container{
        flex-direction: column;
    }
    .image-container{
        width: auto;
    }
    .demo-image img{
        width: auto;
    }
    .service-container{
        flex-direction: column;
        align-items: center;
    }
    .service-grid{
        display: flex;
    }
    .service-buttons{
        flex-direction: column;
        align-items: center;
    }
    .service-text{
        text-align: center;
    }
}
