@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;700;900&display=swap');

:root {
    --bg-dark: #050508;
    --primary-blue: #00f2ff;
    --accent-purple: #7000ff;
    --text-color: #ffffff;
    --glow-shadow: 0 0 15px rgba(0, 242, 255, 0.5);
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    padding-top: 80px;
    background: #050508;
}

.landing-bg {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.landing-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    background:
        linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.60)),
        url("../img/carrocinha.png") center top / cover no-repeat;
}

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 20, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-blue);
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
}

.logo {
    font-family: 'Fredoka One', cursive;
    color: var(--primary-blue);
    font-size: 2rem;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--primary-blue);
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    color: var(--primary-blue);
    border-bottom: 2px solid var(--primary-blue);
    text-shadow: 0 0 10px var(--primary-blue);
}

/* --- Botões (Estilo Power Up) --- */
.btn {
    font-family: 'Fredoka One', cursive;
    padding: 12px 30px;
    border-radius: 5px;
    border: 1px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
    box-shadow: inset 0 0 10px rgba(0, 242, 255, 0.2);
}

.btn:hover {
    background: var(--primary-blue);
    color: #000;
    box-shadow: 0 0 20px var(--primary-blue);
    transform: scale(1.05);
}

/* --- Login Box (Dark Glass) --- */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.login-box {
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid var(--accent-purple);
    border-radius: 10px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 0 30px rgba(112, 0, 255, 0.3);
    text-align: center;
}

.login-header h2 {
    font-family: 'Fredoka One', cursive;
    color: var(--text-color);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.input-group input {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #444;
    border-radius: 5px;
    background: #000;
    color: white;
    box-sizing: border-box;
}

.input-group input:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 10px var(--primary-blue);
}

.hero {
    min-height: 80vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 80px 20px 40px;
}

.hero h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 4rem;
    color: white;
    text-shadow: 0 0 20px var(--primary-blue);
}
.info-section {
    padding: 0 0 80px;
    background: transparent;
}

.info-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.info-card {
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid var(--accent-purple);
    border-radius: 10px;
    padding: 30px;
    width: 220px;
    text-align: center;
    transition: 0.3s;
}

.info-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
    transform: translateY(-10px);
}

.info-card h3 {
    font-family: 'Fredoka One', cursive;
    color: var(--primary-blue);
}

.carrocinha-footer {
    background: #080808;
    border-top: 2px solid var(--accent-purple);
    padding: 12px 0 8px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand h2 {
    margin: 0;
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    color: var(--primary-blue);
}

.footer-brand span {
    color: #fff;
}

.footer-brand p {
    margin: 2px 0 0;
    font-size: .8rem;
    color: #bdbdbd;
}

.footer-social img {
    width: 32px;
    height: 32px;
    transition: .2s;
}

.footer-social img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: .75rem;
    color: #888;
}
.download-bg{
    min-height:100vh;

    background:
        linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.70)),
        url("../img/carrocinha.png") center top/cover no-repeat;
}

.download-hero{
    text-align:center;
    padding:120px 20px 60px;
}

.download-hero h1{
    font-family:'Fredoka One',cursive;
    font-size:4rem;
    color:#fff;
    text-shadow:0 0 20px var(--primary-blue);
}

.download-hero p{
    font-size:1.2rem;
    opacity:.9;
}

.download-section{
    max-width:1200px;
    margin:auto;
    padding:0 20px 80px;
}

.download-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:35px;
}

.download-card{
    background:rgba(18,18,28,.70);
    backdrop-filter:blur(8px);

    border:1px solid rgba(0,242,255,.3);

    border-radius:16px;

    padding:30px;

    transition:.25s;
}

.download-card:hover{
    transform:translateY(-8px);

    border-color:var(--primary-blue);

    box-shadow:0 0 30px rgba(0,242,255,.25);
}

.download-card h2,
.download-card h3{
    font-family:'Fredoka One',cursive;
    color:var(--primary-blue);
    margin-top:0;
}

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

.download-card li{
    margin:10px 0;
}

.destaque{
    text-align:center;
    margin-bottom:40px;

    border:2px solid var(--primary-blue);

    box-shadow:0 0 40px rgba(0,242,255,.25);
}

.login-page{

    min-height:calc(100vh - 80px);

    background:
        linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.70)),
        url("../img/carrocinha.png") center top/cover no-repeat;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:80px;

    padding:60px;
}

.login-info{

    width:480px;

}

.login-info h1{

    font-family:'Fredoka One';

    font-size:4rem;

    margin:0;

    color:white;

    text-shadow:0 0 20px var(--primary-blue);

}

.login-info p{

    font-size:1.15rem;

    margin:25px 0 40px;

    line-height:1.7;

}

.server-info{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.server-info div{

    background:rgba(18,18,30,.65);

    border:1px solid rgba(0,242,255,.25);

    border-radius:12px;

    padding:18px 20px;

}

.server-info strong{

    display:block;

    color:var(--primary-blue);

    margin-bottom:5px;

    font-family:'Fredoka One';

}

.login-box{

    width:420px;

    background:rgba(18,18,28,.75);

    backdrop-filter:blur(12px);

    border:1px solid rgba(0,242,255,.25);

    border-radius:18px;

    padding:40px;

    box-shadow:0 0 40px rgba(0,242,255,.15);

}

.login-header{

    text-align:center;

    margin-bottom:25px;

}

.login-header h2{

    font-family:'Fredoka One';

    margin:0;

    color:var(--primary-blue);

}

.login-header p{

    margin-top:10px;

    color:#ccc;

}

.login-error{

    margin-bottom:20px;

    padding:15px;

    background:#491515;

    border:1px solid #ff5050;

    border-radius:8px;

    text-align:center;

}

.login-options{

    margin:20px 0;

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:.9rem;

}

.login-options a{

    color:var(--primary-blue);

    text-decoration:none;

}

.btn-block{

    width:100%;
}

.login-footer{

    text-align:center;

    margin-top:25px;

}

.login-footer a{

    color:var(--primary-blue);

    font-weight:bold;

    text-decoration:none;

}