:root {
    --primary-color: #7C3AED;
    --secondary-color: #4C1D95;
    --dark-bg: #121212;
    --dark-card: #1E1E1E;
    --text-primary: #FFFFFF;
    --text-secondary: #A3A3A3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
}

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

/* Header Styles */
header {
    background-color: rgba(18, 18, 18, 0.95);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-cta {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.nav-cta:hover {
    background-color: var(--secondary-color);
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(to bottom, var(--dark-bg), var(--dark-card));
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), #9F7AEA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.ebook-preview {
    margin: 2rem 0;
}

.ebook-preview img {
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.ebook-preview img:hover {
    transform: translateY(-10px);
}

/* Benefits Section */
.benefits {
    padding: 4rem 0;
    background-color: var(--dark-card);
}

.benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.benefit-card {
    background-color: var(--dark-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(124, 58, 237, 0.1);
}

.benefit-card i {
    font-size: 1.8rem;
    color: var(--primary-color);
    background: rgba(124, 58, 237, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.benefit-card .content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.benefit-card h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

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

.benefit-card:hover i {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
}

/* Chapters Section */
.chapters {
    padding: 4rem 0;
    background-color: var(--dark-bg);
}

.chapters h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    font-size: 2.2rem;
}

.chapters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.chapter-card {
    background: linear-gradient(145deg, var(--dark-card), var(--dark-bg));
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(124, 58, 237, 0.1);
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.chapter-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
}

.chapter-number {
    position: absolute;
    top: -15px;
    left: -15px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.chapter-card h3 {
    color: var(--primary-color);
    margin: 0.5rem 0 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.chapter-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
}

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

    .chapters h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .chapters-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .chapter-card {
        padding: 1.8rem;
        min-height: auto;
    }

    .chapter-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .chapter-card p {
        font-size: 0.9rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--dark-bg), var(--dark-card));
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(145deg, #222222, #1a1a1a);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

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

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.testimonial-content {
    flex: 1;
}

.stars {
    color: #FFD700;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.testimonial-content span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Guarantee Section */
.guarantee-section {
    padding: 4rem 0;
    background-color: var(--dark-card);
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, #222222, #1a1a1a);
    border-radius: 20px;
    border: 2px solid var(--primary-color);
}

.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.guarantee-icon i {
    color: var(--primary-color);
}

.guarantee-content h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.guarantee-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-features {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.guarantee-features li {
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guarantee-features i {
    color: var(--primary-color);
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background-color: var(--dark-card);
}

.cta h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), #9F7AEA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.offer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
    background: linear-gradient(165deg, rgba(34, 34, 34, 0.95), rgba(26, 26, 26, 0.98));
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.main-offer {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding-right: 2rem;
    border-right: 1px solid rgba(124, 58, 237, 0.2);
}

.ebook-features h3 {
    color: var(--text-primary);
    margin-bottom: 1.8rem;
    font-size: 1.4rem;
    background: linear-gradient(45deg, var(--primary-color), #9F7AEA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ebook-features ul, .bonus-offer ul {
    list-style: none;
}

.ebook-features li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.ebook-features li:hover {
    transform: translateX(5px);
    color: var(--text-primary);
}

.ebook-features i {
    color: var(--primary-color);
    font-size: 1.2rem;
    background: rgba(124, 58, 237, 0.1);
    padding: 8px;
    border-radius: 50%;
}

.bonus-offer {
    background: linear-gradient(165deg, rgba(42, 42, 42, 0.95), rgba(34, 34, 34, 0.98));
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    border: 1px solid rgba(124, 58, 237, 0.2);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.bonus-offer:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.bonus-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--primary-color), #9F7AEA);
    color: white;
    padding: 0.4rem 1.5rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    text-wrap-mode: nowrap;
}

.bonus-offer h4 {
    color: var(--text-primary);
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.2rem;
}

.bonus-offer h4 i {
    color: var(--primary-color);
    font-size: 1.3rem;
    background: rgba(124, 58, 237, 0.1);
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 0 1rem;
}

.price {
    text-align: center;
    background: rgba(124, 58, 237, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    width: 100%;
}

.price-tag {
    color: var(--text-secondary);
    font-weight: bold;
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.original {
    display: block;
    color: var(--text-secondary);
    text-decoration: line-through;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    opacity: 0.7;
}

.current {
    display: block;
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: bold;
    background: linear-gradient(45deg, var(--primary-color), #9F7AEA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price .installments {
    display: block;
    color: var(--primary-color);
    font-size: 2rem;
    margin-top: 0.5rem;
    font-weight: bold;
}

.price .installments span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: normal;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(45deg, var(--primary-color), #9F7AEA);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.cta-button:hover {
    background: linear-gradient(45deg, #9F7AEA, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(124, 58, 237, 0.4);
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    background: rgba(124, 58, 237, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    width: 100%;
    justify-content: center;
}

.guarantee i {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .offer-container {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
    
    .main-offer {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(124, 58, 237, 0.2);
        padding-bottom: 2rem;
    }
    
    .price-action {
        padding-top: 1rem;
    }
    
    .ebook-features li {
        font-size: 1rem;
    }
    
    .current {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.2rem;
    }
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background-color: var(--dark-bg);
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(145deg, #222222, #1a1a1a);
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: white;
}

.whatsapp-float i {
    margin-top: 2px;
}

/* Responsive adjustments for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}

/* Footer Styles */
footer {
    background-color: var(--dark-card);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-brand h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 300px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.separator {
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .footer-info {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .price .current {
        font-size: 1.5rem;
    }
    
    .chapters-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .guarantee-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Estilos para páginas de Política de Privacidade e Termos de Uso */
.privacy-policy,
.terms {
    padding: 4rem 0;
    min-height: calc(100vh - 160px);
}

.privacy-policy h1,
.terms h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.policy-content,
.terms-content {
    background-color: var(--dark-card);
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.policy-content h2,
.terms-content h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.policy-content h2:first-child,
.terms-content h2:first-child {
    margin-top: 0;
}

.policy-content p,
.terms-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.policy-content ul,
.terms-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-secondary);
}

.policy-content li,
.terms-content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Navbar para páginas internas */
.navbar {
    background-color: var(--dark-card);
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar .logo:hover {
    color: var(--secondary-color);
}

.navbar-link {
    text-decoration: none
}

/* Responsividade */
@media (max-width: 768px) {
    .privacy-policy,
    .terms {
        padding: 2rem 0;
    }

    .privacy-policy h1,
    .terms h1 {
        font-size: 2rem;
    }

    .policy-content,
    .terms-content {
        padding: 1.5rem;
    }

    .policy-content h2,
    .terms-content h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .privacy-policy h1,
    .terms h1 {
        font-size: 1.75rem;
    }

    .policy-content,
    .terms-content {
        padding: 1rem;
    }
}

/* Animações de Scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay nas animações para elementos em sequência */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Seção Sobre o Autor */
.about-me {
    background-color: var(--dark-bg);
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-content {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.author-image-container {
    text-align: center;
}

.author-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
    margin: 0 auto;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.author-name {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 1.5rem;
    text-align: center;
}

.author-image-container .role {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 0.5rem;
    text-align: center;
}

.author-info .role {
    display: none;
}

.author-info h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.author-info h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin-top: 0.5rem;
}

.author-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.author-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    background-color: var(--dark-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(124, 58, 237, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.2);
}

.stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.stat-number .number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), #9F7AEA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-number .unit {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .about-me {
        padding: 4rem 1.5rem;
    }

    .about-content {
        flex-direction: column;
        gap: 2.5rem;
        align-items: center;
    }

    .author-profile {
        order: -1;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 1rem;
    }

    .author-image {
        width: 180px;
        height: 180px;
        margin-bottom: 1rem;
    }

    .author-info {
        text-align: center;
        padding: 0;
        width: 100%;
    }

    .author-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 1.5rem auto;
        max-width: 500px;
    }

    .author-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-me {
        padding: 3rem 1rem;
    }

    .author-image {
        width: 150px;
        height: 150px;
    }

    .author-name {
        font-size: 1.5rem;
    }

    .role {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .author-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 1.2rem auto;
    }

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

    .stat-value {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 1.2rem;
}

.social-link {
    color: var(--text-secondary);
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(124, 58, 237, 0.06), rgba(124, 58, 237, 0.02));
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
    box-shadow: 
        -1px -1px 4px rgba(255, 255, 255, 0.01),
        1px 1px 4px rgba(0, 0, 0, 0.2);
}

.social-link:hover {
    color: var(--primary-color);
    box-shadow: 
        -1px -1px 4px rgba(255, 255, 255, 0.02),
        1px 1px 6px rgba(124, 58, 237, 0.15);
}

.social-link i {
    text-decoration: none;
    border-bottom: none;
}

@media (max-width: 768px) {
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
}
