:root {
    --primary: #007bff;
    --primary-dark: #0056b3;
    --secondary: #00d2ff;
    --success: #28a745;
    --success-light: #d4edda;
    --danger: #dc3545;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --light: #f8fafc;
    --white: #ffffff;
    --logo-gradient: linear-gradient(135deg, #007bff 0%, #a855f7 50%, #7e22ce 100%);
    /* Blue to Purple/Lilac */
    --gradient: linear-gradient(135deg, #007bff 0%, #00d2ff 100%);
    --gradient-green: linear-gradient(135deg, #28a745 0%, #4ade80 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0b1120;
    /* Deep, clean navy background */
    background-image:
        radial-gradient(circle at 0% 0%, rgba(0, 123, 255, 0.08), transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(168, 85, 247, 0.08), transparent 40%);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-light);
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb:hover {
    background: #334155;
}

h1,
h2,
h3,
.logo {
    font-family: 'Outfit', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography & Effects */
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-green {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    border-bottom: none;
    /* Remove thick retro border for cleaner look */
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.5);
    filter: brightness(1.1);
}

.btn-secondary {
    background: var(--gradient-green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
    border-bottom: none;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.5);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--dark);
}

.btn-lg {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.full-width {
    width: 100%;
}

/* Glassmorphism Navbar */
.navbar {
    padding: 1rem 0;
    position: sticky;
    top: 20px;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 8px rgba(0, 123, 255, 0.5));
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Outfit';
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-ai {
    font-size: 2rem;
    opacity: 0.9;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--white);
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    background: rgba(0, 123, 255, 0.1);
    color: var(--secondary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 123, 255, 0.2);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-size: 1.5rem;
    color: var(--white);
}

.stat-item span {
    font-size: 0.9rem;
    color: var(--gray);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-visual {
    position: relative;
}

.floating-card {
    background: rgba(30, 41, 59, 0.5);
    /* Glass feel */
    backdrop-filter: blur(12px);
    border-radius: 24px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5), 0 18px 36px -18px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dashboard-card {
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
}

.dashboard-card img {
    width: 100%;
    border-radius: 12px;
}

.stats-card {
    position: absolute;
    bottom: -40px;
    right: -20px;
    width: 250px;
    padding: 1.5rem;
    transform: perspective(1000px) rotateY(10deg) rotateX(-5deg);
    z-index: 2;
}

.stats-header {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--gray);
}

.chart-mock {
    height: 100px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 210, 255, 0.1) 50%, transparent 100%);
    border-bottom: 2px solid var(--secondary);
    position: relative;
}

/* Mentor Section */
.mentor-section {
    padding: 10rem 0;
    position: relative;
}

.grid-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 550px;
}

.mentor-features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.m-feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.m-number {
    background: var(--gradient);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.m-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--white);
}

.m-text p {
    color: var(--gray);
    font-size: 0.95rem;
}

.mentor-visual {
    position: relative;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.2) 0%, transparent 70%);
    z-index: -1;
    filter: blur(40px);
}

.floating-img-premium {
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: rgba(15, 23, 42, 0.4);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--dark-light);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 123, 255, 0.3);
    background: rgba(30, 41, 59, 0.6);
}

.highlighted-purple {
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.highlighted-purple:hover {
    border-color: rgba(168, 85, 247, 0.6);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.mini-preview {
    margin-top: auto;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.mini-preview img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.feature-card:hover .mini-preview img {
    transform: scale(1.08);
}

/* Layout Responsivo para Novas Seções */
@media (max-width: 992px) {
    .grid-split {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .lead-text {
        margin-left: auto;
        margin-right: auto;
    }

    .m-feature-item {
        text-align: left;
    }

    .integrated-grid {
        grid-template-columns: 1fr;
    }
}

/* Comparison Section Enhancements */
.comparison {
    padding: 10rem 0;
    background: radial-gradient(circle at top right, rgba(0, 123, 255, 0.05), transparent);
}

.compare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
    perspective: 1000px;
}

.compare-card-3d {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    cursor: default;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.compare-card-3d:hover {
    transform: rotateY(10deg) rotateX(5deg) translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(30, 41, 59, 0.6);
    box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.4);
}

.compare-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.compare-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 123, 255, 0.3));
}

.compare-card-3d h3 {
    font-size: 1.4rem;
    color: var(--white);
}

.compare-card-3d p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 1.05rem;
}

.compare-badge {
    position: absolute;
    bottom: -12px;
    right: 20px;
    background: var(--secondary);
    color: var(--dark);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3);
}

.highlight-compare {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(0, 123, 255, 0.3);
}

.compare-table-container {
    background: var(--dark-light);
    border-radius: 32px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
}

.compare-table th,
.compare-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.compare-table th {
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.compare-table td.highlight {
    color: var(--secondary);
    font-weight: 700;
    background: rgba(0, 210, 255, 0.02);
}

/* Pricing Section */
.pricing {
    padding: 8rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 123, 255, 0.03) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--dark-light);
    padding: 4rem 3rem;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    text-align: center;
}

.pricing-card.highlighted {
    border: 2px solid transparent;
    background-image: linear-gradient(var(--dark-light), var(--dark-light)), var(--gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 123, 255, 0.2);
    z-index: 2;
}

.pricing-card.highlighted:hover {
    transform: scale(1.07);
    box-shadow: 0 0 60px rgba(0, 123, 255, 0.4);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.plan-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 2rem;
}

.price {
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    margin-top: 0.5rem;
    display: inline-block;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    font-family: 'Outfit';
}

.sub-price {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 3rem;
}

.plan-features li {
    margin-bottom: 1rem;
    color: var(--white);
    opacity: 0.8;
}

.plan-features li::before {
    content: "✓";
    color: var(--primary);
    margin-right: 10px;
    font-weight: bold;
}

.plan-footer {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--gray);
    font-style: italic;
}

.trial-text {
    text-align: center;
    margin-top: 4rem;
    color: var(--gray);
}

.trial-text a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 10, 19, 0.9);
    /* Darker overlay for focus */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.modal-content {
    background-color: #1e293b;
    /* Clean solid slate for modals */
    margin: 5% auto;
    padding: 3rem;
    border-radius: 32px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Brighter border for contrast */
}

.video-content {
    max-width: 900px;
    padding: 1rem;
    background: black;
}

.report-content {
    max-width: 1000px;
    padding: 2rem;
    background: var(--dark-light);
}

.report-header {
    margin-bottom: 2rem;
    text-align: center;
}

.report-viewer {
    max-height: 70vh;
    overflow-y: auto;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

/* FAQ Accordion Styling */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(30, 41, 59, 0.6);
}

.accordion-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin: 0;
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--secondary);
    transition: transform 0.3s;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: rgba(0, 0, 0, 0.1);
}

.accordion-content p {
    padding: 0 2rem 1.5rem;
    margin: 0;
    color: var(--gray);
    line-height: 1.6;
}

.accordion-item.active {
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.02);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    transition: max-height 0.4s ease-in;
}

/* Modal styles extension */
.large-content {
    max-width: 1000px;
    padding: 2rem;
    margin: 2vh auto;
}

.modal-header {
    margin-bottom: 2rem;
    text-align: center;
}

.modal-viewer {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 1rem;
    max-height: 55vh;
    /* Altura reduzida para melhor visualização em laptops */
    overflow-y: auto;
    display: flex;
    justify-content: center;
}

.modal-img-3d {
    max-width: 100%;
    max-height: 50vh;
    /* Reduzido de 60vh para garantir visibilidade total */
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateX(5deg);
    transition: transform 0.5s;
    object-fit: contain;
}

.modal-img-3d:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.02);
}

.close {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray);
    transition: color 0.3s;
}

.close:hover {
    color: var(--white);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: var(--primary);
}

.success-icon,
.error-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.key-display {
    background: rgba(0, 123, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-family: monospace;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin: 2rem 0;
    border: 1px dashed var(--primary);
    color: var(--secondary);
}

.expiry-text {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gray);
}

/* Footer */
.footer {
    padding: 6rem 0 3rem;
    background: #080c14;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info p {
    color: var(--gray);
    max-width: 300px;
    margin-top: 1rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {

    .hero-grid,
    .compare-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-btns,
    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 4rem;
    }

    .pricing-card.highlighted {
        transform: scale(1);
    }

    .nav-links {
        display: none;
    }
}

/* Checkout Modal Styling */
.checkout-content {
    max-width: 1100px;
    height: 90vh;
    padding: 1.5rem;
    background: #fff;
    margin: 2vh auto !important;
}

.checkout-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.checkout-wrapper iframe {
    width: 100%;
    height: 100%;
}

.checkout-content .close {
    color: #1e293b;
    z-index: 100;
}