/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --accent: #00A86B;       /* emerald green */
    --accent-dark: #0F6E56;  /* dark forest green */
    --accent-light: #E1F5EE; /* light emerald */
    --text: #1A2B4C;         /* navy blue */
    --muted: #6b7280;
    --border: #e5e7eb;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.6;
    color: var(--text);
    background-color: #ffffff;
}

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

/* Header */
.header {
    padding: 40px 0 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 40px;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    object-fit: cover;
}

.header h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
}

.subtitle {
    font-size: 16px;
    color: var(--muted);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-bottom: 60px;
}

.hero-text h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text);
}

.text-muted {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

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

/* Features List */
.features-list {
    margin: 30px 0;
}

.feature-item {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.feature-item:last-child {
    border-bottom: none;
}

/* Cards */
.card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.highlight-card {
    background: linear-gradient(135deg, var(--accent-light) 0%, #ffffff 100%);
    border: 2px solid var(--accent);
}

.card-badge {
    display: inline-block;
    background: var(--accent);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.pro-badge {
    background: linear-gradient(135deg, #FBBF24 0%, #F97316 100%);
}

.card-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

/* Check List */
.check-list {
    list-style: none;
    margin-top: 16px;
}

.check-list li {
    padding: 8px 0;
    color: var(--text);
    font-size: 15px;
}

/* Hero Card */
.hero-card {
    display: flex;
    align-items: flex-start;
}

/* Buttons */
.cta-buttons {
    margin-top: 30px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

.btn-primary {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
}

.store-badge {
    height: 56px;
    width: auto;
}

/* Sections */
.section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 30px;
    text-align: center;
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.steps-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 24px;
}

/* Pricing */
.pricing-grid {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    display: flex;
    flex-direction: column;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.price {
    margin: 16px 0;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
}

.pricing-features {
    list-style: none;
    margin-bottom: 20px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text);
    font-size: 15px;
    border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--accent-light) 0%, #ffffff 100%);
    border-radius: 16px;
    border: 1px solid var(--border);
}

/* Footer */
.footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.footer-content {
    text-align: center;
}

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

.footer-links a {
    color: var(--accent-dark);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.separator {
    color: var(--muted);
}

.copyright {
    color: var(--muted);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 860px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-card {
        order: -1;
    }

    .grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

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

    .header h1 {
        font-size: 24px;
    }

    .hero-text h2 {
        font-size: 28px;
    }

    .section-title {
        font-size: 26px;
    }

    .container {
        padding: 16px;
    }
}

@media (max-width: 600px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        width: 48px;
        height: 48px;
    }

    .hero-text h2 {
        font-size: 24px;
    }

    .section-title {
        font-size: 22px;
    }

    .footer-links {
        flex-direction: column;
        gap: 8px;
    }

    .separator {
        display: none;
    }
}
