:root {
    --primary-color: #2B4C7E;
    --secondary-color: #567EBB;
    --accent-color: #FF6B6B;
    --text-color: #333333;
    --light-text: #FFFFFF;
    --background-light: #F5F7FA;
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

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

/* Header */
.site-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation a {
    color: var(--light-text);
    text-decoration: none;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2B4C7E, #567EBB);
    padding: 120px 0 80px;
    color: var(--light-text);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text h2 {
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* Como Funciona Section */
.how-it-works {
    padding: 80px 0;
    background-color: var(--background-light);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}

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

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

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Botões */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button.blue {
    background-color: var(--primary-color);
}

.button-container {
    text-align: center;
    margin-top: 2rem;
}

/* Cards Section */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    text-align: center;
}

.card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Platform Features */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.platform-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
}

.platform-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--background-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    color: var(--light-text);
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.cta-left {
    flex: 1;
}

.highlight-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 1rem;
}

.price-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    color: var(--text-color);
    text-align: center;
}

.price-header {
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: bold;
}

.price-amount {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 1rem 0;
}

.price-amount .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.price-amount .period {
    font-size: 1rem;
    color: #666;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content,
    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .features,
    .cards,
    .platform-grid {
        grid-template-columns: 1fr;
    }
}
