/* Blog Styles */

/* Hero do Blog */
.blog-hero {
    padding: 10rem 0 4rem;
    background: linear-gradient(180deg, var(--black) 0%, rgba(26, 26, 26, 1) 100%);
    text-align: center;
}

.blog-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 1rem;
}

.blog-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Section */
.blog-section {
    padding: 4rem 0 6rem;
    background: var(--black);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Blog Card */
.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-card-image {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.blog-card-title a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--gold);
}

.blog-card-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Blog CTA */
.blog-cta {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--black) 0%, rgba(26, 26, 26, 1) 100%);
}

.blog-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.blog-cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.blog-cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

/* Blog Post Page */
.blog-post {
    padding: 10rem 0 4rem;
    background: var(--black);
}

.blog-post-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.blog-post-category {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    padding: 0.35rem 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.blog-post-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.blog-post-image {
    max-width: 900px;
    margin: 0 auto 3rem;
    border-radius: 12px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: auto;
}

.blog-post-content {
    max-width: 720px;
    margin: 0 auto;
}

.blog-post-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-top: 3rem;
    margin-bottom: 1.25rem;
}

.blog-post-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--gold);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.blog-post-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-post-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.blog-post-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: rgba(212, 175, 55, 0.08);
    border-left: 4px solid var(--gold);
    border-radius: 0 8px 8px 0;
}

.blog-post-content blockquote p {
    font-size: 1.15rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.blog-post-content a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.blog-post-content a:hover {
    border-bottom-color: var(--gold);
}

.blog-post-content strong {
    color: var(--white);
    font-weight: 600;
}

/* Highlight Box */
.highlight-box {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.highlight-box h4 {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.highlight-box p {
    margin-bottom: 0;
}

/* Blog Post Footer */
.blog-post-footer {
    max-width: 720px;
    margin: 4rem auto 0;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-post-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.blog-post-author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
}

.blog-post-author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.blog-post-author-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

.blog-post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-post-share span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.blog-post-share a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.blog-post-share a:hover {
    background: var(--gold);
    color: var(--black);
}

.blog-post-share svg {
    width: 18px;
    height: 18px;
}

/* Related Posts */
.related-posts {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.related-posts h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Back to Blog Link */
.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: opacity 0.3s ease;
}

.back-to-blog:hover {
    opacity: 0.8;
}

.back-to-blog svg {
    width: 16px;
    height: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 8rem 0 3rem;
    }

    .blog-hero-title {
        font-size: 2.25rem;
    }

    .blog-hero-subtitle {
        font-size: 1.1rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-card-image {
        height: 180px;
    }

    .blog-post {
        padding: 8rem 0 3rem;
    }

    .blog-post-title {
        font-size: 1.75rem;
    }

    .blog-post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .blog-post-content h2 {
        font-size: 1.5rem;
    }

    .blog-post-content p,
    .blog-post-content li {
        font-size: 1rem;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    .blog-cta-content h2 {
        font-size: 1.5rem;
    }
}
