:root {
    --primary: #7ab4c3; /* Pêssego suave */
    --secondary: #5acd96; /* Azul céu */
    --accent: #558d62; /* Areia */
    --text: #5d5d5d;
    --bg-gradient: linear-gradient(135deg, #ffe8d7 0%, #aeeefe 50%, #aeb3fe 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: var(--bg-gradient);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

header {
    padding: 20px 10%;
}

/* Navbar Moderna */
#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(221, 255, 240, 0.4);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid rgba(0, 213, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.logo span { color: var(--primary); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-item {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: 0.3s;
    position: relative;
}

/* Interação no Menu */
.nav-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: 0.3s;
}

.nav-item:hover::after { width: 100%; }

.nav-item:hover { color: var(--primary); }

/* Botões */
.btn-download {
    background: var(--primary);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(84, 108, 78, 0.4);
}

.btn-login {
    text-decoration: none;
    color: var(--text);
    margin-right: 20px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 500px;
    margin-bottom: 30px;
}

/* Status Online Animado */
.server-status {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.6);
    padding: 10px 20px;
    border-radius: 30px;
    width: fit-content;
}

.pecopeco {
	width: 80%;
}
/* Container que ocupa a tela toda atrás de tudo */
#wind-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Garante que fique atrás do conteúdo */
    overflow: hidden;
    pointer-events: none; /* Não interfere nos cliques */
}

/* A partícula de "brisa" */
.wind-particle {
    position: absolute;
    background: rgb(255, 255, 255); /* Branco bem transparente */
    height: 50px;
    border-radius: 100%;
    filter: blur(10px);
    animation: drift linear infinite;
}

/* Animação do vento */
@keyframes drift {
    0% {
        transform: translateX(-100px) translateY(0) rotate(10deg);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateX(110vw) translateY(100px) rotate(10deg);
        opacity: 0;
    }
}
.status-dot {
    width: 10px;
    height: 10px;
    background: #77dd77;
    border-radius: 50%;
    box-shadow: 0 0 10px #77dd77;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

/* Imagem flutuante */
.floating-card {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
/* Container Centralizado */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 20px;
}

/* Card de Registro */
.register-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 450px;
    text-align: center;
}

.register-card h2 {
    font-family: 'Poppins', sans-serif;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.register-card p {
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #7a7a7a;
}

/* Formulário e Inputs */
.input-group {
    text-align: left;
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    padding-left: 10px;
}

.input-group input[type="text"],
.input-group input[type="email"],
.input-group input[type="password"] {
    width: 100%;
    padding: 12px 20px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.8);
    font-family: 'Quicksand', sans-serif;
    transition: 0.3s;
    outline: none;
}

.input-group input:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 10px rgba(255, 180, 162, 0.2);
}

/* Opções de Gênero (Custom Radio) */
.gender-options {
    display: flex;
    gap: 20px;
    padding-left: 10px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
}

.radio-label input {
    accent-color: var(--primary);
}

/* Botão de Registro Especial */
.btn-register {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 25px;
    background: var(--primary);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 180, 162, 0.4);
    filter: brightness(1.05);
}

.card-footer {
    margin-top: 25px;
    font-size: 0.85rem;
}

.card-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}

/* Layout da Página de Download */
.download-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.download-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.download-header p {
    color: #7a7a7a;
    margin-bottom: 50px;
}

/* Grid de Cards */
.download-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.download-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    padding: 40px;
    width: 350px;
    transition: 0.4s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.download-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.download-card.main-card {
    border: 2px solid var(--primary);
}

.badge {
    position: absolute;
    top: -15px;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.download-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.download-card h3 {
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.download-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.file-info {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 25px;
}

/* Botões de Download */
.btn-dl {
    background: var(--primary);
    color: white;
    width: 100%;
    padding: 12px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 10px;
    transition: 0.3s;
}

.btn-dl-alt {
    color: var(--text);
    font-size: 0.9rem;
    text-decoration: underline;
    transition: 0.3s;
}

.btn-dl:hover { filter: brightness(1.1); }
.btn-dl-alt:hover { color: var(--primary); }

/* Seção de Requisitos */
.requirements {
    background: rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 25px;
    display: inline-block;
}

.req-list {
    display: flex;
    gap: 40px;
    margin-top: 15px;
    font-size: 0.9rem;
    flex-wrap: wrap;
    justify-content: center;
}
/* Estilos Específicos para o Login */
.login-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    padding: 50px 40px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
    width: 100%;
    max-width: 400px;
    text-align: center;
    animation: fadeInSlide 0.8s ease-out;
}

@keyframes fadeInSlide {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.avatar-preview {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    margin-bottom: 25px;
    padding: 0 5px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #7a7a7a;
}

.remember-me input {
    accent-color: var(--primary);
}

.forgot-pass {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.btn-enter {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(90deg, var(--primary), #ffc3a0);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(255, 180, 162, 0.3);
}

.btn-enter:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 25px rgba(255, 180, 162, 0.5);
}
/* Container de Informações */
.info-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.info-header {
    text-align: center;
    margin-bottom: 50px;
}

.info-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #4a4a4a;
}

/* Cards de Rates */
.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20px, 1fr));
    gap: 20px;
    margin-bottom: 80px;
}

.rate-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 30px;
    border-radius: 25px;
    text-align: center;
    transition: 0.3s;
}

.rate-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.6);
    border-color: var(--primary);
}

.rate-val {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
}

.rate-label {
    font-size: 0.9rem;
    color: #7a7a7a;
    font-weight: 600;
}

/* Flexbox de Detalhes */
.details-flex {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.details-box {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.3);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.details-box h3 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 25px;
    color: #4a4a4a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.details-box ul {
    list-style: none;
}

.details-box ul li {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
    font-size: 1rem;
}

.details-box ul li strong {
    color: var(--primary);
}
/* Footer Vibe-RO */
.site-footer-v2 {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding: 40px 0 20px 0;
    margin-top: 80px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* Marca no Footer */
.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: var(--text);
}

.footer-logo span { color: var(--primary); }

.footer-subtitle-v2 {
    font-size: 0.9rem;
    color: #7a7a7a;
    margin-top: 5px;
}

/* Container de Redes e Player */
.footer-actions-v2 {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Navegação Social */
.footer-nav-v2 {
    display: flex;
    gap: 15px;
}

.social-footer-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 15px;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.social-footer-btn img {
    width: 22px;
    height: auto;
    filter: grayscale(1); /* Deixa os logos cinzas para não brigar com o visual */
    opacity: 0.6;
    transition: 0.3s;
}

.social-footer-btn:hover {
    transform: translateY(-5px);
    background: var(--secondary);
}

.social-footer-btn:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Estilo do Player */
.footer-player-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.player-visual {
    display: flex;
    gap: 3px;
    align-items: flex-end;
    height: 15px;
}

.player-visual span {
    width: 3px;
    background: var(--primary);
    border-radius: 3px;
    animation: bounce-audio 1s infinite alternate;
}

.player-visual span:nth-child(2) { height: 100%; animation-delay: 0.2s; }
.player-visual span:nth-child(1) { height: 60%; animation-delay: 0.4s; }
.player-visual span:nth-child(3) { height: 40%; }

@keyframes bounce-audio {
    from { height: 20%; }
    to { height: 100%; }
}

.footer-player-v2 small {
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.7rem;
}

/* Direitos Autorais */
.footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px dashed rgba(0,0,0,0.05);
    font-size: 0.75rem;
    color: #999;
}

/* Estilos Específicos do Painel Vibe */
.panel-vibe { background: var(--bg-gradient); }

.finance-vibe {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.f-card {
    flex: 1;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.f-card.zeny strong { color: #d4af37; font-size: 1.5rem; }
.f-card.cash strong { color: #00bfff; font-size: 1.5rem; }

.panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vibe-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 30px;
}

.char-item-vibe {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255,255,255,0.2);
    margin-bottom: 10px;
    border-radius: 15px;
}

.char-info strong { display: block; color: var(--text); }
.char-info span { font-size: 0.8rem; color: #888; }

.char-actions a {
    text-decoration: none;
    font-size: 1.2rem;
    margin-left: 10px;
    transition: 0.3s;
}

.char-actions a:hover { transform: scale(1.2); display: inline-block; }

.vibe-alert {
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.msg-success { background: #b5e2ff; color: #4a90e2; }
.msg-error { background: #ffb4a2; color: #d65a31; }

.user-welcome { margin-right: 15px; font-weight: 600; }