body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, rgba(90, 58, 159, 0.5));
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.hero-bg {
    background-color: rgba(90, 58, 159, 0.5);
}

.card-hover:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.bee-highlight {
    color: #F28C38;
}

#mobile-menu {
    transition: transform 0.3s ease-in-out;
}

#mobile-menu.hidden {
    transform: translateX(100%);
}

.slider-3d-container {
    position: relative;
    width: 80%;
    max-width: 900px;
    height: 450px;
    perspective: 1200px;
    margin: 0 auto;
    background: linear-gradient(145deg, #e5e7eb, #d1d5db);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.slider-3d {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.5s ease-in-out;
}

.slider-item {
    position: absolute;
    width: 70%;
    height: 85%;
    top: 7.5%;
    left: 15%;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-item.active {
    box-shadow: 0 15px 40px rgba(90, 58, 159, 0.5), 0 0 20px rgba(90, 58, 159, 0.3);
}

.slider-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(90, 58, 159, 0.7);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.slider-btn:hover {
    background-color: rgba(90, 58, 159, 1);
}

.slider-btn.prev::before {
    content: "←";
    font-size: 22px;
}

.slider-btn.next::before {
    content: "→";
    font-size: 22px;
}

.slider-btn.prev {
    left: 15px;
}

.slider-btn.next {
    right: 15px;
}

.depoimentos-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.depoimentos {
    display: flex;
    width: 600%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.depoimento-item {
    width: 16.67%;
    height: 100%;
    flex-shrink: 0;
    background: #f9fafb;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #e5e7eb;
}

.depoimento-item::before {
    content: '“';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 40px;
    color: #5a3a9f;
    opacity: 0.2;
}

.depoimento-item::after {
    content: '”';
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 40px;
    color: #5a3a9f;
    opacity: 0.2;
}

.depoimento-item p {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.5;
}

.depoimento-item .author {
    color: #5a3a9f;
    font-weight: 600;
    margin-top: 10px;
    font-size: 14px;
}

.depoimento-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(90, 58, 159, 0.7);
    color: white;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.depoimento-btn:hover {
    background-color: rgba(90, 58, 159, 1);
}

.depoimento-btn.prev::before {
    content: "←";
    font-size: 20px;
}

.depoimento-btn.next::before {
    content: "→";
    font-size: 20px;
}

.depoimento-btn.prev {
    left: 10px;
}

.depoimento-btn.next {
    right: 10px;
}

.animate-section {
    opacity: 0.2;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.animate-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-price-card {
    opacity: 0.2;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.animate-price-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.price-section {
    background: linear-gradient(to bottom right, #f0f2f5, #e0e7ff);
    padding: 2rem 0;
    position: relative;
}

.price-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.price-slider {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.price-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex: 0 0 100%;
    max-width: 300px;
    margin: 0 auto;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-header {
    background: #5a3a9f;
    color: white;
    padding: 0.5rem;
    border-radius: 5px 5px 0 0;
    position: relative;
}

.price-header.padrao {
    background: #5a3a9f;
}

.price-header.pro {
    background: #7a56b9;
}

.price-header.premium {
    background: #5a3a9f;
}

.price-header.exclusivo {
    background: #7a56b9;
}

.price-header.premium::after {
    content: "Melhor Custo-Benefício";
    position: absolute;
    top: -1rem;
    right: -1rem;
    background: #f6ad55;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    font-size: 0.75rem;
}

.price-icon {
    margin: 1rem auto;
}

.price-features li {
    margin: 0.5rem 0;
    color: #4a5568;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.price-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    margin-top: 1rem;
    cursor: pointer;
}

.price-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(90, 58, 159, 0.7);
    color: white;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: none;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.price-nav-btn:hover {
    background-color: rgba(90, 58, 159, 1);
}

.price-nav-btn.prev::before {
    content: "←";
    font-size: 20px;
}

.price-nav-btn.next::before {
    content: "→";
    font-size: 20px;
}

.price-nav-btn.prev {
    left: 10px;
}

.price-nav-btn.next {
    right: 10px;
}

.faq-section {
    padding: 2rem 0;
    background: #f9fafb;
}

.faq-item {
    margin-bottom: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #5a3a9f;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.faq-answer {
    font-size: 1rem;
    color: #4b5563;
    display: none;
}

.faq-answer.active {
    display: block;
}

.video-tutorial-section {
    padding: 2rem 0;
    background: #f9fafb;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video-container {
    width: 100%;
    max-width: 640px;
    aspect-ratio: 16 / 9;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Estilos do Checkout */
.container {
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
}

.payment-section {
    display: none;
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
}

.payment-section.active {
    display: block;
}

.payment-option {
    background: #f0f2f5;
    border-radius: 8px;
    padding: 1rem;
    margin: 0;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: 500;
}

.payment-option:hover {
    background: #e0e7ff;
    color: #5a3a9f;
}

.payment-option.active {
    background: #5a3a9f;
    color: white;
}

#cardPaymentForm,
#pixPaymentForm,
#boletoPaymentForm,
#confirmationMessage {
    display: none;
    margin-top: 1.5rem;
}

#cardPaymentForm.active,
#pixPaymentForm.active,
#boletoPaymentForm.active,
#confirmationMessage.active {
    display: block;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    margin-bottom: 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #5a3a9f;
    box-shadow: 0 0 5px rgba(90, 58, 159, 0.3);
}

.submit-btn {
    background: #5a3a9f;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background: #7a56b9;
}

.back-btn {
    color: #5a3a9f;
    text-decoration: underline;
    margin-top: 1rem;
    display: inline-block;
}

/* Estilos do Email Form */
.email-form {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 90%;
    max-width: 400px;
}

.email-form.active {
    display: block;
}

.email-form-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.email-form-overlay.active {
    display: block;
}

.confirmation-message {
    background: #f0f9ff;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Estilos do Cartão Dinâmico */
.card-preview {
    position: relative;
    width: 300px;
    height: 180px;
    margin: 0 auto 1.5rem;
    perspective: 1000px;
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.6s;
}

.card-front {
    background: linear-gradient(135deg, #5a3a9f, #7a56b9);
    color: white;
    transform: rotateY(0deg);
}

.card-back {
    background: linear-gradient(135deg, #5a3a9f, #7a56b9);
    color: white;
    transform: rotateY(180deg);
}

.card-preview.flip .card-front {
    transform: rotateY(180deg);
}

.card-preview.flip .card-back {
    transform: rotateY(0deg);
}

.card-logo {
    position: absolute;
    top: 15px;
    right: 15px;
    height: 30px;
    display: none;
}

.card-number {
    position: absolute;
    top: 70px;
    left: 15px;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.card-name {
    position: absolute;
    bottom: 30px;
    left: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.card-expiry {
    position: absolute;
    bottom: 30px;
    right: 15px;
    font-size: 0.9rem;
}

.card-back {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-cvv {
    background: white;
    color: black;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1rem;
}

@media (max-width: 640px) {
    .video-container {
        max-width: 90%;
    }

    .slider-3d-container {
        height: 300px;
    }

    .slider-item {
        width: 60%;
        height: 70%;
        top: 15%;
        left: 20%;
    }
}

@media (min-width: 1024px) {
    .price-container {
        max-width: 1200px;
    }

    .price-slider {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        overflow: visible;
    }

    .price-card {
        flex: none;
        max-width: none;
        margin: 0;
    }
}

@media (max-width: 1023px) {
    .price-slider {
        width: 400%;
    }

    .price-card {
        width: 25%;
    }

    .price-nav-btn {
        display: flex;
    }
}