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


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

.plan-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 150px 0;
    text-align: center;
}

.plan-section .pricing-header h2 {
    font-size: 64px;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 150%;
    color: #343434;
}

.plan-section .pricing-header p {
    font-size: 21px;
    color: #555555;
    margin-bottom: 30px;
    line-height: 150%;
    font-weight: 400;
}

.plan-section .billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

.plan-section .switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.plan-section .switch input {
    display: none;
}

.plan-section .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    border-radius: 34px;
    transition: 0.4s;
    border: 0.8px solid #9D9D9D;
}

.plan-section .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: #6545E5;
    border-radius: 50%;
    transition: 0.4s;
}

.plan-section input:checked + .slider {
    background-color: #EFE9FC; /* Roxo */
}

.plan-section input:checked + .slider:before {
    transform: translateX(24px);
}

.plan-section .pricing-cards {
    display: flex;
    gap: 100px;
    justify-content: center;
    flex-direction:row ;
}

.plan-section .pricing-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px 20px;
    width: 360px;
    height: 690px;
    position: relative;
    text-align: left;
    border-top-left-radius: 24px;
    border-bottom-right-radius:24px ;
}

.plan-section .recommended {
    border: 2px solid #7c3aed;
    position: relative;
    box-shadow: 4px 4px 15px #0000003D;
}

.plan-section .badge {
    background: linear-gradient(#6545E5, #C2B5F8, #6545E5);
    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: 30px;
    right: 20px;
}


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

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

.plan-section ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.plan-section ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 24px;
    line-height: 165%
}

.plan-section ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #7c3aed;
}

.plan-section .btn-outline,
.plan-section .btn-primary {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: background 0.3s, color 0.3s;
    border-radius: 0px;
    border-bottom-right-radius: 16px;
    border-top-left-radius: 16px;
}

.plan-section .btn-outline {
    background: transparent;
    border: 0px solid;
    color: #7c3aed;
    background-color: #EFE9FC;
}

.plan-section .btn-outline:hover {
    background: transparent;
    border: 1px solid #C4C4C4;
}

.plan-section .btn-primary {
    background: #7c3aed;
    color: #fff;
}

.plan-section .btn-primary:hover {
    background: #5b26b6;
}

.plan-section .faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.plan-section .faq-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.plan-section .faq-item {
    background-color: #f9f5ff;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    cursor: pointer;
}

.plan-section .faq-question {
    padding: 20px;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.plan-section .arrow {
    font-size: 20px;
    color: #7c3aed;
}

/* FAQ */

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

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.faq-title {
    font-size: 48px;
    margin-bottom: 4rem;
    font-weight: 700;
    line-height: 150%;
    color: #343434;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 300px;
}

.faq-item {
    background: #f9f9ff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    text-align: left;
    border-radius: 0px;
    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: #343434;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 21px;
    line-height: 150%;
    transition: background 0.3s ease;
}

.faq-question::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border-left: 3px solid #6f45ff;  /* lado esquerdo do V */
    border-bottom: 3px solid #6f45ff; /* lado direito do V */
    transform: rotate(-45deg);        /* faz o V apontar para baixo */
    margin-left: 8px;                 /* espaçamento à esquerda */
    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: #666;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

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

  /* 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);
}

@media (max-width: 1024px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .pricing-header h2, .faq-title {
        font-size: 48px;
    }

    .pricing-header p, .faq-item p {
        font-size: 18px;
    }

    .plan-section .price {
        font-size: 32px;
    }

    .plan-section ul li {
        font-size: 14px;
    }

    .cta h2 {
        font-size: 36px;
    }

    .cta p {
        font-size: 18px;
    }
    .plan-section .pricing-card{
        height: auto;
    }
    .plan-section .pricing-cards {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .plan-section .pricing-header h2{
        font-size: 30px;
    }
    .plan-section .pricing-header p{
        font-size: medium;
    }
    .pricing-header h2, .faq-title {
        font-size: xx-large;
    }

    .pricing-header p, .faq-item p {
        font-size: medium;
    }

    .plan-section .price {
        font-size: 28px;
    }

    .plan-section ul li {
        font-size: 12px;
    }

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

    .cta p {
        font-size: medium;
    }
    .plan-section .pricing-card{
        height: auto;
    }
    .plan-section .pricing-cards {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .plan-section .pricing-card{
        height: auto;
    }
    .plan-section .pricing-cards {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }
}
