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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a1128;
}

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

/* Header */
.header {
    background-color: #0a1128;
    padding: 15px 0;
    border-bottom: 1px solid #1a2238;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.logo-img {
    height: 60px;
    width: auto;
}

.header-text h1 {
    color: #d4af37;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.header-text p {
    color: #b8c5d6;
    font-size: 0.9em;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a1128 0%, #1a2238 100%);
    padding: 80px 0;
    color: white;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    background-color: #d4af37;
    color: #0a1128;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #d4af37;
}

.hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #b8c5d6;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #d4af37;
    color: #0a1128;
}

.btn-primary:hover {
    background-color: #b8941f;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.btn-secondary:hover {
    background-color: #d4af37;
    color: #0a1128;
}

/* Simulator Preview */
.simulator-preview {
    background-color: #1a2238;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #2a3448;
}

.simulator-preview h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.simulator-preview p {
    color: #b8c5d6;
    margin-bottom: 20px;
}

/* Stats Section */
.stats {
    background-color: #1a2238;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    color: white;
}

.stat-number {
    font-size: 3em;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1em;
    color: #b8c5d6;
}

/* Why Invest Section */
.why-invest {
    background-color: #0a1128;
    padding: 80px 0;
    color: white;
}

.why-invest h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #d4af37;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #b8c5d6;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.benefit-item {
    background-color: #1a2238;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #2a3448;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.benefit-item h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.benefit-item p {
    color: #b8c5d6;
    line-height: 1.6;
}

/* Comparison Table */
.comparison {
    background-color: #1a2238;
    padding: 80px 0;
    color: white;
}

.comparison h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #d4af37;
}

.table-container {
    overflow-x: auto;
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #0a1128;
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #2a3448;
}

.comparison-table th {
    background-color: #2a3448;
    color: #d4af37;
    font-weight: bold;
}

.highlight-cell {
    background-color: #d4af37;
    color: #0a1128;
    font-weight: bold;
}

.highlight-column {
    background-color: #d4af37;
    color: #0a1128;
}

/* Simulator Benefits */
.simulator-benefits {
    background-color: #0a1128;
    padding: 80px 0;
    color: white;
}

.simulator-benefits h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #d4af37;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background-color: #1a2238;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #2a3448;
    position: relative;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background-color: #d4af37;
    color: #0a1128;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.benefit-card h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.3em;
    margin-top: 10px;
}

.benefit-card p {
    color: #b8c5d6;
    line-height: 1.6;
}

/* Scarcity Section */
.scarcity-section {
    background-color: #1a2238;
    padding: 60px 0;
    color: white;
    text-align: center;
}

.scarcity-content h3 {
    color: #d4af37;
    font-size: 2em;
    margin-bottom: 20px;
}

.scarcity-content p {
    color: #b8c5d6;
    font-size: 1.2em;
    margin-bottom: 40px;
}

.scarcity-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.scarcity-stat {
    background-color: #0a1128;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #2a3448;
}

.scarcity-stat .stat-number {
    font-size: 2.5em;
    color: #d4af37;
    margin-bottom: 10px;
}

.scarcity-stat .stat-label {
    color: #b8c5d6;
    font-size: 0.9em;
}

/* Social Proof Advanced */
.social-proof-advanced {
    background-color: #0a1128;
    padding: 80px 0;
    color: white;
}

.social-proof-advanced h3 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #d4af37;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    text-align: center;
}

.proof-item {
    background-color: #1a2238;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #2a3448;
}

.proof-number {
    font-size: 2.5em;
    color: #d4af37;
    font-weight: bold;
    margin-bottom: 10px;
}

.proof-label {
    color: #b8c5d6;
    font-size: 1em;
}

.recent-approvals {
    text-align: center;
}

.recent-approvals h4 {
    color: #d4af37;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.approval-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.approval-item {
    background-color: #1a2238;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #28a745;
    color: #b8c5d6;
}

/* Authority Section */
.authority-section {
    background-color: #1a2238;
    padding: 80px 0;
    color: white;
}

.authority-section h3 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #d4af37;
}

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

.authority-item {
    background-color: #0a1128;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #2a3448;
    text-align: center;
}

.authority-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.authority-item h4 {
    color: #d4af37;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.authority-item p {
    color: #b8c5d6;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background-color: #0a1128;
    padding: 80px 0;
    color: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #d4af37;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-item {
    background-color: #1a2238;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
}

.testimonial-item p {
    color: #b8c5d6;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    text-align: right;
}

.testimonial-author strong {
    color: white;
    display: block;
}

.testimonial-return {
    color: #28a745;
    font-weight: bold;
    font-size: 0.9em;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    padding: 80px 0;
    text-align: center;
    color: #0a1128;
}

.final-cta h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-benefits span {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
}

/* Footer */
.footer {
    background-color: #0a1128;
    color: #b8c5d6;
    padding: 40px 0;
    border-top: 1px solid #1a2238;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    height: 50px;
}

.footer-text h3 {
    color: #d4af37;
    margin-bottom: 10px;
}

.footer-text p {
    margin-bottom: 5px;
    font-size: 0.9em;
}

.footer-right a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: white;
}

.footer-right p {
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-left {
        order: 1;
    }

    .hero-right {
        order: 2;
        margin-bottom: 40px;
    }

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

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

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-left {
        flex-direction: column;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5em;
    }

    .hero-description {
        font-size: 1.1em;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
    }
}


