/*
Theme Name: Afficionado
Theme URI: https://example.com
Author: Angélica
Description: Tema minimalista feito à mão
Version: 1.0
*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Instrument Sans', sans-serif;
    color: #1a1a1a;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

/* NAV */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    border-bottom: 1px solid #f0f0f0;
}

.nav-logo {
    font-size: 20px;
    font-weight: 700;
}

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

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.btn-outline {
    border: 1px solid #d1d5db;
    color: #374151;
    background: #fff;
}

.btn-outline:hover {
    background: #f9fafb;
}

.btn-dark {
    background: #111827;
    color: #fff;
    border: 1px solid #111827;
}

.btn-dark:hover {
    background: #1f2937;
}

.btn-primary {
    background: #4f46e5;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: #4338ca;
}

.btn-large {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 8px;
}

/* HERO */
.hero {
    text-align: center;
    padding: 80px 20px 60px;
    max-width: 760px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    color: #111827;
}

.hero p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* FEATURES */
.section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px;
    background: #fff;
}

.feature-icon {
    font-size: 28px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    font-size: 14px;
    color: #374151;
    padding: 3px 0;
}

.feature-list li::before {
    content: "• ";
    color: #4f46e5;
}

/* PRICING */
.pricing-section {
    padding: 80px 20px;
    background: #f9fafb;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.pricing-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid #4f46e5;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #111827;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.pricing-desc {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 20px;
}

.pricing-price {
    margin-bottom: 24px;
}

.pricing-price .amount {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -1px;
}

.pricing-price .period {
    font-size: 14px;
    color: #6b7280;
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
}

.pricing-features li {
    font-size: 14px;
    color: #374151;
    padding: 5px 0;
    border-bottom: 1px solid #f3f4f6;
}

.pricing-features li::before {
    content: "• ";
    color: #4f46e5;
}

.btn-full {
    width: 100%;
    text-align: center;
    display: block;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
}

.btn-ghost {
    border: 1px solid #e5e7eb;
    color: #374151;
    background: #fff;
}

.btn-ghost:hover {
    background: #f9fafb;
}

.btn-coming {
    background: #111827;
    color: #fff;
    border: none;
    opacity: 0.85;
    cursor: default;
}

/* CTA SECTION */
.cta-section {
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.cta-section p {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 32px;
}

/* FOOTER */
footer {
    border-top: 1px solid #e5e7eb;
    padding: 32px 20px;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 36px;
    }

    nav {
        padding: 16px 20px;
    }
}