/* ===============================
   RESET
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===============================
   BASE / LAYOUT GLOBAL
================================ */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #0b0b0b;
    color: #fff;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-content {
    flex: 1;
    padding-top: 80px; /* altura da topbar */
}

/* ===============================
   CONTAINER
================================ */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ===============================
   TOPBAR
================================ */
.topbar {
    background: rgba(0,0,0,0.88);
    padding: 14px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(6px);
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar .logo a {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
    text-decoration: none;
}

/* Ações topo */
.actions .btn {
    margin-left: 10px;
    padding: 8px 14px;
    border: 1px solid #f5d37a;
    color: #f5d37a;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.actions .btn:hover {
    background: rgba(255,215,0,0.15);
}

.actions .btn.primary {
    background: linear-gradient(180deg, #f5d37a, #c89b3c);
    color: #000;
}

.actions .btn.primary:hover {
    filter: brightness(1.1);
}

/* ===============================
   HERO
================================ */
.hero {
    position: relative;
    min-height: 50vh;
    background: url("/assets/images/bg.webp") center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeIn 1s ease;
}

/* Status */
.status {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    background: rgba(0,255,0,0.15);
    color: #9aff9a;
}

/* Textos */
.hero h1 {
    font-size: 42px;
    color: #f5d37a;
    margin-bottom: 10px;
}

.hero p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #ddd;
}

/* ===============================
   COUNTDOWN
================================ */
.countdown {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.countdown div {
    background: rgba(0,0,0,0.6);
    padding: 14px;
    border-radius: 8px;
    min-width: 70px;
}

.countdown span {
    font-size: 26px;
    font-weight: bold;
    color: #f5d37a;
}

.countdown small {
    display: block;
    font-size: 12px;
    color: #ccc;
}

/* ===============================
   VIDEOS / APRESENTAÇÕES
================================ */
.videos {
    margin-top: 60px;
}

.videos h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: #ffd700;
}

.video-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.video-slider iframe {
    width: 100%;
    height: 200px;
    border-radius: 14px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    background: #000;
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-slider iframe:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.8);
}

/* ===============================
   MANUTENÇÕES
================================ */
.manutencoes {
    margin-top: 60px;
}

.manutencoes h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: #ffd700;
}

.manu-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.manu-card {
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.manu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.8);
}

.manu-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.manu-info {
    padding: 16px;
    text-align: center;
}

.manu-info h3 {
    font-size: 16px;
    color: #ffd700;
    margin-bottom: 8px;
}

.manu-info p {
    font-size: 13px;
    color: #ccc;
    margin-bottom: 14px;
}

.btn-manu {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffd700, #c9a200);
    color: #000;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
}

/* EMPTY — NÃO ALTERADO */
.manu-card.empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.4);
    border: 2px dashed rgba(255,255,255,.15);
}

/* ===============================
   LOGIN
================================ */
.login-container {
    max-width: 420px;
    margin: 80px auto;
    padding: 30px;
    background: #0f0f0f;
    border-radius: 14px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 12px 35px rgba(0,0,0,0.6);
}

.login-container h1,
.login-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #f5d37a;
}

.login-container label {
    font-size: 13px;
    color: #ccc;
    margin-bottom: 6px;
    display: block;
}

.login-container input {
    width: 100%;
    padding: 12px;
    margin-bottom: 16px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    background: #000;
    color: #fff;
}

.login-container input:focus {
    outline: none;
    border-color: #ffd700;
}

.login-btn,
.btn.primary.full {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #ffd700, #f5b800);
    color: #000;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.25s ease;
}

.login-btn:hover,
.btn.primary.full:hover {
    transform: scale(1.03);
    background: linear-gradient(135deg, #ffe44d, #ffd700);
}

/* ===============================
   DOWNLOAD / PANEL
================================ */
.panel-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.panel-header {
    text-align: center;
    margin-bottom: 40px;
}

.panel-header h1 {
    font-size: 28px;
    color: #f5d37a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.panel-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.panel-card {
    background: #0f0f0f;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    text-align: center;
    transition: all 0.3s ease;
}

.panel-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 215, 0, 0.35);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.panel-card h2 {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 20px;
}

.panel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ffd700, #f5b800);
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.panel-btn:hover {
    background: linear-gradient(135deg, #ffe44d, #ffd700);
    transform: scale(1.03);
}

/* ===============================
   FOOTER
================================ */
.footer {
    background: #000;
    text-align: center;
    padding: 18px;
    font-size: 13px;
    color: #aaa;
}

.footer a {
    color: #ffd700;
    text-decoration: none;
}

/* ===============================
   ANIMAÇÃO
================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   RESPONSIVO
================================ */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .video-slider iframe {
        height: 180px;
    }
}
