/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #e0e0e0;
    line-height: 1.5;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== HEADER FIXO ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 0, 0.15);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.logo-img {
    height: 100px;  /* Ajuste conforme necessário */
    width: auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #00ff88);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.3);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #ddd;
    font-weight: 500;
    transition: 0.2s;
    position: relative;
}

.nav-links a:hover {
    color: #00ff88;
    text-shadow: 0 0 5px #00ff88;
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
}

.nav-icons i {
    font-size: 1.4rem;
    cursor: pointer;
    transition: 0.2s;
    color: #03fa2c;
    background: transparent;  /* Fundo transparente */
    font-style: normal;
    filter: grayscale(100%);
}

.nav-icons i:hover { 
    filter: grayscale(20%);
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #00ff88;
    filter: grayscale(20%);
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: radial-gradient(circle at 70% 20%, #0f0f0f, #030303);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-left h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.neon-brand {
    color: #00ff88;
    text-shadow: 0 0 12px #00ff88, 0 0 25px rgba(0, 255, 136, 0.4);
}

.hero-tagline {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #ccc;
}

.hero-desc {
    margin-bottom: 2rem;
    color: #aaa;
    max-width: 90%;
}

.btn-neon {
    display: inline-block;
    background: transparent;
    border: 1.5px solid #00ff88;
    color: #00ff88;
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: 0.3s;
    box-shadow: 0 0 5px rgba(0, 255, 136, 0.3);
    cursor: pointer;
    font-family: inherit;
}

.btn-neon:hover {
    background: #00ff88;
    color: #0a0a0a;
    box-shadow: 0 0 20px #00ff88;
    transform: scale(1.03);
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-self: center;
}
.hero-logo-img {
    max-width: 350px;
    width: 100%;
    height: auto;
}


.image-glow {
    background: linear-gradient(145deg, #1a1a1a, #050505);
    border-radius: 32px;
    padding: 8px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.8), 0 0 18px rgba(0, 255, 136, 0.2);
    transition: 0.3s;
}

.image-glow img {
    width: 500px;             /* Largura da imagem */
    height: auto;
    border-radius: 28px;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6));
}

.image-glow:hover img {
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.6));
    transform: scale(1.02);
}

/* ========== BENEFÍCIOS ========== */
.benefits {
    padding: 80px 0;
    background: #080808;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 48px;
    color: #fff;
}

.section-title span {
    color: #00ff88;
    text-shadow: 0 0 8px #00ff88;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #111;
    border-radius: 24px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid #222;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: #00ff88;
    box-shadow: 0 10px 25px -5px rgba(0, 255, 136, 0.2);
}

.benefit-icon {
    font-size: 2.8rem;
    color: #00ff88;
    margin-bottom: 16px;
    display: inline-block;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.benefit-card p {
    color: #aaa;
    font-size: 0.9rem;
}

/* ========== SEÇÃO SOBRE (MISSÃO, VISÃO, VALORES) ========== */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #080808, #030303);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card {
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 35px 28px;
    border: 1px solid rgba(0, 255, 136, 0.15);
    transition: all 0.3s ease;
    text-align: center;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: #00ff88;
    box-shadow: 0 20px 35px -12px rgba(0, 255, 136, 0.25);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

.about-card h3 {
    font-size: 1.8rem;
    color: #00ff88;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.about-card p {
    color: #bbb;
    line-height: 1.6;
    font-size: 0.95rem;
}

.values-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 10px;
}

.value-tag {
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.25);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #00ff88;
    font-weight: 500;
    transition: all 0.2s ease;
}

.value-tag:hover {
    background: rgba(0, 255, 136, 0.2);
    transform: scale(1.05);
    border-color: #00ff88;
}


/* ========== COLEÇÕES ========== */
.collections {
    padding: 80px 0;
    background: #0a0a0a;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.collection-card {
    background: #111;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.35s;
    border: 1px solid #222;
}

.collection-card:hover {
    transform: scale(1.02);
    border-color: #00ff88;
    box-shadow: 0 20px 30px -12px rgba(0, 255, 136, 0.25);
}

.card-img {
    overflow: hidden;
    height: 280px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-card:hover .card-img img {
    transform: scale(1.08);
}

.card-info {
    padding: 20px;
}

.card-info h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid #00ff88;
    color: #00ff88;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 500;
    transition: 0.2s;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    font-family: inherit;
}

.btn-outline:hover {
    background: #00ff88;
    color: #0a0a0a;
    box-shadow: 0 0 10px #00ff88;
}

/* ========== NYX ========== */
.nyx{
    background: linear-gradient(145deg, #0c0c0c, #040404);
    padding: 70px 20px;
    text-align: center;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.nyx-content h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.nyx-content p {
    color: #aaa;
    margin-bottom: 28px;
}

.form-group {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 550px;
    margin: 0 auto;
}

.form-group input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 60px;
    border: 1px solid #333;
    background: #0f0f0f;
    color: white;
    outline: none;
    transition: 0.2s;
    font-family: inherit;
}

.form-group input:focus {
    border-color: #00ff88;
    box-shadow: 0 0 8px #00ff88;
}

/* ========== FOOTER ========== */
.footer {
    background: #050505;
    padding: 60px 0 30px;
    border-top: 1px solid #1a1a1a;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #00ff88;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col p, .footer-col a {
    color: #aaa;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: 0.2s;
}

.footer-col a:hover {
    color: #00ff88;
    transform: translateX(5px);
    display: inline-block;
}

.social-icons {
    display: flex;
    gap: 18px;
    margin-top: 15px;
}

.social-icons img {
    width: 24px;  /* Defina o tamanho desejado */
    height: auto;
    font-size: 0.7rem;
    cursor: pointer;
    transition: 0.2s;
    color: #bbb;
}

.social-icons i:hover {
    color: #00ff88;
    text-shadow: 0 0 8px #00ff88;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #181818;
    font-size: 0.7rem;
    color: #666;
}

/* ========== MODAL DE LOGIN ========== */
.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.login-modal.show {
    display: flex;
    animation: modalFadeIn 0.3s ease forwards;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(135deg, #0f0f0f, #080808);
    border-radius: 32px;
    width: 90%;
    max-width: 480px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 255, 136, 0.2);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 15px;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.modal-header h2 {
    font-size: 1.6rem;
    background: linear-gradient(135deg, #fff, #00ff88);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.modal-close {
    font-size: 2rem;
    cursor: pointer;
    color: #aaa;
    transition: 0.2s;
    line-height: 1;
}

.modal-close:hover {
    color: #00ff88;
    transform: scale(1.1);
}

.modal-body {
    padding: 25px 30px 35px;
}

.login-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid #222;
}

.tab-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 0;
    cursor: pointer;
    transition: 0.2s;
    position: relative;
    font-family: inherit;
}

.tab-btn.active {
    color: #00ff88;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00ff88;
    box-shadow: 0 0 8px #00ff88;
}

.login-form {
    display: none;
}

.login-form.active {
    display: block;
    animation: formFade 0.3s ease;
}

@keyframes formFade {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #ccc;
    font-size: 0.85rem;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 14px 16px;
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    transition: 0.2s;
    outline: none;
    font-family: inherit;
}

.input-group input:focus {
    border-color: #00ff88;
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.3);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    font-size: 0.85rem;
    cursor: pointer;
}

.checkbox-label input {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #00ff88;
}

.forgot-password {
    color: #00ff88;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.2s;
}

.forgot-password:hover {
    text-shadow: 0 0 5px #00ff88;
}

.btn-login {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 1rem;
    cursor: pointer;
}

.login-message {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 10px;
    font-size: 0.85rem;
    text-align: center;
    display: none;
}

.login-message.success {
    display: block;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid #00ff88;
    color: #00ff88;
}

.login-message.error {
    display: block;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
    color: #ff8888;
}

.social-login {
    margin-top: 30px;
    text-align: center;
}

.social-login p {
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 15px;
    position: relative;
}

.social-login p::before,
.social-login p::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: #222;
}

.social-login p::before {
    left: 0;
}

.social-login p::after {
    right: 0;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #333;
    background: #111;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    font-family: inherit;
}

.social-btn:hover {
    border-color: #00ff88;
    color: #00ff88;
    transform: translateY(-3px);
}

/* ========== ANIMAÇÕES SCROLL ========== */
.fade-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.7s ease;
}

.fade-up.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Responsividade da Hero Section */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-left {
        order: 2;
    }
    
    .hero-right {
        order: 1;
    }
    
    .hero-left h1 {
        font-size: 2.5rem;
    }
    
    .hero-desc {
        max-width: 100%;
        margin: 0 auto 1.5rem auto;
    }
    
    .image-glow img {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .image-glow {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
    }
    
    .hero-desc {
        font-size: 0.8rem;
    }
    
    .btn-neon {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    .image-glow img {
        max-width: 220px;
    }
}

@media (max-width: 640px) {
    .logo-img {
        height: 60px;  /* Reduz no mobile */
    }
}

@media (max-width: 768px) {
    .hero-logo-img {
        max-width: 120px;
    }
}

/* ========== MENU RESPONSIVO ========== */
@media (max-width: 920px) {
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(12px);
        padding: 20px;
        border-radius: 24px;
        margin-top: 18px;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        text-align: center;
        gap: 1rem;
        border: 1px solid rgba(0, 255, 136, 0.2);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-container {
        flex-wrap: wrap;
        position: relative;
    }
    
    .nav-icons {
        order: 3;
        margin-left: auto;
    }
    
    .menu-toggle {
        order: 2;
        margin-left: 15px;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 15px 20px;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .nav-icons {
        gap: 0.8rem;
    }
    
    .nav-icons i {
        font-size: 1.2rem;
    }
}

