* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 25%, #0d1a2e 50%, #1a0a2e 75%, #0a0a1a 100%);
    background-attachment: fixed;
    color: #e8edff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(244, 114, 182, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 80%, rgba(96, 165, 250, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 20%, rgba(167, 139, 250, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
    animation: bgPulse 8s ease-in-out infinite alternate;
}
@keyframes bgPulse {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; 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.3;
}
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.02);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8b5cf6, #ec4899);
    border-radius: 10px;
}
.wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4%;
    position: relative;
    z-index: 1;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(30px); }
}
@keyframes glowPulse {
    0%, 100% { text-shadow: 0 0 20px rgba(167, 139, 250, 0.3); }
    50% { text-shadow: 0 0 40px rgba(167, 139, 250, 0.6), 0 0 80px rgba(167, 139, 250, 0.2); }
}
@keyframes borderGlow {
    0% { border-color: rgba(139, 92, 246, 0.3); }
    50% { border-color: rgba(244, 114, 182, 0.6); }
    100% { border-color: rgba(139, 92, 246, 0.3); }
}
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0f;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: introFadeOut 1.2s ease forwards;
    animation-delay: 2.8s;
}
@keyframes introFadeOut {
    0% { opacity: 1; visibility: visible; }
    100% { opacity: 0; visibility: hidden; }
}
.intro-overlay .intro-title {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: 8px;
    background: linear-gradient(135deg, #f472b6, #c084fc, #60a5fa, #f472b6);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite alternate, logoZoomIn 3.8s ease-in forwards;
    display: flex;
    align-items: center;
    gap: 16px;
}
.intro-overlay .intro-title i {
    -webkit-text-fill-color: initial;
    color: #c084fc;
    font-size: 4rem;
    filter: drop-shadow(0 0 40px rgba(167, 139, 250, 0.5));
    animation: iconPulse 2s ease-in-out infinite alternate;
}
@keyframes iconPulse {
    0% { transform: scale(1) rotate(-5deg); filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.3)); }
    100% { transform: scale(1.1) rotate(5deg); filter: drop-shadow(0 0 50px rgba(244, 114, 182, 0.6)); }
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
@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-overlay .intro-sub {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 12px;
    color: rgba(255,255,255,0.15);
    text-transform: uppercase;
    margin-top: 10px;
    animation: subtitleFade 3s ease-in-out forwards;
}
@keyframes subtitleFade {
    0% { opacity: 0; transform: translateY(20px); }
    50% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-20px); }
}
.intro-overlay .particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, #c084fc, #f472b6);
    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; }
@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(192,132,252,0.05);
    animation: ringPulse 4s ease-in-out infinite;
}
.intro-ring:nth-child(2) { width: 600px; height: 600px; animation-delay: 1s; border-color: rgba(244,114,182,0.03); }
.intro-ring:nth-child(3) { width: 700px; height: 700px; animation-delay: 2s; border-color: rgba(96,165,250,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; }
}
.header {
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.4s ease;
    background: linear-gradient(180deg, rgba(10,10,26,0.95) 0%, rgba(10,10,26,0.6) 70%, transparent 100%);
}
.header.scrolled {
    background: rgba(10,10,26,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(167,139,250,0.1);
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #f472b6, #c084fc, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}
.logo i {
    -webkit-text-fill-color: initial;
    color: #a78bfa;
    font-size: 1.2rem;
}
.menu-toggle {
    background: none;
    border: none;
    color: #a78bfa;
    font-size: 22px;
    cursor: pointer;
    padding: 6px 10px;
    transition: transform 0.3s;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(4px);
    border-radius: 8px;
    border: 1px solid rgba(167,139,250,0.1);
}
.menu-toggle:hover {
    transform: scale(1.05);
    border-color: rgba(167,139,250,0.3);
}
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
.menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: rgba(10,10,26,0.95);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(167,139,250,0.15);
    z-index: 300;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
    padding: 30px 24px;
    overflow-y: auto;
    box-shadow: -4px 0 60px rgba(0,0,0,0.8);
}
.menu-panel.open {
    transform: translateX(0);
}
.menu-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.3);
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s, color 0.3s;
    font-family: 'Inter', sans-serif;
    float: right;
}
.menu-close:hover {
    transform: rotate(90deg);
    color: #c084fc;
}
.menu-brand {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 900;
    background: linear-gradient(135deg, #f472b6, #c084fc, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 30px 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.menu-brand i {
    -webkit-text-fill-color: initial;
    color: #a78bfa;
    font-size: 18px;
}
.menu-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 20px;
}
.menu-nav li {
    padding: 12px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    border-left: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 12px;
}
.menu-nav li:hover {
    background: rgba(167,139,250,0.08);
    color: #e8edff;
    border-left-color: #a78bfa;
    transform: translateX(4px);
}
.menu-nav li.active {
    color: #c084fc;
    border-left-color: #c084fc;
    background: rgba(167,139,250,0.06);
}
.menu-nav li i {
    width: 20px;
    text-align: center;
    color: #a78bfa;
    font-size: 16px;
}
.menu-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(167,139,250,0.2), transparent);
    margin: 14px 0;
}
.menu-section-title {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.15);
    margin: 14px 0 6px 14px;
    font-weight: 300;
}
.menu-services {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.menu-services li {
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.3);
    border-left: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 12px;
}
.menu-services li:hover {
    background: rgba(167,139,250,0.06);
    color: #e8edff;
    border-left-color: #a78bfa;
}
.menu-services li i {
    width: 18px;
    text-align: center;
    color: #a78bfa;
}
.hero {
    padding-top: 90px;
    padding-bottom: 30px;
    position: relative;
    z-index: 1;
}
.hero-content {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.3s;
}
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(167,139,250,0.2), rgba(244,114,182,0.1));
    padding: 4px 16px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c084fc;
    border: 1px solid rgba(167,139,250,0.15);
    margin-bottom: 12px;
    backdrop-filter: blur(4px);
}
.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 10px;
    background: linear-gradient(180deg, #e8edff 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glowPulse 4s ease-in-out infinite;
}
.hero-title .highlight {
    background: linear-gradient(135deg, #f472b6, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
    margin: 14px 0 20px;
    max-width: 500px;
    font-weight: 300;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}
.btn-secondary {
    background: rgba(255,255,255,0.04);
    color: #e8edff;
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(4px);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(167,139,250,0.2);
    transform: translateY(-2px);
}
.section-block {
    padding: 30px 0 20px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.23,1,0.32,1);
}
.section-block.revealed {
    opacity: 1;
    transform: translateY(0);
}
.section-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #e8edff, #a78bfa);
    -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: #a78bfa;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.about-card {
    background: rgba(16,20,38,0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.03);
    transition: all 0.4s ease;
}
.about-card:hover {
    transform: translateY(-4px);
    border-color: rgba(167,139,250,0.12);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.about-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #e8edff;
    margin-bottom: 8px;
}
.about-card p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.7;
}
.about-card .icon {
    font-size: 28px;
    color: #a78bfa;
    margin-bottom: 10px;
    display: block;
}
.carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}
.carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 6px 2px 16px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar {
    display: none;
}
.carousel-card {
    flex: 0 0 auto;
    width: 220px;
    background: rgba(16,20,38,0.5);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
    cursor: pointer;
    animation: cardFloat 4s infinite alternate ease-in-out;
    position: relative;
    overflow: hidden;
}
.carousel-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(167,139,250,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(167,139,250,0.08);
}
.carousel-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1.5px;
    background: conic-gradient(from 0deg, #8b5cf6, #ec4899, #fbbf24, #8b5cf6);
    -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;
}
.carousel-card:hover::before {
    opacity: 0.6;
    animation: borderSpin 4s linear infinite;
}
@keyframes borderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.carousel-card .card-thumb {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
    background: rgba(16,20,38,0.6);
    border: 1px solid rgba(255,255,255,0.03);
    position: relative;
    z-index: 1;
}
.carousel-card .card-icon {
    font-size: 24px;
    color: #c084fc;
    display: block;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}
.carousel-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: #e8edff;
    position: relative;
    z-index: 1;
}
.carousel-card p {
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    margin-top: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.carousel-card .card-tag {
    display: inline-block;
    margin-top: 8px;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: #fff;
    position: relative;
    z-index: 1;
}
.carousel-card .card-type {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 8px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}
.carousel-card .card-type.servico {
    color: #a78bfa;
    border-color: rgba(167,139,250,0.15);
}
.carousel-card .card-type.criacao {
    color: #fbbf24;
    border-color: rgba(251,191,36,0.15);
}
@keyframes cardFloat {
    0% { transform: translateY(0px) rotate(0.3deg); }
    100% { transform: translateY(-6px) rotate(-0.3deg); }
}
.carousel-card:nth-child(1) { animation-delay: 0.1s; }
.carousel-card:nth-child(2) { animation-delay: 0.6s; }
.carousel-card:nth-child(3) { animation-delay: 1.2s; }
.carousel-card:nth-child(4) { animation-delay: 0.3s; }
.carousel-card:nth-child(5) { animation-delay: 0.9s; }
.carousel-card:nth-child(6) { animation-delay: 0.5s; }
.carousel-card:nth-child(7) { animation-delay: 1.1s; }
.carousel-card:nth-child(8) { animation-delay: 0.7s; }
.carousel-card:nth-child(9) { animation-delay: 0.2s; }
.carousel-card:nth-child(10) { animation-delay: 0.8s; }
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
}
.faq-item {
    background: rgba(16,20,38,0.3);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    border-left: 3px solid #8b5cf6;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover {
    background: rgba(16,20,38,0.5);
    border-left-color: #ec4899;
}
.faq-q {
    font-weight: 600;
    color: #c4b5fd;
    font-size: 14px;
    display: flex;
    gap: 10px;
    padding: 14px 16px;
    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: #f472b6;
    font-size: 0.6rem;
}
.faq-q .fa-chevron-down {
    color: #a78bfa;
    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.5);
    font-size: 13px;
    line-height: 1.7;
    padding: 0 16px 16px 16px;
    border-top: 1px solid rgba(255,255,255,0.03);
    margin-top: 2px;
    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); }
}
.comunidade-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.comunidade-card {
    background: rgba(16,20,38,0.4);
    backdrop-filter: blur(8px);
    padding: 20px 24px;
    border-radius: 16px;
    min-width: 140px;
    flex: 1 0 auto;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.015);
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    animation: cardFloat 5s infinite alternate;
}
.comunidade-card:hover {
    transform: scale(1.04) translateY(-4px);
    background: rgba(24,30,52,0.5);
    border-color: rgba(167,139,250,0.12);
}
.comunidade-card i {
    font-size: 2rem;
    color: #a78bfa;
    margin-bottom: 4px;
    display: block;
}
.comunidade-card h4 {
    font-weight: 700;
    color: #d0d8f0;
    font-size: 14px;
}
.comunidade-card p {
    color: #8493b8;
    font-size: 11px;
    margin-top: 2px;
}
.footer {
    padding: 24px 0 16px;
    border-top: 1px solid rgba(255,255,255,0.02);
    margin-top: 20px;
    text-align: center;
}
.footer p {
    color: rgba(255,255,255,0.1);
    font-size: 12px;
    letter-spacing: 0.5px;
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(20px);
    z-index: 500;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}
.modal-overlay.active {
    display: flex;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.modal-content {
    max-width: 500px;
    width: 100%;
    background: rgba(16,20,38,0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(167,139,250,0.1);
    padding: 28px;
    animation: modalSlide 0.4s cubic-bezier(0.23,1,0.32,1);
}
@keyframes modalSlide {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
    float: right;
    background: none;
    border: none;
    color: rgba(255,255,255,0.3);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
    font-family: 'Inter', sans-serif;
}
.modal-close:hover {
    color: #c084fc;
    transform: rotate(90deg);
}
.modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #e8edff;
    margin-bottom: 8px;
}
.modal-thumb {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
    background: rgba(16,20,38,0.6);
    border: 1px solid rgba(255,255,255,0.03);
}
.modal-desc {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}
.modal-btn {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 60px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(139,92,246,0.3);
}
.modal-btn:disabled {
    opacity: 0.5;
    cursor: default;
    transform: none;
}
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 30px;
    }
    .intro-overlay .intro-title {
        font-size: 2.8rem;
        letter-spacing: 4px;
    }
    .intro-overlay .intro-title i {
        font-size: 2.5rem;
    }
    .intro-ring { width: 350px; height: 350px; }
    .intro-ring:nth-child(2) { width: 420px; height: 420px; }
    .intro-ring:nth-child(3) { width: 490px; height: 490px; }
    .menu-panel {
        width: 280px;
        padding: 24px 16px;
    }
    .carousel-card {
        width: 180px;
    }
    .carousel-card .card-thumb {
        height: 100px;
    }
    .section-title {
        font-size: 22px;
    }
}
@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    .intro-overlay .intro-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    .intro-overlay .intro-title i {
        font-size: 1.8rem;
    }
    .intro-ring { width: 250px; height: 250px; }
    .intro-ring:nth-child(2) { width: 300px; height: 300px; }
    .intro-ring:nth-child(3) { width: 350px; height: 350px; }
    .menu-panel {
        width: 240px;
        padding: 20px 12px;
    }
    .carousel-card {
        width: 150px;
        padding: 12px;
    }
    .carousel-card .card-thumb {
        height: 80px;
    }
    .comunidade-card {
        min-width: 100px;
        padding: 14px 16px;
    }
}
.header-greeting {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.3);
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-left: -3px;
    padding-left: 8px;
    border-left: 1px solid rgba(255,255,255,0.05);
    white-space: nowrap;
    transition: opacity 0.5s ease;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width: 480px) {
    .header-greeting {
        font-size: 0.5rem;
        margin-left: -5px;
        padding-left: 4px;
        max-width: 140px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
@media (max-width: 380px) {
    .header-greeting {
        font-size: 0.5rem;
        max-width: 90px;
    }
}
.hero-gif-container {
    margin-top: 24px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.04);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
    max-width: 700px;
    background: #0a0a1a;
}
.hero-gif {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
@media (max-width: 768px) {
    .hero-gif-container {
        max-width: 100%;
        margin-top: 16px;
        border-radius: 12px;
    }
}