* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    color: #e8edff;
    background: #0a0a12;
    overflow-x: hidden;
}
body {
    background: linear-gradient(135deg, #0a0a12 0%, #0d0a1a 25%, #080a14 50%, #0d0a1a 75%, #0a0a12 100%);
    background-attachment: fixed;
    position: relative;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(108, 52, 181, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(156, 39, 176, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 80%, rgba(74, 20, 140, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 20%, rgba(108, 52, 181, 0.04) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
    animation: bgPulse 10s ease-in-out infinite alternate;
}
@keyframes bgPulse {
    0% { opacity: 0.4; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.05); }
}
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    z-index: 0;
    pointer-events: none;
    opacity: 0.2;
}
.main-content {
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: contentFadeIn 0.9s ease forwards;
    padding: 0.6rem;
    max-width: 1280px;
    margin: 0 auto;
}
@keyframes contentFadeIn {
    0% { opacity: 0; transform: translateY(30px) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
#intro-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background: #0a0a0f;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    animation: introFadeOut 1.2s ease forwards;
    animation-delay: 2.5s;
}
@keyframes introFadeOut {
    0% { opacity: 1; visibility: visible; }
    100% { opacity: 0; visibility: hidden; }
}
.intro-logo-wrapper {
    position: relative;
    width: 400px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: logoZoomIn 3.8s ease-in forwards;
    animation-delay: 0s;
}
@keyframes logoZoomIn {
    0% { transform: scale(0.6) rotate(-8deg); opacity: 0; }
    30% { transform: scale(1.1) rotate(1deg); opacity: 1; }
    60% { transform: scale(1) rotate(0deg); opacity: 1; }
    100% { transform: scale(12) rotate(0deg); opacity: 0.7; }
}
.intro-logo {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: 8px;
    background: linear-gradient(135deg, #c084fc, #7c3aed, #6d28d9, #4c1d95);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite alternate;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 60px rgba(108, 52, 181, 0.3);
}
.intro-logo i {
    -webkit-text-fill-color: initial;
    color: #7c3aed;
    margin-right: 10px;
    font-size: 4rem;
    filter: drop-shadow(0 0 30px rgba(108, 52, 181, 0.5));
    animation: iconPulse 2s ease-in-out infinite alternate;
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
@keyframes iconPulse {
    0% { transform: scale(1) rotate(-5deg); filter: drop-shadow(0 0 20px rgba(108, 52, 181, 0.3)); }
    100% { transform: scale(1.1) rotate(5deg); filter: drop-shadow(0 0 50px rgba(156, 39, 176, 0.6)); }
}
.intro-subtitle {
    position: absolute;
    bottom: 40px;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 12px;
    color: rgba(255, 255, 255, 0.08);
    text-transform: uppercase;
    animation: subtitleFade 3s ease-in-out forwards;
    animation-delay: 0s;
}
@keyframes subtitleFade {
    0% { opacity: 0; transform: translateY(20px); }
    50% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-20px); }
}
.intro-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, #7c3aed, #9d4edd);
    border-radius: 50%;
    animation: particleFloat linear infinite;
    opacity: 0;
}
.particle:nth-child(1) { left: 10%; animation-duration: 8s; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-duration: 10s; animation-delay: 0.5s; width: 6px; height: 6px; }
.particle:nth-child(3) { left: 30%; animation-duration: 7s; animation-delay: 1s; }
.particle:nth-child(4) { left: 40%; animation-duration: 9s; animation-delay: 0.3s; width: 8px; height: 8px; }
.particle:nth-child(5) { left: 50%; animation-duration: 11s; animation-delay: 0.7s; }
.particle:nth-child(6) { left: 60%; animation-duration: 8.5s; animation-delay: 1.2s; width: 5px; height: 5px; }
.particle:nth-child(7) { left: 70%; animation-duration: 9.5s; animation-delay: 0.2s; }
.particle:nth-child(8) { left: 80%; animation-duration: 7.5s; animation-delay: 0.8s; width: 7px; height: 7px; }
.particle:nth-child(9) { left: 90%; animation-duration: 10.5s; animation-delay: 1.5s; }
.particle:nth-child(10) { left: 15%; animation-duration: 12s; animation-delay: 0.1s; width: 3px; height: 3px; }
.particle:nth-child(11) { left: 45%; animation-duration: 8.2s; animation-delay: 0.9s; width: 6px; height: 6px; }
.particle:nth-child(12) { left: 75%; animation-duration: 9.8s; animation-delay: 0.4s; }
.particle:nth-child(13) { left: 25%; animation-duration: 7.2s; animation-delay: 1.1s; width: 4px; height: 4px; }
.particle:nth-child(14) { left: 55%; animation-duration: 10.2s; animation-delay: 0.6s; width: 8px; height: 8px; }
.particle:nth-child(15) { left: 85%; animation-duration: 5.8s; animation-delay: 0.5s; width: 5px; height: 5px; }
@keyframes particleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    20% { opacity: 0.8; }
    80% { opacity: 0.8; }
    100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}
.intro-ring {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 2px solid rgba(108, 52, 181, 0.05);
    animation: ringPulse 4s ease-in-out infinite;
}
.intro-ring:nth-child(2) { width: 600px; height: 600px; animation-delay: 1s; border-color: rgba(156, 39, 176, 0.03); }
.intro-ring:nth-child(3) { width: 700px; height: 700px; animation-delay: 2s; border-color: rgba(74, 20, 140, 0.03); }
@keyframes ringPulse {
    0% { transform: scale(0.8); opacity: 0.2; }
    50% { transform: scale(1.2); opacity: 0.6; }
    100% { transform: scale(0.8); opacity: 0.2; }
}
.blog-header {
    max-width: 1280px;
    margin: 0 auto 1.5rem auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.4rem 0.2rem;
    border-bottom: 1px solid rgba(108, 52, 181, 0.08);
    position: relative;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #c084fc, #7c3aed, #6d28d9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoGlow 3s infinite alternate;
}
@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 4px rgba(108, 52, 181, 0.15)); }
    100% { filter: drop-shadow(0 0 20px rgba(108, 52, 181, 0.4)); }
}
.logo i {
    -webkit-text-fill-color: initial;
    color: #7c3aed;
    font-size: 1.6rem;
    filter: drop-shadow(0 0 10px #6d28d9);
    animation: iconFloat 3s infinite alternate;
}
@keyframes iconFloat {
    0% { transform: rotate(-5deg) scale(1); }
    100% { transform: rotate(5deg) scale(1.08); }
}
.main-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem 0.8rem;
}
.nav-link {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.2px;
    padding: 0.2rem 0.2rem;
    border-bottom: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}
.nav-link i {
    font-size: 0.75rem;
    opacity: 0.6;
    transition: transform 0.3s ease;
}
.nav-link:hover {
    color: #e8edff;
    border-bottom-color: #7c3aed;
    transform: translateY(-2px);
    text-shadow: 0 0 12px rgba(108, 52, 181, 0.25);
}
.nav-link:hover i {
    transform: rotate(8deg) scale(1.12);
    opacity: 1;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7c3aed, #9d4edd);
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.nav-link:hover::after {
    width: 100%;
}
.nav-cta {
    background: linear-gradient(135deg, #6d28d9, #9d4edd);
    padding: 0.35rem 1.2rem;
    border-radius: 60px;
    font-weight: 700;
    color: #fff !important;
    border-bottom: none !important;
    box-shadow: 0 4px 16px rgba(108, 52, 181, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: ctaPulse 2.8s infinite alternate;
    font-size: 0.75rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.nav-cta:hover {
    transform: scale(1.06) translateY(-2px);
    box-shadow: 0 8px 32px rgba(108, 52, 181, 0.5);
    border-bottom: none !important;
}
.nav-cta::after {
    display: none;
}
@keyframes ctaPulse {
    0% { box-shadow: 0 4px 16px rgba(108, 52, 181, 0.3); }
    100% { box-shadow: 0 4px 32px rgba(156, 39, 176, 0.5); }
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.4rem 0.5rem;
    background: rgba(108, 52, 181, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(108, 52, 181, 0.2);
    transition: all 0.3s ease;
}
.hamburger:hover {
    background: rgba(108, 52, 181, 0.2);
    border-color: rgba(108, 52, 181, 0.4);
    transform: scale(1.05);
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: #c084fc;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 0 10px rgba(108, 52, 181, 0.2);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
    padding: 0.8rem 0.5rem;
    background: rgba(8, 10, 18, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 1rem;
    border: 1px solid rgba(108, 52, 181, 0.06);
    margin-top: 0.4rem;
    animation: mobileSlide 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@keyframes mobileSlide {
    0% { opacity: 0; transform: translateY(-12px) scale(0.96); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.mobile-nav .nav-link {
    padding: 0.4rem 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.85rem;
}
.mobile-nav .nav-cta {
    text-align: center;
    padding: 0.5rem;
    margin-top: 0.2rem;
}
.hero-section {
    padding: 0.5rem 0 1.2rem;
    position: relative;
    z-index: 1;
}
.hero-image {
    width: 100%;
    max-width: 100%;
    border-radius: 1.2rem;
    overflow: hidden;
    border: 1px solid rgba(108, 52, 181, 0.08);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 40px rgba(108, 52, 181, 0.04);
    transition: all 0.4s ease;
}
.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.hero-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7), 0 0 60px rgba(108, 52, 181, 0.06);
    border-color: rgba(108, 52, 181, 0.15);
}
.section-block {
    max-width: 1280px;
    margin: 1.5rem auto;
    padding: 1.2rem 1rem;
    background: rgba(12, 10, 24, 0.45);
    backdrop-filter: blur(10px);
    border-radius: 2.5rem 0.8rem 2.5rem 0.8rem;
    border: 1px solid rgba(108, 52, 181, 0.04);
    opacity: 0;
    transform: translateY(50px) scale(0.97);
    transition: all 0.9s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 1;
}
.section-block.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}
.section-block:nth-child(2) { transition-delay: 0.1s; }
.section-block:nth-child(3) { transition-delay: 0.2s; }
.section-block:nth-child(4) { transition-delay: 0.3s; }
.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, #e8edff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-title i {
    -webkit-text-fill-color: initial;
    color: #7c3aed;
    font-size: 1.6rem;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.8rem;
}
.pricing-card {
    background: rgba(12, 10, 24, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 1.6rem 0.6rem 1.6rem 0.6rem;
    padding: 1.2rem 1rem;
    border: 1px solid rgba(108, 52, 181, 0.04);
    transition: all 0.4s ease;
    text-align: center;
}
.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(108, 52, 181, 0.15);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}
.pricing-card .plan-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6d28d9, #9d4edd);
    padding: 0.1rem 0.8rem;
    border-radius: 30px;
    font-size: 0.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.pricing-card .plan-badge.free {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.3);
}
.pricing-card .plan-name {
    font-size: 1.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #e8edff, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pricing-card .plan-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: #e8edff;
    margin: 0.3rem 0;
}
.pricing-card .plan-detail {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    border-top: 1px solid rgba(108, 52, 181, 0.06);
    padding-top: 0.6rem;
    margin-top: 0.4rem;
    line-height: 1.4;
}
.catalogo-destaque {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.4rem 0.2rem 1.2rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}
.catalogo-destaque::-webkit-scrollbar {
    height: 4px;
    background: rgba(108, 52, 181, 0.04);
    border-radius: 10px;
}
.catalogo-destaque::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #6d28d9, #9d4edd);
    border-radius: 10px;
}
.product-thumb {
    min-width: 150px;
    width: 150px;
    border-radius: 1.2rem 0.4rem 1.2rem 0.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    font-weight: 700;
    font-size: 0.7rem;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(108, 52, 181, 0.06);
    padding: 0.5rem;
    text-align: center;
    flex-shrink: 0;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    animation: thumbFloat 4s infinite alternate ease-in-out;
}
.product-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 8, 18, 0.85) 0%, rgba(8, 8, 18, 0.2) 50%, transparent 100%);
    border-radius: inherit;
    z-index: 1;
    transition: opacity 0.4s ease;
}
.product-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: conic-gradient(from 0deg, #6d28d9, #9d4edd, #7c3aed, #6d28d9);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
}
.product-thumb:hover::after {
    opacity: 0.6;
    animation: borderSpin 4s linear infinite;
}
@keyframes borderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.product-thumb .watermark {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 0.4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.1rem 0.4rem;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.03);
}
.product-thumb .product-title {
    position: relative;
    z-index: 2;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
    padding: 0.15rem 0.5rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    margin-bottom: 0.2rem;
    width: 90%;
    transition: transform 0.3s ease;
}
.product-thumb:hover .product-title {
    transform: scale(1.05);
}
.product-thumb:hover {
    transform: scale(1.05) translateY(-6px);
    border-color: rgba(108, 52, 181, 0.25);
    box-shadow: 0 16px 48px rgba(108, 52, 181, 0.2), 0 0 30px rgba(108, 52, 181, 0.05);
}
.product-thumb .thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(108, 52, 181, 0.08), transparent 60%);
    z-index: 0;
    border-radius: inherit;
}
@keyframes thumbFloat {
    0% { transform: translateY(0px) rotate(0.2deg); }
    100% { transform: translateY(-8px) rotate(-0.2deg); }
}
.product-thumb:nth-child(1) { animation-delay: 0.1s; }
.product-thumb:nth-child(2) { animation-delay: 0.6s; }
.product-thumb:nth-child(3) { animation-delay: 1.1s; }
.product-thumb:nth-child(4) { animation-delay: 0.3s; }
.product-thumb:nth-child(5) { animation-delay: 0.8s; }
.product-thumb:nth-child(6) { animation-delay: 0.5s; }
.product-thumb:nth-child(7) { animation-delay: 1.0s; }
.product-thumb:nth-child(8) { animation-delay: 0.2s; }
.product-thumb:nth-child(9) { animation-delay: 0.7s; }
.product-thumb:nth-child(10) { animation-delay: 0.4s; }
.product-thumb:nth-child(11) { animation-delay: 0.9s; }
.product-thumb:nth-child(12) { animation-delay: 0.15s; }
.product-thumb:nth-child(13) { animation-delay: 0.65s; }
.product-thumb:nth-child(14) { animation-delay: 1.15s; }
.product-thumb:nth-child(15) { animation-delay: 0.35s; }
.product-thumb:nth-child(16) { animation-delay: 0.85s; }
.product-thumb:nth-child(17) { animation-delay: 0.55s; }
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}
.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 1.2rem;
    border-left: 3px solid #6d28d9;
    transition: all 0.3s ease;
    overflow: hidden;
}
.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-left-color: #9d4edd;
}
.faq-q {
    font-weight: 700;
    color: #c084fc;
    font-size: 0.9rem;
    display: flex;
    gap: 10px;
    padding: 0.9rem 1rem;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    user-select: none;
    transition: background 0.2s ease;
}
.faq-q:hover {
    background: rgba(255, 255, 255, 0.02);
}
.faq-q i:first-child {
    color: #9d4edd;
    font-size: 0.6rem;
}
.faq-q .fa-chevron-down {
    color: #7c3aed;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    font-size: 0.8rem;
}
.faq-item.active .faq-q .fa-chevron-down {
    transform: rotate(180deg);
}
.faq-a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    line-height: 1.6;
    padding: 0 1rem 1rem 1rem;
    border-top: 1px solid rgba(108, 52, 181, 0.04);
    margin-top: 0.2rem;
    display: none;
    animation: faqExpand 0.35s ease;
}
.faq-item.active .faq-a {
    display: block;
}
@keyframes faqExpand {
    0% { opacity: 0; transform: translateY(-6px); }
    100% { opacity: 1; transform: translateY(0); }
}
.footer-note {
    max-width: 1280px;
    margin: 1.5rem auto 0.3rem;
    text-align: center;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(108, 52, 181, 0.04);
    padding-top: 1.2rem;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}
.comunidade-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.comunidade-card {
    background: rgba(16, 18, 32, 0.4);
    backdrop-filter: blur(8px);
    padding: 1rem 1.2rem;
    border-radius: 1.6rem 0.4rem 1.6rem 0.4rem;
    min-width: 120px;
    flex: 1 0 auto;
    text-align: center;
    border: 1px solid rgba(108, 52, 181, 0.04);
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
}
.comunidade-card:hover {
    transform: scale(1.04) translateY(-4px);
    background: rgba(24, 26, 48, 0.5);
    border-color: rgba(108, 52, 181, 0.12);
}
.comunidade-card i {
    font-size: 1.8rem;
    color: #7c3aed;
    margin-bottom: 0.2rem;
    display: block;
}
.comunidade-card h4 {
    font-weight: 700;
    color: #d0d8f0;
    font-size: 0.85rem;
}
.comunidade-card p {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.6rem;
    margin-top: 0.2rem;
}
.about-text {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
}
.about-text strong {
    background: linear-gradient(135deg, #c084fc, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}
.about-highlight {
    color: #9d4edd;
    font-weight: 600;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.8rem;
    margin: 1rem 0;
}
.feature-item {
    background: rgba(255, 255, 255, 0.015);
    padding: 0.8rem 1rem;
    border-radius: 0.8rem;
    border: 1px solid rgba(108, 52, 181, 0.04);
    transition: all 0.3s ease;
}
.feature-item:hover {
    border-color: rgba(108, 52, 181, 0.12);
    background: rgba(255, 255, 255, 0.025);
    transform: translateY(-2px);
}
.feature-item h5 {
    color: #c084fc;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}
.feature-item h5 i {
    margin-right: 4px;
}
.feature-item p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    line-height: 1.5;
}
@media (max-width: 920px) {
    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }
    .main-nav {
        display: none;
    }
    .hamburger {
        display: flex;
        align-self: flex-end;
    }
    .mobile-nav.open {
        display: flex;
    }
    .intro-logo {
        font-size: 3.2rem;
        letter-spacing: 4px;
    }
    .intro-logo i {
        font-size: 2.8rem;
    }
    .intro-logo-wrapper {
        width: 300px;
        height: 220px;
    }
    .intro-ring {
        width: 350px;
        height: 350px;
    }
    .intro-ring:nth-child(2) {
        width: 420px;
        height: 420px;
    }
    .intro-ring:nth-child(3) {
        width: 490px;
        height: 490px;
    }
}
@media (max-width: 640px) {
    .main-content {
        padding: 0.5rem;
    }
    .logo {
        font-size: 1.2rem;
    }
    .logo i {
        font-size: 1.4rem;
    }
    .section-title {
        font-size: 1.3rem;
    }
    .section-block {
        padding: 0.8rem 0.6rem;
        margin: 1rem auto;
    }
    .product-thumb {
        min-width: 120px;
        width: 120px;
    }
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }
    .pricing-card .plan-price {
        font-size: 1.4rem;
    }
    .intro-logo {
        font-size: 2.4rem;
        letter-spacing: 2px;
    }
    .intro-logo i {
        font-size: 2rem;
    }
    .intro-logo-wrapper {
        width: 220px;
        height: 160px;
    }
    .intro-ring {
        width: 250px;
        height: 250px;
    }
    .intro-ring:nth-child(2) {
        width: 300px;
        height: 300px;
    }
    .intro-ring:nth-child(3) {
        width: 350px;
        height: 350px;
    }
    .intro-subtitle {
        font-size: 0.7rem;
        letter-spacing: 6px;
        bottom: 20px;
    }
    .hero-image {
        border-radius: 0.8rem;
    }
    .hero-image img {
        width: 100%;
        height: auto;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
}