* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-glass: rgba(255, 255, 255, 0.05);
	--bg-glass1: rgba(29, 29, 29, 0.80);
    --border-glass: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent: #00f5ff;
	--red: #ff0019;
    --accent-glow: rgba(0, 245, 255, 0.5);
    --primary: #6366f1;
    --secondary: #8b5cf6;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    --dark: #1f2937;
    --light: #f3f4f6;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    background-image: url('https://hipnosy.xyz/assets/img/bk.jpg');
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    padding: 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    
}

.subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Button Grid */
.button-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    position: relative;
    overflow: hidden;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.btn:active {
    transform: translateY(-2px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.btn-text {
    font-weight: 600;
    font-size: 1rem;
}

/* Button Variants */
.btn-primary { border-color: var(--primary); }
.btn-primary:hover { box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3); }

.btn-secondary { border-color: var(--secondary); }
.btn-secondary:hover { box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3); }

.btn-accent { border-color: var(--accent); }
.btn-accent:hover { box-shadow: 0 20px 40px var(--accent-glow); }

.btn-success { border-color: var(--success); }
.btn-success:hover { box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3); }

.btn-warning { border-color: var(--warning); }
.btn-warning:hover { box-shadow: 0 20px 40px rgba(245, 158, 11, 0.3); }

.btn-error { border-color: var(--error); }
.btn-error:hover { box-shadow: 0 20px 40px rgba(239, 68, 68, 0.3); }

.btn-info { border-color: var(--info); }
.btn-info:hover { box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3); }

.btn-dark { border-color: var(--warning); }
.btn-dark:hover { box-shadow: 0 20px 40px rgba(243, 244, 246, 0.3); }

.btn-light { border-color: var(--light); }
.btn-light:hover { box-shadow: 0 20px 40px rgba(245, 158, 11, 0.3); }

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-glass1);
        backdrop-filter: blur(20px);
        border-top: 1px solid var(--border-glass);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: right 0.3s;
    }

    .nav-menu.active {
        right: 0;
    }

    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .button-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .btn {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .container {
        padding: 1rem;
    }
}

.botao-flutuante {
        position: fixed;
        bottom: 20px; /* Distância da parte inferior */
        right: 20px;  /* Distância da parte direita */
        z-index: 100; /* Para ficar acima dos outros elementos */
    }

    .botao-flutuante img {
        width: 50px;  /* Tamanho do ícone */
        height: 55px;
		border-radius:50%;/* radio */
        box-shadow: 0px 4px 8px rgba(255,255,255,0.8); /* Sombra para dar destaque */
    }

