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

html, body {
    text-align: center;
    height: 100%;
}

body {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    background: #050816;
    color: #ffffff;
    text-transform: uppercase;
}

/* FUNDO GLOBAL (TEMA FILMES & SÉRIES) */

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 20% 0%, rgba(0, 255, 198, 0.10), transparent 55%),
        radial-gradient(circle at 80% 15%, rgba(0, 163, 255, 0.12), transparent 58%),
        radial-gradient(circle at 50% 100%, rgba(255, 134, 0, 0.10), transparent 60%),
        linear-gradient(180deg, #050816 0%, #030512 100%);
}

/* padrão discreto com ícones (data URI SVG) */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0.20;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260' viewBox='0 0 260 260'%3E%3Cg fill='none' stroke='%23FFFFFF' stroke-opacity='0.14' stroke-width='2'%3E%3Cpath d='M20 70h120l18-18H38z'/%3E%3Cpath d='M36 92h188v110H36z'/%3E%3Cpath d='M44 110h172v74H44z'/%3E%3Cpath d='M70 56h20v14H70z'/%3E%3Cpath d='M102 56h20v14h-20z'/%3E%3Cpath d='M134 56h20v14h-20z'/%3E%3Cpath d='M166 56h20v14h-20z'/%3E%3Ccircle cx='210' cy='64' r='14'/%3E%3Ccircle cx='210' cy='64' r='4'/%3E%3Cpath d='M192 64h36'/%3E%3Cpath d='M210 46v36'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 260px 260px;
    background-repeat: repeat;
    filter: blur(0.2px);
    pointer-events: none;
}

/* TOPO / LOGO / TÍTULO */

.topo-site {
    text-align: center;
    padding: 20px 10px 10px;
    background: radial-gradient(circle at top, rgba(27, 31, 59, 0.90) 0, rgba(5, 8, 22, 0.75) 65%);
    backdrop-filter: blur(2px);
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.logo-site {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 255, 200, 0.4);
}

.titulo-principal {
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: #f5f5f5;
}

/* MENU DINÂMICO */

.menu-dinamico {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.menu-link {
    padding: 8px 14px;
    border-radius: 20px;
    background: linear-gradient(135deg, #00ffc6, #00a3ff);
    color: #000;
    font-size: 0.75rem;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0, 255, 198, 0.5);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.menu-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(0, 255, 198, 0.8);
}

/* CARROSSEL */

.carrossel-wrapper {
    background: rgba(5, 8, 22, 0.55);
    padding: 12px 6px 6px;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.carrossel-linha {
    display: flex;
    gap: 0;
    width: max-content;
    min-width: 100%;
    will-change: transform;
}

.carrossel-linha.carrossel-loop {
    animation: carrosselScroll var(--carrossel-dur, 35s) linear infinite;
}

@keyframes carrosselScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.carrossel-item {
    flex: 0 0 auto;
    min-width: 140px;
    max-width: 160px;
    padding: 6px 6px;
}

.carrossel-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
    transform: translateZ(0);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.carrossel-img:hover {
    transform: scale(1.03);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.55);
}

.sem-imagens {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* BUSCA */

.busca-wrapper {
    padding: 15px 10px 5px;
}

.form-busca {
    display: flex;
    gap: 6px;
    max-width: 600px;
    margin: 0 auto;
}

.campo-busca {
    flex: 1;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(0, 255, 198, 0.5);
    font-size: 0.8rem;
    background: #02040b;
    color: #ffffff;
}

.campo-busca::placeholder {
    color: #7c7c7c;
}

.btn-busca {
    padding: 8px 16px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #00ffc6, #00a3ff);
    color: #000;
    font-weight: bold;
    font-size: 0.8rem;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 255, 198, 0.5);
}

/* RESULTADO BUSCA */

.resultado-busca {
    padding: 0 10px 10px;
    text-align: center;
    font-size: 0.85rem;
}

/* TABELA DE PREÇOS */

.tabela-precos {
    text-align: center;
    padding: 18px 10px 10px;
    background: linear-gradient(135deg, rgba(0, 255, 198, 0.05), rgba(0, 163, 255, 0.05));
}

.tabela-precos h2 {
    text-align: center;
    margin-bottom: 10px;
    color: #00ffc6;
}

.tabela-precos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.preco-item {
    background: #050816;
    border-radius: 12px;
    padding: 10px;
    border: 1px solid rgba(0, 255, 198, 0.6);
    box-shadow: 0 0 12px rgba(0, 255, 198, 0.3);
}

.preco-titulo {
    font-weight: bold;
    margin-bottom: 4px;
}

.preco-descricao {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-bottom: 4px;
}

.preco-valor {
    font-size: 1rem;
    color: #00ffc6;
}

.precos-botao-wrapper {
    text-align: center;
    margin-top: 12px;
}

.btn-comprar-agora {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366, #00ffc6);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85rem;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.7);
}

/* PROMOÇÕES */

.promocoes-wrapper {
    padding: 10px 10px 0;
}

.promo-card {
    display: flex;
    flex-wrap: wrap;
    background: #050816;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
    overflow: hidden;
}

.promo-textos {
    padding: 10px;
    flex: 1 1 220px;
}

.promo-textos h2 {
    color: #ffd700;
    margin-bottom: 6px;
}

.promo-textos p {
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.btn-promo {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #ff9800, #ffc107);
    color: #000;
    font-size: 0.8rem;
    text-decoration: none;
    font-weight: bold;
}

.promo-imagem {
    flex: 0 0 auto;
    max-width: 220px;
}

.promo-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTEÚDOS */

.conteudos-wrapper {
    padding: 15px 10px 5px;
}

.conteudos-card {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    background: #050816;
    border-radius: 14px;
    border: 1px solid rgba(0, 255, 198, 0.3);
    padding: 12px 14px;
    text-align: center;
}

.conteudos-card h2 {
    text-align: center;
    margin-bottom: 8px;
    color: #00ffc6;
}

.conteudos-card ul {
    text-align: center;
    list-style: none;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.conteudos-card li {
    margin-bottom: 3px;
}

.conteudos-card h3 {
    margin-top: 8px;
    margin-bottom: 4px;
    color: #00ffc6;
}

.conteudos-card p {
    font-size: 0.8rem;
}

/* SERVIDORES */

.servidores-wrapper {
    padding: 15px 10px 25px;
}

.servidores-wrapper h2 {
    text-align: center;
    margin-bottom: 10px;
    color: #00ffc6;
}

.servidores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
}

.servidor-card {
    text-align: center;
    border-radius: 14px;
    padding: 10px;
    color: #ffffff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}

.servidor-header {
    text-align: center;
    background: #000;
    padding: 6px 8px;
    border-radius: 10px;
    margin-bottom: 8px;
}

.servidor-nome {
    font-weight: bold;
    color: #ffffff;
}

.servidor-info p {
    font-size: 0.8rem;
}

.servidor-info p + p {
    margin-top: 2px;
}

.servidor-apps {
    margin-top: 6px;
}

.servidor-apps p {
    font-size: 0.75rem;
    margin-bottom: 4px;
}

.apps-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.app-badge {
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: bold;
    color: #000;
    background: #eee;
}

/* CORES DE FUNDO DOS CARDS */

.card-cor-1 { background: linear-gradient(135deg, #0f2027, #203a43); }
.card-cor-2 { background: linear-gradient(135deg, #42275a, #734b6d); }
.card-cor-3 { background: linear-gradient(135deg, #134e5e, #71b280); }
.card-cor-4 { background: linear-gradient(135deg, #355c7d, #6c5b7b); }
.card-cor-5 { background: linear-gradient(135deg, #457fca, #5691c8); }
.card-cor-6 { background: linear-gradient(135deg, #000428, #004e92); }
.card-cor-7 { background: linear-gradient(135deg, #614385, #516395); }

.app-cor-1 { background: #ffeb3b; }
.app-cor-2 { background: #4caf50; }
.app-cor-3 { background: #ff9800; }
.app-cor-4 { background: #03a9f4; }
.app-cor-5 { background: #e91e63; }

.servidor-extra {
    margin-top: 6px;
    font-size: 0.75rem;
}

/* RODAPÉ */

.rodape-site {
    text-align: center;
    padding: 15px 10px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #02030a;
    font-size: 0.75rem;
}

.rodape-site a {
    color: #00ffc6;
    text-decoration: none;
}

.rodape-botoes {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.btn-instagram,
.btn-whatsapp {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: bold;
    text-decoration: none;
    color: #000;
}

.btn-instagram {
    background: radial-gradient(circle at 30% 30%, #fdf497 0, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.btn-whatsapp {
    background: #25d366;
}

.rodape-adm {
    margin-top: 6px;
}

.link-adm {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* TELAS DE LOGIN / ADM */

.tela-login,
.tela-adm {
    background: #050816;
    color: #ffffff;
}

.login-container {
    max-width: 360px;
    margin: 40px auto;
    background: #050816;
    border-radius: 16px;
    padding: 20px 18px;
    border: 1px solid rgba(0, 255, 198, 0.4);
    box-shadow: 0 0 25px rgba(0, 255, 198, 0.2);
    text-align: center;
}

.login-container h1 {
    margin-bottom: 15px;
    color: #00ffc6;
}

.form-login {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}

.form-login label {
    text-align: left;
    font-size: 0.8rem;
}

.form-login input {
    padding: 8px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 198, 0.4);
    background: #02030a;
    color: #ffffff;
    font-size: 0.8rem;
}

.btn-login {
    margin-top: 8px;
    padding: 8px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #00ffc6, #00a3ff);
    color: #000;
    font-weight: bold;
}

.msg-erro {
    margin-bottom: 8px;
    color: #ff5252;
    font-size: 0.8rem;
}

.voltar-site a {
    color: #00ffc6;
    text-decoration: none;
    font-size: 0.8rem;
}

/* ADM */

.adm-topo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 10px;
    background: #02030a;
    border-bottom: 1px solid rgba(0, 255, 198, 0.4);
}

.adm-topo h1 {
    font-size: 1rem;
    color: #00ffc6;
}

.adm-menu-topo {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.adm-menu-topo a {
    font-size: 0.7rem;
    padding: 5px 8px;
    border-radius: 999px;
    background: #050816;
    border: 1px solid rgba(0, 255, 198, 0.5);
    text-decoration: none;
    color: #00ffc6;
}

.adm-acoes a {
    font-size: 0.7rem;
    color: #00ffc6;
    text-decoration: none;
}

.adm-conteudo {
    padding: 10px;
}

.adm-bloco {
    background: #050816;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px;
    margin-bottom: 12px;
}

.adm-bloco h2 {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #00ffc6;
}

.form-adm {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
}

.form-adm label {
    font-size: 0.75rem;
}

.form-adm input[type="text"],
.form-adm input[type="number"],
.form-adm textarea {
    padding: 6px 8px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 198, 0.4);
    background: #02030a;
    color: #ffffff;
    font-size: 0.8rem;
}

.form-adm input[type="file"] {
    font-size: 0.7rem;
}

.linha-check {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
}

.btn-salvar {
    margin-top: 4px;
    align-self: flex-start;
    padding: 7px 16px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #00ffc6, #00a3ff);
    color: #000;
    font-size: 0.75rem;
    font-weight: bold;
}

.msg-sucesso {
    background: rgba(0, 255, 198, 0.15);
    border: 1px solid rgba(0, 255, 198, 0.6);
    border-radius: 8px;
    padding: 6px 8px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

/* TABELA PADRÃO ADM */

.lista-tabelada {
    overflow-x: auto;
    margin-top: 6px;
}

.lista-tabelada table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.7rem;
}

.lista-tabelada th,
.lista-tabelada td {
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 6px;
    text-align: left;
}

.lista-tabelada th {
    background: #02030a;
}

.lista-tabelada a {
    color: #00ffc6;
    text-decoration: none;
}

/* CARROSSEL ADM */

.lista-carrossel-admin {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.carrossel-admin-item {
    background: #02030a;
    border-radius: 10px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* MODAL EDITAR SERVIDOR */

.modal-editar-servidor {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 10px;
    z-index: 9999;
}

.modal-conteudo {
    background: #050816;
    border-radius: 12px;
    padding: 12px;
    max-width: 450px;
    width: 100%;
    border: 1px solid rgba(0, 255, 198, 0.5);
}

.modal-conteudo h3 {
    margin-bottom: 8px;
    color: #00ffc6;
}

.btn-editar-servidor {
    padding: 4px 10px;
    border-radius: 999px;
    border: none;
    background: #00a3ff;
    color: #000;
    font-size: 0.7rem;
    cursor: pointer;
}

.btn-cancelar {
    margin-top: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    border: none;
    background: #555;
    color: #fff;
    font-size: 0.75rem;
    cursor: pointer;
}

/* RESPONSIVO */

@media (min-width: 768px) {
    .logo-site {
        width: 110px;
        height: 110px;
    }

    .titulo-principal {
        font-size: 1.6rem;
    }

    .carrossel-img {
        height: 160px;
    }

    .conteudos-card {
    text-align: center;
        padding: 16px 20px;
    }

    .adm-topo h1 {
        font-size: 1.1rem;
    }
}

.titulo-site { text-align: center; }

.menu-topo { text-align: center; }

.rodape { text-align: center; }

.xcloud-text { text-align: center; margin: 0 auto; display:block; }

 .weblink-text { text-align: center; margin: 0 auto; display:block; }

.indique-img { text-align: center; margin: 0 auto; display:block; }

.indique-text { text-align: center; margin: 0 auto; display:block; }

.servidor-card * { text-align: center !important; margin-left: auto; margin-right: auto; }

.promo-card * { text-align: center !important; margin-left: auto; margin-right: auto; }


.xcloud, .xcloud *, 
.weblink, .weblink * {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
}



.promo-card img {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}



/* ===== APLICATIVOS PARCEIROS (GRADE) ===== */
.parceiros-grid-wrapper{
    padding: 30px 20px 50px;
    max-width: 1200px;
    margin: 0 auto;
}
.parceiros-grid-wrapper h2{
    text-align:center;
    margin: 0 0 18px;
    letter-spacing: 1px;
}
.parceiros-grid{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
    margin-top: 14px;
}
.parceiro-card{
    background: rgba(255,255,255,0.92);
    border-radius: 14px;
    padding: 14px 12px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.10);
    border: 1px solid rgba(0,0,0,0.06);
}
.parceiro-icon{
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 14px;
    display:block;
    margin: 0 auto 10px;
}
.parceiro-icon-fallback{
    width: 100px;
    height: 100px;
    border-radius: 14px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin: 0 auto 10px;
    background: #111;
    color: #fff;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 18px;
}
.parceiro-nome{
    font-weight: 700;
    font-size: 12px;
    line-height: 1.2;
    word-break: break-word;
    opacity: 0.95;
    color: #000000;
}
.parceiros-dica{
    text-align:center;
    margin-top: 14px;
    font-size: 12px;
    opacity: 0.75;
}

/* ===== ADMIN: ÍCONES DOS APPS ===== */
.adm-dica{
    margin: 8px 0 18px;
    opacity: 0.85;
}
.apps-icons-grid-admin{
    display:grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
}
.app-icon-admin-card{
    display:flex;
    gap: 14px;
    padding: 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}
.app-icon-preview{
    width: 110px;
    flex: 0 0 110px;
}
.app-icon-preview img{
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 14px;
    display:block;
}
.app-icon-preview-fallback{
    width: 100px;
    height: 100px;
    border-radius: 14px;
    display:flex;
    align-items:center;
    justify-content:center;
    background: #111;
    color:#fff;
    font-weight: 700;
    font-size: 12px;
}
.app-icon-info{
    flex: 1;
}
.app-icon-nome{
    font-weight: 800;
    margin-bottom: 10px;
    color: #000000;
}
.app-icon-form input[type="file"]{
    width: 100%;
    margin-bottom: 8px;
}
.link-perigo{
    display:inline-block;
    margin-top: 10px;
    color:#b00020;
    font-weight:700;
}

/* =========================================================
   ATUALIZAÇÃO VISUAL ÁGUIAS ENTRETENIMENTO
   Paleta inspirada na logo: preto, branco, pink e grafite.
   ========================================================= */
:root{
    --aguias-bg:#050306;
    --aguias-card:#111015;
    --aguias-card-2:#18141d;
    --aguias-pink:#ff2f92;
    --aguias-pink-2:#ff6ab3;
    --aguias-white:#ffffff;
    --aguias-soft:#f6eaf1;
    --aguias-gray:#a7a3ad;
    --aguias-border:rgba(255,47,146,.34);
    --aguias-shadow:0 18px 45px rgba(0,0,0,.48);
}

html, body { text-align:left; }
body{
    font-family: Inter, Arial, Helvetica, sans-serif;
    background:var(--aguias-bg);
    color:var(--aguias-soft);
    text-transform:none;
    line-height:1.5;
}
body::before{
    background:
      radial-gradient(circle at 18% 0%, rgba(255,47,146,.25), transparent 34%),
      radial-gradient(circle at 82% 10%, rgba(255,255,255,.10), transparent 30%),
      linear-gradient(180deg,#070407 0%,#110711 48%,#050306 100%);
}
body::after{ opacity:.08; }

.topo-site{
    padding:28px 14px 22px;
    background:linear-gradient(180deg,rgba(0,0,0,.78),rgba(16,7,14,.66));
    border-bottom:1px solid var(--aguias-border);
}
.logo-site{
    width:128px;
    height:128px;
    border-radius:24px;
    object-fit:contain;
    background:#000;
    padding:8px;
    box-shadow:0 0 0 2px rgba(255,255,255,.22), 0 0 34px rgba(255,47,146,.45);
}
.titulo-principal{
    text-align:center;
    color:#fff;
    font-size:clamp(1.55rem,4vw,2.45rem);
    letter-spacing:.08em;
    text-shadow:0 0 18px rgba(255,47,146,.45);
}
.menu-link,.btn-busca,.btn-login,.btn-salvar,.btn-comprar-agora{
    background:linear-gradient(135deg,var(--aguias-pink),var(--aguias-pink-2));
    color:#fff!important;
    box-shadow:0 10px 24px rgba(255,47,146,.28);
}
.menu-link:hover,.btn-busca:hover,.btn-login:hover,.btn-salvar:hover,.btn-comprar-agora:hover{ filter:brightness(1.08); }

.carrossel-wrapper,.tabela-precos,.conteudos-wrapper,.servidores-wrapper,.promocoes-wrapper{ max-width:1180px; margin:0 auto; }
.carrossel-wrapper{
    margin-top:18px;
    border:1px solid var(--aguias-border);
    border-radius:24px;
    background:rgba(17,16,21,.72);
    box-shadow:var(--aguias-shadow);
}
.carrossel-img,.preco-item,.promo-card,.conteudos-card,.servidor-card{
    border-color:var(--aguias-border)!important;
    box-shadow:0 14px 32px rgba(0,0,0,.35);
}
.tabela-precos h2,.conteudos-card h2,.conteudos-card h3,.servidores-wrapper h2{ color:var(--aguias-pink-2); }
.preco-item,.conteudos-card,.promo-card{
    background:linear-gradient(180deg,rgba(24,20,29,.96),rgba(9,7,11,.96));
}
.preco-valor{ color:#fff; font-weight:800; }
.campo-busca,.form-adm input[type="text"],.form-adm input[type="number"],.form-adm textarea,.form-login input{
    background:#0b090d!important;
    border:1px solid var(--aguias-border)!important;
    color:#fff!important;
    outline:none;
}
.campo-busca:focus,.form-adm input:focus,.form-adm textarea:focus,.form-login input:focus{
    border-color:var(--aguias-pink)!important;
    box-shadow:0 0 0 3px rgba(255,47,146,.16);
}
.rodape-site{ background:#040304; border-top:1px solid var(--aguias-border); text-align:center; }
.rodape-site a{ color:var(--aguias-pink-2); }

/* Login mais limpo: somente senha */
.login-container{
    max-width:420px;
    margin:8vh auto;
    background:linear-gradient(180deg,rgba(24,20,29,.98),rgba(6,5,8,.98));
    border:1px solid var(--aguias-border);
    border-radius:26px;
    padding:30px 24px;
    box-shadow:var(--aguias-shadow),0 0 38px rgba(255,47,146,.16);
    text-align:left;
}
.login-container::before{
    content:"";
    display:block;
    width:120px;
    height:120px;
    margin:0 auto 16px;
    background:url('logo-aguias.png') center/contain no-repeat;
    border-radius:20px;
}
.login-container h1{ color:#fff; text-align:center; font-size:1.2rem; letter-spacing:.08em; }
.form-login label,.form-adm label{ color:var(--aguias-soft); font-weight:700; letter-spacing:.03em; }
.voltar-site{text-align:center;}
.voltar-site a{ color:var(--aguias-pink-2); }

/* Painel ADM reorganizado */
.adm-topo{
    position:sticky;
    top:0;
    z-index:20;
    background:rgba(5,3,6,.94);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--aguias-border);
    box-shadow:0 12px 30px rgba(0,0,0,.35);
    text-align:center;
}
.adm-topo h1{ color:#fff; letter-spacing:.06em; }
.adm-menu-topo{
    max-width:1180px;
    margin:12px auto 0;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:8px;
}
.adm-menu-topo a,.adm-acoes a{
    background:rgba(255,47,146,.12);
    color:#fff;
    border:1px solid var(--aguias-border);
    border-radius:999px;
    padding:9px 13px;
    text-decoration:none;
}
.adm-acoes{ margin-top:12px; display:flex; justify-content:center; gap:10px; flex-wrap:wrap; }
.adm-conteudo{ max-width:1180px; margin:24px auto; padding:0 14px; }
.adm-bloco{
    background:linear-gradient(180deg,rgba(24,20,29,.96),rgba(9,7,11,.96));
    border:1px solid var(--aguias-border);
    border-radius:24px;
    padding:22px;
    margin-bottom:22px;
    box-shadow:var(--aguias-shadow);
    text-align:left;
}
.adm-bloco h2{
    color:var(--aguias-pink-2);
    border-bottom:1px solid rgba(255,255,255,.09);
    padding-bottom:10px;
    margin-bottom:16px;
}
.form-adm{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px 14px;
    align-items:end;
}
.form-adm label,.form-adm textarea,.form-adm input[type="file"],.form-adm .linha-check,.form-adm button{ grid-column:1 / -1; }
@media (min-width:800px){
    .form-adm label + input[type="text"], .form-adm label + input[type="number"]{ grid-column:auto; }
}
.lista-tabelada{
    margin-top:18px;
    overflow-x:auto;
    border:1px solid rgba(255,255,255,.10);
    border-radius:18px;
}
.lista-tabelada table{ min-width:760px; border-collapse:separate; border-spacing:0; }
.lista-tabelada th{
    position:sticky; top:0;
    background:#1c1019;
    color:#fff;
}
.lista-tabelada td,.lista-tabelada th{ padding:12px 10px; border-bottom:1px solid rgba(255,255,255,.08); }
.lista-tabelada tr:nth-child(even) td{ background:rgba(255,255,255,.025); }
.lista-tabelada a,.lista-tabelada button{ color:var(--aguias-pink-2); }
.lista-carrossel-admin,.apps-icons-grid-admin{ gap:14px; }
.carrossel-admin-item,.app-icon-admin-card{
    background:#0b090d;
    border:1px solid var(--aguias-border);
    border-radius:18px;
    padding:12px;
}
.msg-sucesso{ background:rgba(255,47,146,.16); border:1px solid var(--aguias-border); color:#fff; }
.msg-erro{ background:rgba(255,47,146,.18); border:1px solid var(--aguias-pink); color:#fff; }

@media (max-width:760px){
    .form-busca{ flex-direction:column; }
    .adm-topo{ position:relative; }
    .adm-menu-topo{ max-height:145px; overflow:auto; padding-bottom:4px; }
    .form-adm{ grid-template-columns:1fr; }
    .adm-bloco{ padding:16px; border-radius:18px; }
    .logo-site{ width:110px; height:110px; }
    .promo-card{ display:block; }
    .promo-imagem{ max-width:none; }
}
