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



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

.container, .flow-section, .features-2-content, .faq-container {
    max-width: 100%;
    overflow-x: hidden;
    padding: 9rem 1rem;
    overflow: hidden;
}
.hero {
    padding: 150px 0;
}

.container-hero {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero-text {
    flex: 1 1 100px;
    text-align: center;
    margin-left: 0 auto;
    margin-right: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.hero-text h1 {
    font-size: 64px;
    line-height: 150%;
    color: #343434;
    font-weight: 700;
}

.hero-text h1 span {
    color: #6545E5; /* roxo destacado */
}

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

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.btn {
    padding: 12px 25px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 400;
    transition: background 0.3s;
    border-bottom-right-radius: 16px;
    border-top-left-radius: 16px;
    line-height: 150%;
}

.primary {
    background: #6545E5;
    color: #fff;
}

.primary:hover {
    background: #5b24c7;
}

.secondary {
    background: #f3f4f6;
    color: #6545E5;
    border: 2px solid #6545E5;
}

.secondary:hover {
    background: #e5e7eb;
}

.hero-image {
    flex: 1 1 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    position: relative;
}
.image-frame {

    height: 775px;
    overflow: hidden;
    border-radius: 20px;
    border: #333 solid 11px;
    position: relative;
    background-color: #fff;
}


.features {
    text-align: center;
    padding: 50px 20px;
}

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

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

.features .features-text h2 span {
    color: #6545E5;
}

.features-cards {
    display: flex;
    justify-content: center;
}

.feature-card {
    background: #fff;
    padding: 20px;
    text-align: left;
    width: 380px;
    height: auto;
}

.feature-card .icon img {
    width: 50px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 24px;
    color: #000000;
    margin-bottom: 10px;
    line-height: 150%;
    font-weight: 500;
}

.feature-card p {
    font-size: 16px;
    color: #535353;
    margin-bottom: 75px;
    line-height: 150%;
    font-weight: 400;
    max-width: 265px;
}


.feature-card:nth-child(1) {
    background-color: #EFE9FC;
    border-top-left-radius: 40px ;
    box-shadow: -20px 30px 60px rgba(150, 119, 236, 0.747);
}

.feature-card:nth-child(2) {
    background-color: #6545E5;
    box-shadow: 0 30px 60px rgba(105, 55, 240, 0.836);

}
.feature-card:nth-child(2) h3,
.feature-card:nth-child(2) p,
.feature-card:nth-child(2) {
    color: #E6E6E6;
}

.feature-card:nth-child(3) {
    background-color: #F9EBE0;
    border-bottom-right-radius: 40px;
    box-shadow: 20px 30px 60px rgba(235, 144, 69, 0.678);
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-20px)!important;
   
}

.features-2 {
    text-align: center;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
}

.features-2 .features-2-text h2 {
    font-size: 54px;
    color: #343434;
    font-weight: 700;
}
.features-2 .features-2-text h2 span {
    color: #6545E5;
}

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

.features-2-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.features-2-image {
    flex: 1;
    position: relative;
    text-align: center;
}

.features-2-image video {
    max-width: 360px;
    border-top-right-radius:80px ;
    box-shadow: 80px 20px 100px rgba(108, 88, 218, 0.692);
    object-fit: cover;
    height: 670px;
}

.features-2-image .btn {
    position: absolute;
    bottom: 20px;
    left: 30px;
    width: 210px;
    height: 56px;
    font-size: 16px;
    border-radius: 0px;
    border-bottom-right-radius: 16px;
    border-top-left-radius: 16px;
    background: #6545E5;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
    font-weight: 400;
    line-height: 150%;
}

.features-2-image .btn:hover {
    background: #5b24c7;
}

.features-2-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #C4C4C4;
    border-top-left-radius: 50px;
    border-bottom-right-radius:60px ;
    width: 780px;
    justify-content: space-between;
}

.feature-number {
    font-size: 21px;
    font-weight: 400;
    color: #6545E5;
    line-height: 150%;
    background-color: #FFFFFF;       /* Fundo branco */
    border-radius: 50%;           /* Deixa o fundo circular */
    width: 40px;                  /* Largura do círculo */
    height: 40px;                 /* Altura do círculo */
    display: flex;                /* Centraliza o conteúdo */
    align-items: center;
    justify-content: center;
    box-shadow: 1px 1px #0000001F;
    border: 2px solid #F5F5F5;
}

.feature-item h3 {
    font-size: 21px;
    color: #000000;
    margin-bottom: 5px;
    max-width: 345px;
    font-weight: 400;
    line-height: 150%;
}

.feature-item p {
    font-size: 14px;
    color: #262626;
    margin: 0;
    max-width: 345px;
    line-height: 132%;
    font-weight: 400;
    text-align: left;
    padding-right: 20px;
}

/* Pricing Section */
.pricing {
    text-align: center;
    padding: 50px 20px;
}

.pricing .pricing-text h2 {
    font-size: 48px;
    color: #343434;
    font-weight: 700;
    line-height: 150%;
}
.pricing .pricing-text h2 span {
    color: #6545E5;
}

.pricing .pricing-text p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 30px;
}

.pricing-plans {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 5rem;
}

.plan {
    background: #fff;
    border-radius: 0px;
    border-bottom-right-radius: 16px;
    border-top-left-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    width: 360px;
    height: 625px;
    position: relative;

}

.plan.recommended {
    border: 1px solid #997EEE;
}

.plan .badge {
    background: linear-gradient(#F4CBAD, #FAE8DB, #F4CBAD);
    color: #000000;
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 0px;
    border-bottom-right-radius: 12px;
    border-top-left-radius: 12px;
    position: absolute;
    top: 18px;
    right: 90px;
}

.plan h3 {
    font-size: 14px;
    font-weight: 400;
    color: #4A4A4A;
    margin-bottom: 10px;
}

.plan .price {
    font-size: 36px;
    margin: 20px 0;
    font-weight: 600;
    color: #5b26b6;
}

.plan .price span {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

.plan .features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    text-align: left;
    line-height: 200%;
    margin-top: 10px;
}

.plan .features li {
    font-size: 14px;
    color: #7A7A7A;
    margin-bottom: 10px;
    font-weight: 400;
}

.plan .features li::before {
    content: "✔";
    color: #7b3aed;
    margin-right: 10px;
}
.plan .btn {
    padding: 10px 20px;
    text-decoration: none;
    transition: background 0.3s;
    border-radius: 0px;
    border-bottom-right-radius: 16px;
    border-top-left-radius: 16px;
    display: flex;
    justify-content: center;
    font-weight: 500;
    font-size: 18px;
}

.plan .btn.primary {
    background: #7b3aed;
    color: #fff;
}
.plan:nth-child(1) .btn.primary {
    background: transparent; /* Transparent background */
    color: #6545E5; /* Text color */
    border: 1px solid #C4C4C4; /* Outline color */
}

.plan:nth-child(1) .btn.primary:hover {
    background: #f9f9f9; /* Optional: Light background on hover */
    color: #6545E5; /* Keep the text color the same */
    border-color: #6545E5; /* Change the border color on hover */
}

.plan .btn.primary:hover {
    background: #5b24c7;
}

.plan .btn.secondary {
    background: #EFE9FC;
    color: #7b3aed;
    border: 0;
}

.plan .btn.secondary:hover {
    background: #e5e7eb;
}
 /* 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);
}




/* FAQ */

.faq-section {
    padding: 4rem 2rem;
    background-color: #fff;
}

.faq-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
    gap: 4rem;
}

.faq-left {
    flex: 1;
    text-align: center;
    top: 2rem;
    align-self: flex-start;
}

.faq-left h2 {
    font-size: 48px;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 150%;
}

.faq-image {
    max-width: 100%;
    height: auto;
}

.faq-right {
    flex: 1;
}

  /* Tabs */
.faq-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: flex-start;
    top: 0;
    background-color: #fff;
    z-index: 10;
    padding: 1rem 0;
    border-radius: 0px;
    border-bottom-right-radius: 16px;
    border-top-left-radius: 16px;

}

.faq-tabs .tab {
    background: none;
    border: 1px solid #ccc;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 0px;
    border-bottom-right-radius: 16px;
    border-top-left-radius: 16px;
}

.faq-tabs .tab.active {
    background-color:#6545E5 ;
    color: #FFFFFF;
    border-color: #6545E5;

}

  /* Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #f9f9ff;
    overflow: hidden;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    border-bottom-right-radius: 16px;
    border-top-left-radius: 16px;
}

.faq-item.active {
    border-color: #6b21a8;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1rem;
    background: none;
    border: none;
    font-weight: 400;
    cursor: pointer;
    color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 21px;
}

.faq-question::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border-left: 3px solid #6f45ff;
    border-bottom: 3px solid #6f45ff;
    transform: rotate(-45deg);
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(135deg);
}

.faq-answer {
    padding: 0 1rem;
    max-height: 0;
    font-weight: 400;
    overflow: hidden;
    font-size: 16px;
    color: #000000;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1rem;
}

.depoimentos-section {
    padding: 4rem 2rem;
    background-color: #fff;
    text-align: center;
}

.depoimentos-container {
    max-width: 1200px;
    margin: 0 auto;
}

.depoimentos-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.depoimentos-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.depoimentos-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 5rem;
    margin-top: 5rem;
}

.depoimento-card {
    background-color: #F5F5F5;
    padding: 2rem;
    border-radius: 0px;
    border-bottom-right-radius: 16px;
    border-top-left-radius: 16px;
    box-shadow: 0 2px 8px #0000002E;
    max-width: 320px;
    flex: 1;
    text-align: left;
}

.depoimento-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.depoimento-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.depoimento-card .cargo {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1rem;
}

.depoimento-card .texto {
    font-size: 0.95rem;
    color: #555;
}

.depoimentos-botao {
    margin-top: 2rem;
}

.btn-roxo {
    background-color: #6545E5;
    color: #FFFFFF;
    padding: 12px 24px;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.3s ease;
    border-bottom-right-radius: 16px;
    border-top-left-radius: 16px;
    font-size: 16px;
    line-height: 150%;
}

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

.flow-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 40px 20px;
}
.flow-title {
    font-size: 48px;
    font-weight: 700;
    color: #343434;
    text-align: center;
    margin-bottom: 20px;
    line-height: 150%;
}

.flow-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 300px;
}


.flow-card {
    background: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    min-height: 150px;
    transition: 0.3s;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
    justify-content: space-between;
    width: 99%;
    border-radius: 0px;
    border-bottom-right-radius: 16px;
    border-top-left-radius: 16px;
}

.card-icon {
    padding: 6px;
    flex-shrink: 0;
}

.card-content {
    display: flex;
    align-items: center;
    gap: 15px;
}


.flow-card:nth-child(odd) {
    margin-left: -230px;
    margin-right: auto;
}


.flow-card:nth-child(even) {
    margin-left: auto;
    margin-right: -150px;
}


.flow-card:hover {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.flow-card h3 {
    color: #6545E5;
    font-size: 21px;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.flow-card p {
    color: #434343;
    font-size: 14px;
    overflow: hidden;
    min-height: 60px;
    line-height: 132%;
    font-weight: 400    ;
}

.flow-card:hover {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.flow-card.active {
    border-left: 4px solid #6a11cb;
    background: #f0ecfc;
    padding: 15px;
}

.flow-image {
    width: 400px;
    height: 400px;
    overflow: visible;
    position: relative;
}

.flow-image img {

    height: 100%;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    margin-left: 200px;
}




  /* Responsivo */
@media (max-width: 1024px) {
    .flow-section {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .flow-card {
        width: 100%;
        margin: 10px 0;
    }
    .feature-item {
        display: flex;
        flex-direction: column;
    }

    .features-2-content {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .features-2-image img {
        max-width: 100%;
        height: auto;
    }

    .features-2-list {
        width: 100%;
    }

    .feature-item h3 {
        font-size: 21px;
        color: #000000;
        margin-bottom: 5px;
        max-width: 345px;
        font-weight: 400;
        line-height: 150%;
    }

    .feature-item p {
        font-size: 14px;
        color: #262626;
        margin: 0;
        max-width: 345px;
        line-height: 132%;
        font-weight: 400;
        text-align: left;
        padding-right: 20px;
    }
    .feature-item {
        display: flex;
    }
    .image-frame{
        height: 590px;
    }

    .flow-image img {
        margin: auto;
    }
}

@media (max-width: 768px) {
    .flow-section {
        padding: 10px;
    }

    .flow-card {
        margin: 5px 0;
    }
    .feature-item {
        display: flex;
        flex-direction: column;
    }

    .features-2-content {
        padding: 10px;
    }

    .features-2-image img {
        max-width: 100%;
        height: auto;
    }

    .features-2-list {
        width: 100%;
    }

    .features-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .feature-card {
        width: 90%;
        max-width: 400px;
        height: auto;
    }
    .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        margin-top: 20px;
    }

    .cta{
        height: auto;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        border-radius: 0px;
        border-bottom-right-radius: 16px;
        border-top-left-radius: 16px;
    }

    .faq-container {
        flex-direction: column;
        text-align: center;
    }

    .faq-tabs {
        justify-content: center;

    }

    .depoimentos-cards {
        flex-direction: column;
        align-items: center;
    }

    .depoimento-card {
        max-width: 90%;
    }
    .image-frame{
        height: 450px;
    }
    .flow-card {
        margin: 0 !important;
        flex-direction: column;
        text-align: left;
    }

    .flow-image img {
        margin: 0 auto 10px;
    }

    .flow-image {
        order: -1;
        width: 100%;
        margin-bottom: 20px;
    }
    .hero-text h1{
    font-size: xx-large;
    }
    .hero-text p{
        font-size: medium;
    }
    .features .features-text h2{
        font-size: xx-large;
    }
    .features .features-text p{
        font-size: medium;
    }
    .features-2 .features-2-text h2{
        font-size: xx-large;
    }
    .pricing .pricing-text h2{
        font-size: xx-large;
    }
    .pricing .pricing-text p{
        font-size: medium;
    }
    .cta h2{
        font-size: x-large;
    }
    .faq-left h2{
        font-size: xx-large;
    }
    .depoimentos-container h2{
        font-size: xx-large;
    }
    .flow-title{
        font-size: xx-large;
    }
}

@media (max-width: 480px) {
    .flow-section {
        padding: 5px;
    }

    .flow-card {
        margin: 2px 0;
    }

    .features-2-content {
        padding: 5px;
    }

    .features-2-image img {
        max-width: 100%;
        height: auto;
    }

    .features-2-list {
        width: 100%;
    }
    .image-frame{
        height: 245px;
    }

}

