* {
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #FFB800;
    --secondary-color: #2C2C2C;
    --text-color: #E0E0E0;
    --accent-color: #FF4D00;
    --background-color: #1A1A1A;
    --menu-bg: #242424;
}

body {
    background: linear-gradient(135deg, var(--background-color) 0%, #2A1810 50%, #1A1A1A 100%);
    color: var(--text-color);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: -1;
}

h1 {
    text-align: center;
    margin: 30px 0;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h2 {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    background-color: var(--menu-bg);
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    font-size: 1.5rem;
    color: var(--text-color);
    text-align: center;
    margin: 4% auto;
    border: 1px solid var(--primary-color);
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 80px;
    background-color: var(--menu-bg);
    overflow-x: hidden;
    transition: width 0.3s ease;
    box-shadow: 2px 0 15px rgba(255, 184, 0, 0.2);
    z-index: 1000;
}

.conteudo h1, .conteudo h2 {
    margin-left: 50px;
    padding: 10px;
    transition: margin-left 0.3s ease;
}

.menu:hover {
    width: 250px;
}

.menu ul {
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

.menu li {
    margin: 15px 0;
    text-align: left;
    padding: 0 15px;
}

.menu a {
    text-decoration: none;
    font-size: 1.1rem;
    color: var(--text-color);
    display: block;
    padding: 12px 20px;
    transition: all 0.3s ease;
    border-radius: 10px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.menu a:hover {
    color: var(--primary-color);
    background-color: rgba(255, 184, 0, 0.1);
    transform: translateX(5px);
}

.menu a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.menu a:hover::before {
    width: 100%;
}

.teste {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 50%;
    left: 47.5%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
    height: auto;
    max-height: 80vh;
    background-color: var(--menu-bg);
    border-radius: 20px;
    padding: 30px;
    margin-left: 90px;
    box-shadow: 0 0 30px rgba(255, 184, 0, 0.15);
    border: 2px solid var(--primary-color);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--menu-bg);
}

.teste p {
    margin: 15px 0;
    padding: 15px;
    background-color: rgba(44, 44, 44, 0.6);
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    font-size: 1.1rem;
    color: var(--text-color);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
}

.teste p:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 183, 0, 0.454);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--menu-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

@media (max-width: 768px) {
    .menu {
        width: 60px;
    }
    
    .menu:hover {
        width: 200px;
    }
    
    h2 {
        width: 80%;
        font-size: 1.2rem;
    }
    
    .teste {
        width: 90%;
        margin-left: 70px;
    }
}

.menu-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    display: inline-block;
    min-width: 24px;
    text-align: center;
}

.menu-text {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu:hover .menu-text {
    opacity: 1;
}

.hero-section {
    text-align: center;
    padding: 40px 20px;
    margin-left: 50px;
    margin-bottom: 30px;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-top: 20px;
    max-width: 600px;
    margin: 20px auto;
    line-height: 1.6;
}

h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--menu-bg);
    padding: 20px;
    text-align: center;
    border-top: 1px solid var(--primary-color);
}

.footer-content {
    margin-left: 80px;
    color: var(--text-color);
}

.copyright {
    font-size: 0.9rem;
    margin-top: 10px;
    color: rgba(224, 224, 224, 0.7);
}

@media (max-width: 768px) {
    .hero-section {
        margin-left: 70px;
        padding: 20px;
    }

    .hero-text {
        font-size: 1rem;
    }

    .footer-content {
        margin-left: 60px;
        font-size: 0.9rem;
    }
}