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

html, body {
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: rgba(25, 27, 27);
    color: #e0e0e0;
}

header {
    top: 35vh;
    position: relative;
    left: calc(35vw);
        margin-left: 190px;
    display: flex;
    
}

.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;
    background-color: rgba(27, 27, 27, 0.58);
}
.menu:hover {
    width: 250px;
    background-color: rgba(27, 27, 27, 0.58);
}

.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%;
}

.conteudo {
    margin-left: 180px;
    padding: 40px;
    transition: margin-left 0.3s ease;
    flex: 1;
    max-width: 1000px;
    margin-right: auto;
    background: rgba(25,27,27,0.85);
    border-radius: 20px;
    box-shadow: 0 0 20px #222;
    margin-top: 570px;
    position: absolute;
    top: 70%;
    left: 45%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.9;
    font-size: 1.2rem;
    color: #fff;
    text-align: center;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.menu:hover ~ .conteudo {
    margin-left: 220px;
}

.conteudo h2, .conteudo p {
    text-align: center;
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 30px;
}


@media (max-width: 768px) {
    .menu {
        width: 60px;
    }
    
    .menu:hover {
        width: 200px;
        background-color: rgba(27, 27, 27, 0.98);
    }
    
    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;
    line-height: 1.6;
}


header h1 {
    font-size: 36px;
    color: #d5d5d5aa;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 8px #00ffbf9d;
}

h2 {
    color: #ffc107;
    margin-top: 40px;
    margin-bottom: 10px;
    text-shadow: 0 0 5px #ffc107;
}

p, ul, li {
    line-height: 1.6;
    font-size: 17px;
}

ul {
    margin-left: 20px;
}

img {
    max-width: 100%;
    height: auto;
    border: 2px solid #ffd700;
    border-radius: 12px;
    box-shadow: 0 0 10px #ffea00;
    margin: 20px 0;
}

.video-container {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.video-container iframe {
    width: 100%;
    height: 360px;
    border: 2px solid #ff4500;
    border-radius: 10px;
    box-shadow: 0 0 12px #ff4500;
}


.info-box {
    background-color: #111;
    border-radius: 15px;
    padding: 20px 30px;
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    text-align: center;
    line-height: 1.8;
    font-size: 18px;
}


.info-box b {
    color: #ffc107;
    font-size: 20px;
    text-shadow: 0 0 8px #ffc107;
}

footer {
    flex-shrink: 0;
    width: 100vw;
    background: #222;
    color: #aaaaaa;
    border-top: 1px solid #444;
    padding: calc(1vh + 10px) 0;
    font-size: calc(0.8em + 0.6vw);
    opacity: 0.8;
    text-align: center;
    box-sizing: border-box;
    line-height: 1.6;
    position: relative;
    left: 0;
    bottom: 0;
}

main.conteudo > section:first-of-type {
    margin-top: calc(5vh + 6px);
    margin-bottom: 40px;
    background: rgba(25,27,27,0.85);
    border-radius: 1vw;
    box-shadow: 0 0 1vw #53978d;
    padding: calc(2vh + 2vw);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: calc(1em + 0.3vw);
    text-align: center;
}

.introducao {
    position: fixed;
    bottom: 3vh;
    right: 2vw;
    width: 18vw;
    min-width: 180px;
    max-width: 280px;
    min-height: 10vh;
    max-height: 30vh;
    background: rgba(25,27,27,0.98);
    border-radius: 2vw;
    box-shadow: 0 0 2vw #a12222;
    padding: calc(1vh + 1vw);
    text-align: center;
    opacity: 0.85;
    transition: 
        all 1.4s cubic-bezier(.4,2,.6,1),
        opacity 0.2s;
    pointer-events: none;
}

.conteudooo {
    margin-left: 180px;
    padding: 40px;
    transition: margin-left 0.3s ease;
    flex: 1;
    max-width: 1000px;
    margin-right: auto;
    background: rgb(25, 27, 27);
    border-radius: 20px;
    box-shadow: 0 0 20px #bf2929;
    margin-top: 1270px;
    position: absolute;
    top: 70%;
    left: 40%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.9;
    font-size: 1.2rem;
    color: #fff;
    text-align: center;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.slaa {
    top: 35vh;
    position: relative;
    left: calc(61vw);
    margin-left: 190px;
    display: flex;
    
}

.asddde {
    flex-shrink: 0;
    width: 100vw;
    background: #222;
    color: #aaaaaa;
    border-top: 1px solid #444;
    padding: calc(1vh + 10px) 0;
    font-size: calc(0.8em + 0.6vw);
    opacity: 0.8;
    text-align: center;
    box-sizing: border-box;
    line-height: 1.6;
    position: relative;
    left: 0;
    bottom: 0;
}

.body-req {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.body-req .conteudooo {
    flex: 1 0 auto;
    position: static;
    top: auto;
    left: auto;
    transform: none;
    margin-top: 0;
    margin-left: 33vw;
    margin-right: auto;
    padding: 24px;
    max-width: 600px;
    background: rgb(25, 27, 27);
    border-radius: 20px;
    box-shadow: 0 0 20px #bf2929;
    opacity: 0.9;
    font-size: 1.05rem;
    color: #fff;
    text-align: center;
    line-height: 1.6;
    transition: all 0.3s ease;
    z-index: 1;
}

.body-req .asddde {
    flex-shrink: 0;
    width: 100vw;
    background: #222;
    color: #aaaaaa;
    border-top: 1px solid #444;
    padding: calc(1vh + 10px) 0;
    font-size: calc(0.8em + 0.6vw);
    opacity: 0.8;
    text-align: center;
    box-sizing: border-box;
    line-height: 1.6;
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: auto;
}

.body-sobre .conteudo {
    flex: 1 0 auto;
    position: static;
    top: auto;
    left: auto;
    transform: none;
    margin-top: 0;
    margin-left: 33vw;
    margin-right: auto;
    padding: 24px;
    max-width: 600px;
    background: rgb(25, 27, 27);
    border-radius: 20px;
    box-shadow: 0 0 20px #bbbbbb;
    opacity: 0.9;
    font-size: 1.05rem;
    color: #fff;
    text-align: center;
    line-height: 1.6;
    transition: all 0.3s ease;
    z-index: 1;
}

.body-sobre .ssss {
    top: 35vh;
    position: relative;
    left: calc(63vw);
    margin-left: 190px;
    display: flex;
    
}

.body-historia .conteudo {
    flex: 1 0 auto;
    position: static;
    top: auto;
    left: auto;
    transform: none;
    margin-top: 0;
    margin-left: 33vw;
    margin-right: auto;
    padding: 24px;
    max-width: 600px;
    background: rgb(25, 27, 27);
    border-radius: 20px;
    box-shadow: 0 0 20px #bbbbbb;
    opacity: 0.9;
    font-size: 1.05rem;
    color: #fff;
    text-align: center;
    line-height: 1.6;
    transition: all 0.3s ease;
    z-index: 1;
}

.body-historia .joJo {
    top: 35vh;
    position: relative;
    left: calc(63vw);
    margin-left: 190px;
    display: flex;
    
}

.body-historia .slenderman {
    top: 1vh;
    position: relative;
    left: calc(17vw);
    margin-left: 190px;
    display: flex;
}


.body-classe {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

.body-classe .conteudo {
    flex: 1 0 auto;
    position: static;
    top: auto;
    left: auto;
    transform: none;
    margin-top: 0;
    margin-left: 180px;
    margin-right: auto;
    padding: 40px;
    max-width: 1000px;
    background: rgb(25, 27, 27);
    border-radius: 20px;
    box-shadow: 0 0 20px #bbbbbb;
    opacity: 0.9;
    font-size: 1.05rem;
    color: #fff;
    text-align: center;
    line-height: 1.6;
    transition: all 0.3s ease;
    z-index: 1;
}

.body-classe .wyvern {
    flex-shrink: 0;
    width: 100%;
    background: #222;
    color: #aaaaaa;
    border-top: 1px solid #444;
    padding: calc(1vh + 10px) 0;
    font-size: calc(0.8em + 0.6vw);
    opacity: 0.8;
    text-align: center;
    box-sizing: border-box;
    line-height: 1.6;
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: auto;
    display: block;
}

.body-classe .shenlong {
    top: 1vh;
    position: relative;
    left: calc(17vw);
    margin-left: 190px;
    display: flex;
}