/* Global Styles */
:root {
    --primary-color: #8A4FFF; /* Atualizado para roxo */
    --primary-dark: #6F3FD9; /* Versão mais escura do roxo */
    --primary-light: #A77DFF; /* Versão mais clara do roxo */
    --secondary-color: #FF715B;
    --accent-color: #51CBEE;
    --dark-color: #2A325E;
    --text-color: #4A4A68;
    --light-text: #787896;
    --lightest-color: #F8F9FE;
    --light-gray: #EAECF5;
    --medium-gray: #D0D3E5;
    --white: #FFFFFF;
    --success-color: #27AE60;
    --warning-color: #F39C12;
    --error-color: #E74C3C;
    --box-shadow: 0 8px 24px rgba(112, 120, 184, 0.12);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    --card-padding: 32px;
    --section-padding: 80px 0;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
}

p {
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.section-header h2 {
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-header p {
    color: var(--light-text);
    font-size: 18px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    text-align: center;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(99, 113, 252, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 18px;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn i {
    margin-left: 8px;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo h1 {
    font-size: 28px;
    margin: 0;
    color: var(--primary-color);
}

.logo-icon {
    font-size: 24px;
    color: var(--primary-color);
}

.menu ul {
    display: flex;
    gap: 32px;
}

.menu a {
    font-weight: 500;
    position: relative;
}

.menu a:hover {
    color: var(--primary-color);
}

.menu a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.menu a:hover:after {
    width: 100%;
}

.cta-buttons {
    display: flex;
    gap: 12px;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

/* Hero Section */
.hero {
    padding: 80px 0 120px;
    background-color: var(--lightest-color);
    overflow: hidden;
    position: relative;
}

.hero:before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-light) 0%, rgba(140, 151, 255, 0) 70%);
    opacity: 0.2;
    border-radius: 50%;
    z-index: 0;
}

.hero:after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--secondary-color) 0%, rgba(255, 113, 91, 0) 70%);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 0;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: var(--light-text);
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-form {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-waitlist {
    width: 100%;
    max-width: 400px;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: 0 20px 40px rgba(99, 113, 252, 0.2);
    text-align: center;
    transition: var(--transition);
}

.hero-waitlist:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(99, 113, 252, 0.3);
}

.hero-waitlist h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.hero-waitlist p {
    color: var(--light-text);
    margin-bottom: 24px;
}

.hero-waitlist .form-group {
    margin-bottom: 20px;
}

.hero-waitlist input {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius-sm);
    font-size: 16px;
    transition: var(--transition);
}

.hero-waitlist input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(138, 79, 255, 0.1);
}

.hero-waitlist button {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
}

/* Features Section */
.features {
    padding: var(--section-padding);
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: var(--card-padding);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(112, 120, 184, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    background-color: var(--lightest-color);
    border-radius: 50%;
}

.feature-card h3 {
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--light-text);
    margin-bottom: 0;
}

/* How It Works Section */
.how-it-works {
    padding: var(--section-padding);
    background-color: var(--lightest-color);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
}

.step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 30px;
    right: -20px;
    width: 40px;
    height: 2px;
    background-color: var(--medium-gray);
}

.step h3 {
    margin-bottom: 16px;
}

.step p {
    color: var(--light-text);
}

/* App Screens Section */
.app-screens {
    padding: var(--section-padding);
    background-color: var(--white);
    overflow: hidden;
}

.animated-features {
    display: flex;
    gap: 30px;
    padding: 40px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-box {
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--lightest-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-large i {
    font-size: 36px;
    color: var(--primary-color);
}

.feature-box h3 {
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--light-text);
    margin-bottom: 0;
}

/* Waitlist Section */
.waitlist {
    padding: var(--section-padding);
    background-color: var(--lightest-color);
}

.waitlist-form-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

.waitlist-form {
    flex: 1;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: var(--card-padding);
    transition: var(--transition);
}

.waitlist-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.waitlist-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 24px;
    transition: var(--transition);
}

.waitlist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(112, 120, 184, 0.2);
}

.waitlist-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    background-color: var(--lightest-color);
    border-radius: 50%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(138, 79, 255, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .waitlist-form-container {
        flex-direction: column;
    }
    
    .waitlist-info {
        margin-top: 30px;
    }
}

.form-success {
    text-align: center;
    padding: 20px;
}

.success-icon {
    font-size: 64px;
    color: var(--success-color);
    margin-bottom: 20px;
}

.form-success h3 {
    margin-bottom: 16px;
    color: var(--dark-color);
}

.form-success p {
    color: var(--light-text);
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
    background-color: var(--white);
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 10px 40px;
    scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial {
    background-color: var(--lightest-color);
    border-radius: var(--border-radius);
    padding: var(--card-padding);
    min-width: 300px;
    max-width: 400px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(112, 120, 184, 0.2);
}

.quote {
    margin-bottom: 24px;
}

.quote p {
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.quote p:before, .quote p:after {
    content: '"';
    font-size: 36px;
    color: var(--primary-light);
    position: absolute;
    font-family: Georgia, serif;
}

.quote p:before {
    left: 0;
    top: -10px;
}

.quote p:after {
    right: 0;
    bottom: -10px;
}

.author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}

.author h4 {
    margin-bottom: 0;
    font-size: 18px;
}

.author p {
    margin-bottom: 0;
    color: var(--light-text);
    font-size: 14px;
}

/* FAQ Section */
.faq {
    padding: var(--section-padding);
    background-color: var(--lightest-color);
}

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

.accordion-item {
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    margin-bottom: 16px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.accordion-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: rgba(99, 113, 252, 0.05);
}

.accordion-header h3 {
    margin-bottom: 0;
    font-size: 18px;
}

.accordion-header i {
    color: var(--primary-color);
    font-size: 20px;
    transition: var(--transition);
}

.accordion-item.active .accordion-header i {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item.active .accordion-content {
    padding: 0 24px 20px;
    max-height: 200px;
}

/* CTA Section */
.cta {
    padding: var(--section-padding);
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.cta:before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-color) 0%, rgba(99, 113, 252, 0) 70%);
    opacity: 0.15;
    border-radius: 50%;
}

.cta:after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--secondary-color) 0%, rgba(255, 113, 91, 0) 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    font-size: 40px;
    margin-bottom: 24px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 32px;
}

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

/* Footer */
footer {
    background-color: var(--lightest-color);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info {
    max-width: 300px;
}

.footer-info .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.footer-info p {
    color: var(--light-text);
    margin-bottom: 24px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 16px;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 24px;
}

.footer-links ul li {
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--light-text);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    margin-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--light-gray);
}

.footer-bottom p {
    color: var(--light-text);
    font-size: 14px;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    .hero-content h1 {
        font-size: 44px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .price-card.featured {
        transform: scale(1);
    }

    .price-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .hero-buttons {
        justify-content: center;
    }
    
    .hero-waitlist {
        max-width: 100%;
    }

    .menu, .cta-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .step:not(:last-child):after {
        display: none;
    }

    .features-grid, .steps, .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-info {
        text-align: center;
        max-width: 100%;
    }

    .social-icons {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .btn {
        padding: 10px 20px;
    }

    .btn-lg {
        padding: 12px 28px;
    }

    .hero-buttons, .cta-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .btn-block-mobile {
        width: 100%;
        display: block;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content, .feature-card, .step, .price-card, .testimonial, .accordion-item {
    animation: fadeIn 0.6s ease-out;
}

.feature-card:nth-child(2), .step:nth-child(2), .price-card:nth-child(2), .testimonial:nth-child(2), .accordion-item:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3), .step:nth-child(3), .price-card:nth-child(3), .testimonial:nth-child(3), .accordion-item:nth-child(3) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(4), .step:nth-child(4), .accordion-item:nth-child(4) {
    animation-delay: 0.6s;
}

.accordion-item:nth-child(5) {
    animation-delay: 0.8s;
}

/* Toast Notifications */
.toast-notification {
    border-radius: var(--border-radius);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    padding: 12px 20px !important;
}

.toastify {
    padding: 12px 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    min-width: 300px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    border-radius: var(--border-radius);
}