/* ============================================
   XIBATA A12+ - Estilo Futurista e Tecnológico
   ============================================ */

:root {
    --neon-blue: #27A9FF;
    --neon-green: #5DFF5A;
    --dark-bg: #0A0F1A;
    --dark-secondary: #0F1624;
    --text-light: #E0E0E0;
    --text-muted: #8A8A8A;
    --glow-blue: 0 0 20px rgba(39, 169, 255, 0.5), 0 0 40px rgba(39, 169, 255, 0.3);
    --glow-green: 0 0 20px rgba(93, 255, 90, 0.5), 0 0 40px rgba(93, 255, 90, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(39, 169, 255, 0.2);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    color: var(--neon-blue);
    text-shadow: var(--glow-blue);
}

.logo-accent {
    color: var(--neon-green);
    text-shadow: var(--glow-green);
}

.nav {
    display: flex;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(39, 169, 255, 0.5);
}

.nav-link:hover::after {
    width: 100%;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-green));
    color: #000;
    box-shadow: var(--glow-blue);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(39, 169, 255, 0.8);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
}

.btn-neon-blue {
    background: transparent;
    color: var(--neon-blue);
    border: 2px solid var(--neon-blue);
    box-shadow: var(--glow-blue);
}

.btn-neon-blue:hover {
    background: var(--neon-blue);
    color: #000;
    transform: translateY(-2px);
}

.btn-neon-green {
    background: transparent;
    color: var(--neon-green);
    border: 2px solid var(--neon-green);
    box-shadow: var(--glow-green);
}

.btn-neon-green:hover {
    background: var(--neon-green);
    color: #000;
    transform: translateY(-2px);
}

.btn-download {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-green));
    color: #000;
    width: 100%;
    margin-top: 1rem;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(93, 255, 90, 0.6);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(39, 169, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(93, 255, 90, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(39, 169, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(39, 169, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.3;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--neon-blue), transparent);
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}

.hero-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-particles::after {
    bottom: 20%;
    right: 10%;
    background: radial-gradient(circle, var(--neon-green), transparent);
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
}

.hero-logo-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-logo {
    width: 200px;
    height: auto;
    animation: logoFloat 3s ease-in-out infinite, logoGlow 2s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 30px rgba(39, 169, 255, 0.6));
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.1) rotate(5deg);
}

.hero-logo-text {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    animation: textGlow 2s ease-in-out infinite alternate;
}

.logo-text-main {
    color: var(--neon-blue);
    text-shadow: 0 0 20px rgba(39, 169, 255, 0.8), 0 0 40px rgba(39, 169, 255, 0.4);
}

.logo-text-accent {
    color: var(--neon-green);
    text-shadow: 0 0 20px rgba(93, 255, 90, 0.8), 0 0 40px rgba(93, 255, 90, 0.4);
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 20px rgba(39, 169, 255, 0.6)) drop-shadow(0 0 40px rgba(93, 255, 90, 0.3)); }
    100% { filter: drop-shadow(0 0 30px rgba(39, 169, 255, 0.9)) drop-shadow(0 0 60px rgba(93, 255, 90, 0.5)); }
}

@keyframes textGlow {
    0% { 
        text-shadow: 
            0 0 20px rgba(39, 169, 255, 0.8), 
            0 0 40px rgba(39, 169, 255, 0.4),
            0 0 20px rgba(93, 255, 90, 0.6),
            0 0 40px rgba(93, 255, 90, 0.3);
    }
    100% { 
        text-shadow: 
            0 0 30px rgba(39, 169, 255, 1), 
            0 0 60px rgba(39, 169, 255, 0.6),
            0 0 30px rgba(93, 255, 90, 0.8),
            0 0 60px rgba(93, 255, 90, 0.5);
    }
}

.hero-tool-preview {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tool-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 
        0 0 30px rgba(39, 169, 255, 0.4),
        0 0 60px rgba(93, 255, 90, 0.3),
        inset 0 0 30px rgba(39, 169, 255, 0.1);
    animation: toolFloat 4s ease-in-out infinite, toolPulse 3s ease-in-out infinite;
    transition: transform 0.3s ease;
    border: 2px solid rgba(39, 169, 255, 0.3);
}

.tool-image:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 40px rgba(39, 169, 255, 0.6),
        0 0 80px rgba(93, 255, 90, 0.5),
        inset 0 0 40px rgba(39, 169, 255, 0.2);
}

@keyframes toolFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(1deg); }
    50% { transform: translateY(-10px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(-1deg); }
}

@keyframes toolPulse {
    0%, 100% { 
        box-shadow: 
            0 0 30px rgba(39, 169, 255, 0.4),
            0 0 60px rgba(93, 255, 90, 0.3);
    }
    50% { 
        box-shadow: 
            0 0 40px rgba(39, 169, 255, 0.6),
            0 0 80px rgba(93, 255, 90, 0.5);
    }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(39, 169, 255, 0.5);
    line-height: 1.3;
    animation: fadeInUp 1s ease-out 0.3s both;
    padding: 0 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   DOWNLOADS SECTION
   ============================================ */

.downloads-section {
    background: var(--dark-secondary);
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.download-card {
    background: rgba(15, 22, 36, 0.8);
    border: 1px solid rgba(39, 169, 255, 0.2);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(39, 169, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.download-card:hover::before {
    left: 100%;
}

.download-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}

.download-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    color: var(--neon-blue);
}

.download-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(39, 169, 255, 0.5));
}

.download-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--neon-blue);
}

.download-version {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(93, 255, 90, 0.2);
    color: var(--neon-green);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(93, 255, 90, 0.3);
}

.download-description {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.download-size {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* ============================================
   RESSELLERS SECTION
   ============================================ */

.resselers-section {
    background: var(--dark-bg);
}

.resselers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.resseler-card {
    background: rgba(15, 22, 36, 0.8);
    border: 1px solid rgba(93, 255, 90, 0.2);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.resseler-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(93, 255, 90, 0.1), transparent);
    transition: left 0.5s ease;
}

.resseler-card:hover::before {
    left: 100%;
}

.resseler-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
    box-shadow: var(--glow-green);
}

.resseler-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--neon-green);
    box-shadow: var(--glow-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.resseler-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resseler-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-green));
    color: #000;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 2rem;
}

.resseler-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--neon-green);
}

.resseler-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(93, 255, 90, 0.1);
    border: 1px solid rgba(93, 255, 90, 0.3);
    border-radius: 5px;
    color: var(--neon-green);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact-link svg {
    width: 20px;
    height: 20px;
}

.contact-link:hover {
    background: var(--neon-green);
    color: #000;
    transform: translateX(5px);
}

.contact-link.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.3);
    color: #25D366;
}

.contact-link.whatsapp:hover {
    background: #25D366;
    color: #000;
}

.contact-link.telegram {
    background: rgba(0, 136, 204, 0.1);
    border-color: rgba(0, 136, 204, 0.3);
    color: #0088CC;
}

.contact-link.telegram:hover {
    background: #0088CC;
    color: #fff;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    background: var(--dark-secondary);
}

.about-text {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: rgba(15, 22, 36, 0.6);
    border: 1px solid rgba(39, 169, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--neon-blue);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px rgba(39, 169, 255, 0.5));
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--dark-bg);
    border-top: 1px solid rgba(39, 169, 255, 0.2);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-blue);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--neon-blue);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(39, 169, 255, 0.1);
    border: 1px solid rgba(39, 169, 255, 0.3);
    border-radius: 50%;
    color: var(--neon-blue);
    transition: all 0.3s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background: var(--neon-blue);
    color: #000;
    transform: translateY(-3px);
    box-shadow: var(--glow-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(39, 169, 255, 0.1);
    color: var(--text-muted);
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-logo {
        width: 150px;
    }

    .hero-logo-text {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .tool-image {
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .section-title {
        font-size: 2rem;
    }

    .downloads-grid,
    .resselers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

