:root {
    --primary: #000D52;
    --primary-hover: #001a80;
    --drawer-bg: #2C314C;

    --text: #e5e7eb;
    --text-muted: #94a3b8;

    --bg: #020617;
    --bg-soft: #0f172a;
    --bg-card: rgba(255, 255, 255, 0.05);

    --border: rgba(255, 255, 255, 0.08);
    --overlay: rgba(0, 0, 0, 0.55);

    --success: #16a34a;
    --success-hover: #15803d;

    --font: 'Montserrat', sans-serif;
}

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

/* =========================
   BASE
========================= */
html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

/* =========================
   TIPOGRAFIA
========================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    font-weight: 700;
    line-height: 1.2;
}

p {
    font-weight: 400;
}

/* =========================
   CONTAINER
========================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* =========================
   CABEÇALHO
========================= */
.topbar {
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    position: relative;
    z-index: 1000;
}

.topbar-content {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
}

.brand img {
    height: 70px; /* AQUI aumenta a logo */
    width: auto;
    display: block;
}

/* =========================
   BOTÃO HAMBÚRGUER
========================= */
.menu-toggle {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    position: relative;
    z-index: 1101;
    font-family: var(--font);
    font-weight: 600;
    box-shadow: none;
}

.menu-toggle:hover {
    background: var(--primary-hover);
    border-color: rgba(255,255,255,0.20);
    transform: translateY(-1px);
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: transform 0.25s ease, opacity 0.25s ease;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =========================
   OVERLAY
========================= */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: var(--overlay);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 1998;
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* =========================
   MENU LATERAL
========================= */
.drawer-panel {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    max-width: 85%;
    height: 100vh;
    background: var(--drawer-bg);
    color: #ffffff;
    z-index: 2000;
    padding: 24px 20px;
    transition: left 0.25s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    overflow-y: auto;
}

.drawer-panel.open {
    left: 0;
}

.drawer-header {
    margin-bottom: 20px;
    padding-top: 10px;
}

.drawer-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* =========================
   ITENS DO MENU
========================= */
.drawer-item {
    display: block;
    width: 100%;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    font-family: var(--font);
    box-shadow: none;
}

.drawer-item:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255,255,255,0.18);
    transform: translateX(2px);
}

.drawer-item-sair {
    background: rgba(220, 38, 38, 0.14);
    border: 1px solid rgba(239, 68, 68, 0.35);
    border-radius: 0px;
}

.drawer-item-sair:hover {
    background: rgba(220, 38, 38, 0.22);
}

/* =========================
   HOME
========================= */
.home {
    background: linear-gradient(180deg, #020617, #0f172a);
    color: #fff;
}

/* =========================
   BANNER
========================= */
.banner {
    margin-top: 20px;
}

.banner img {
    width: 100%;
    height: auto;
    border-radius: 0;
    border: 1px solid var(--border);
}

/* =========================
   HERO
========================= */
.hero {
    text-align: center;
    padding: 70px 20px 50px;
}

.hero h1 {
    font-size: 2.8rem;
    color: #c7d2fe;
    margin-bottom: 14px;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 10px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.highlight,
.hero-highlight {
    margin-top: 20px;
    color: #22c55e;
    font-weight: 600;
}

/* =========================
   AÇÕES
========================= */
.actions,
.hero-buttons {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* =========================
   BOTÕES PLANOS E QUADRADOS
========================= */
.btn-primary,
.btn-secondary,
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 26px;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font);
    border-radius: 0;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    box-shadow: none;
    outline: none;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-whatsapp {
    background: var(--success);
    color: #ffffff;
    border: 1px solid var(--success);
}

.btn-whatsapp:hover {
    background: var(--success-hover);
    border-color: var(--success-hover);
    transform: translateY(-1px);
}

.big {
    font-size: 18px;
    min-height: 52px;
    padding: 14px 30px;
}

/* =========================
   SEÇÕES
========================= */
section {
    padding: 60px 20px;
}

/* =========================
   GRID
========================= */
.grid-3,
.courses-grid,
.benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

/* =========================
   CARDS
========================= */
.card,
.course-card {
    background: var(--bg-card);
    padding: 24px;
    border-radius: 0;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: none;
}

.card h3,
.course-card h3 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.card p,
.course-card p {
    color: var(--text-muted);
}

/* =========================
   CURSOS
========================= */
.courses h2,
.offer h2,
.cta h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 24px;
    color: #ffffff;
}

/* =========================
   OFERTA
========================= */
.offer {
    text-align: center;
}

.price-box {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
    padding: 32px 24px;
}

.price-box ul {
    list-style: none;
    margin: 18px 0 24px;
    padding: 0;
}

.price-box li {
    color: var(--text);
    margin-bottom: 10px;
    font-size: 1rem;
}

.old,
.old-price {
    text-decoration: line-through;
    opacity: 0.6;
    color: var(--text-muted);
    font-size: 1rem;
}

.new,
.new-price {
    font-size: 2rem;
    color: #22c55e;
    font-weight: 800;
    margin: 10px 0;
}

/* =========================
   CTA
========================= */
.cta {
    text-align: center;
    background: #020617;
}

.cta p {
    color: var(--text-muted);
    margin-bottom: 22px;
}

/* =========================
   RODAPÉ
========================= */
.ceducap-footer {
    width: 100%;
    font-family: Arial, sans-serif;
    position: relative;
}

.footer-top,
.footer-middle,
.footer-bottom {
    background-color: #1f2937 !important;
    background-image:
        linear-gradient(135deg, rgba(255,255,255,0.04), rgba(0,0,0,0.25)),
        repeating-linear-gradient(
            45deg,
            rgba(255,255,255,0.02) 0px,
            rgba(255,255,255,0.02) 2px,
            transparent 2px,
            transparent 4px
        ) !important;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 18px 22px;
}

.footer-top-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e5e7eb;
    font-size: 14px;
    font-weight: 500;
}

.footer-top-item a {
    color: #e5e7eb;
    text-decoration: none;
    transition: color .2s ease;
}

.footer-top-item a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-icon {
    font-size: 22px;
    line-height: 1;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.social-btn {
    width: 42px;
    height: 42px;
    background: #111;
    color: #fff;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .2s ease;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: none;
}

.social-btn:hover {
    transform: translateY(-2px);
    background: #000;
    border-color: rgba(255,255,255,0.20);
}

.social-btn svg {
    width: 22px;
    height: 22px;
}

.footer-middle {
    text-align: center;
    padding: 10px 16px 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-portal-text {
    font-size: 15px;
    font-weight: 600;
    color: #d1d5db;
    margin-bottom: 10px;
}

.footer-portal-logo-link {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 0;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
    border: 1px solid transparent;
}

.footer-portal-logo-link:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.10);
}

.footer-portal-logo {
    max-width: 320px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.footer-bottom {
    position: relative;
    padding: 14px 16px 26px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom-content {
    max-width: 900px;
    margin: 0 auto;
}

.footer-verse {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 12px;
    font-style: italic;
}

.footer-verse span {
    font-style: italic;
}

.footer-copy {
    color: #e5e7eb;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

/* =========================
   BOTÕES FLUTUANTES PADRÃO
========================= */
.whatsapp-float,
.back-to-top {
    width: 60px;
    height: 60px;
    border-radius: 50%;

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

    position: fixed;
    bottom: 16px;

    font-size: 24px;
    cursor: pointer;
    text-decoration: none;

    border: none;
    box-shadow: 0 8px 22px rgba(0,0,0,0.35);

    transition: all 0.25s ease;
}

/* POSIÇÕES OPOSTAS */
.whatsapp-float {
    right: 16px;
    background: #25d366;
    color: #ffffff;
    z-index: 999;
}

.back-to-top {
    left: 16px;
    background: #000D52;
    color: #ffffff;
    z-index: 998;
}

/* HOVER */
.whatsapp-float:hover,
.back-to-top:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 28px rgba(0,0,0,0.45);
}

/* ÍCONES */
.whatsapp-float svg,
.back-to-top svg {
    width: 28px;
    height: 28px;
}

/* RESPONSIVO */
@media (max-width: 600px) {
    .whatsapp-float,
    .back-to-top {
        width: 54px;
        height: 54px;
    }
}

/* =========================
   ACESSIBILIDADE FLUTUANTE
========================= */
.acessibilidade-flutuante {
    position: fixed;
    right: 18px;
    top: 120px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    padding: 10px;
    box-shadow: none;
    backdrop-filter: blur(8px);
}

.acessibilidade-flutuante button {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 0;
    background: #1f2937;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    font-family: var(--font);
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    box-shadow: none;
}

.acessibilidade-flutuante button:hover {
    background: var(--primary);
    border-color: rgba(255,255,255,0.18);
    transform: translateY(-1px);
}

/* =========================
   ALTO CONTRASTE
========================= */
.modo-contraste {
    background: #000000 !important;
    color: #ffffff !important;
}

.modo-contraste .topbar,
.modo-contraste .drawer-panel,
.modo-contraste .hero,
.modo-contraste .footer,
.modo-contraste .acessibilidade-flutuante,
.modo-contraste .card,
.modo-contraste .course-card,
.modo-contraste .price-box {
    background: #000000 !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
    box-shadow: none !important;
}

.modo-contraste .hero h1,
.modo-contraste .drawer-header h3 {
    color: #ffff00 !important;
}

.modo-contraste .btn-primary,
.modo-contraste .btn-secondary,
.modo-contraste .btn-whatsapp,
.modo-contraste .menu-toggle {
    background: #ffffff !important;
    color: #000000 !important;
    border-color: #ffffff !important;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 900px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-social {
        margin-left: 0;
    }

    .footer-portal-logo {
        max-width: 260px;
    }

    .footer-verse {
        font-size: 14px;
        padding: 0 10px;
    }

    .footer-copy {
        font-size: 13px;
    }

    .back-to-top {
        position: static;
        margin: 0 auto 16px;
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .grid-3,
    .courses-grid,
    .benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .topbar-content {
        min-height: 72px;
    }

    .brand img {
        height: 44px;
    }

    .container {
        padding: 16px;
    }

    .hero {
        padding: 46px 12px 36px;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .actions,
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary,
    .btn-whatsapp {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
}

@media (max-width: 700px) {
    .acessibilidade-flutuante {
        right: 10px;
        top: auto;
        bottom: 90px;
        flex-direction: row;
        padding: 8px;
    }

    .acessibilidade-flutuante button {
        width: 46px;
        height: 46px;
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .footer-top {
        padding: 14px 12px;
        gap: 12px;
    }

    .footer-top-item {
        font-size: 13px;
    }

    .footer-icon {
        font-size: 18px;
    }

    .social-btn {
        width: 36px;
        height: 36px;
    }

    .social-btn svg {
        width: 18px;
        height: 18px;
    }

    .footer-middle {
        padding: 8px 12px 16px;
    }

    .footer-portal-text {
        font-size: 14px;
    }

    .footer-portal-logo {
        max-width: 220px;
    }

    .footer-verse {
        font-size: 13px;
    }

    .whatsapp-float {
        width: 48px;
        height: 48px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

.home-page {
    padding-top: 24px;
    padding-bottom: 40px;
}

/* =========================
   SESSÃO DE PROMOÇÕES
========================= */
.promo-section {
    margin-bottom: 40px;
}

.promo-box {
    background: linear-gradient(135deg, #000d52 0%, #020617 100%);
    border: 1px solid rgba(255, 255, 255, 0.10);
    padding: 32px;
    color: #fff;
}

.promo-tag {
    display: inline-block;
    background: #ffffff;
    color: #000d52;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 16px;
    margin-bottom: 18px;
}

.promo-box h1 {
    margin: 0 0 14px;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.1;
    color: #ffffff;
}

.promo-text {
    margin: 0 0 24px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #dbe4ff;
    max-width: 980px;
}

.promo-banner-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.promo-banner-image-wrap {
    margin: 18px 0 22px;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    background: rgba(255,255,255,0.03);
}

.promo-banner-image {
    display: block;
    width: 100%;
    max-height: 360px;
    object-fit: cover;
}

.promo-info {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.promo-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 20px;
    min-height: 120px;
}

.promo-card-destaque {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
}

.promo-card-titulo {
    display: block;
    color: #ffd54a;
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    line-height: 1.3;
}

/* ESTADO PADRÃO */
.promo-card-valor,
.promo-card-escopo,
.promo-card-validade {
    color: #e5e7eb;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
}

.promo-card-escopo {
    color: #dbe4ff;
}

.promo-card-validade {
    color: #cbd5e1;
}

/* PROMOÇÃO ATIVA */
.promo-box--ativa .promo-card-titulo {
    color: #8fd3ff;
}

.promo-box--ativa .promo-card-destaque .promo-card-escopo {
    color: #ffd54a;
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.3;
}

.promo-box--ativa .promo-card-validade {
    color: #ffd54a;
    font-size: 1.7rem;
    font-weight: 900;
    line-height: 1.2;
}

.promo-preco-bloco {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.promo-preco-bloco:last-child {
    margin-bottom: 0;
}

.promo-preco-label,
.promo-preco-label-topo {
    color: #8fd3ff;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.3;
}

.promo-preco-label-valor {
    color: #ffd54a;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.promo-preco-valor {
    color: #ffd54a;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.1;
}

.promo-preco-boleto {
    padding-top: 2px;
}

.promo-box--ativa .promo-card .promo-card-valor {
    color: #ffd54a;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.2;
}

/* PROMOÇÃO AGENDADA */
.promo-box--agendada .promo-card-titulo {
    color: #ffd54a;
}

.promo-box--agendada .promo-card-escopo {
    color: #dbe4ff;
    font-size: 1.05rem;
    font-weight: 600;
}

.promo-box--agendada .promo-card-valor {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
}

/* SEM PROMOÇÃO */
.promo-box--padrao .promo-card-titulo {
    color: #ffd54a;
}

.promo-box--padrao .promo-card-valor,
.promo-box--padrao .promo-card-escopo,
.promo-box--padrao .promo-card-validade {
    color: #dbe4ff;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .promo-info {
        grid-template-columns: 1fr;
    }

    .promo-box {
        padding: 24px;
    }

    .promo-box--ativa .promo-card-destaque .promo-card-escopo {
        font-size: 1.3rem;
    }

    .promo-box--ativa .promo-card-validade {
        font-size: 1.4rem;
    }

    .promo-preco-valor {
        font-size: 1.6rem;
    }
}

@media (max-width: 600px) {
    .promo-box {
        padding: 20px 16px;
    }

    .promo-tag {
        font-size: 0.82rem;
        padding: 10px 12px;
    }

    .promo-text {
        font-size: 0.98rem;
    }

    .promo-card {
        padding: 16px;
    }

    .promo-card-titulo {
        font-size: 0.95rem;
    }

    .promo-preco-label,
    .promo-preco-label-topo,
    .promo-preco-label-valor {
        font-size: 0.92rem;
    }

    .promo-preco-valor {
        font-size: 1.45rem;
    }
}
/* =========================
   BOTÕES / ATALHOS
========================= */
.atalhos-section {
    margin-top: 10px;
}

.atalhos-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.atalho-card {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.10);
    text-decoration: none;
    color: #ffffff;
    padding: 20px;
    border-radius: 0;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.atalho-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.20);
    background: #111c34;
}

.atalho-img-box {
    width: 140px;
    height: 140px;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    margin-bottom: 16px;
}

.atalho-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    display: block;
}

.atalho-title {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-align: center;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 900px) {
    .promo-info {
        grid-template-columns: 1fr;
    }

    .atalhos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .promo-box {
        padding: 22px 18px;
    }

    .promo-box h1 {
        font-size: 1.7rem;
    }

    .promo-text {
        font-size: 0.98rem;
    }

    .atalhos-grid {
        grid-template-columns: 1fr;
    }

    .atalho-img-box {
        width: 120px;
        height: 120px;
    }
}

/* =========================
   plataformas
========================= */
.plataformas-page {
    padding-top: 24px;
    padding-bottom: 40px;
}

.plataformas-hero {
    background: linear-gradient(135deg, #000d52 0%, #020617 100%);
    border: 1px solid rgba(255, 255, 255, 0.10);
    padding: 34px 26px;
    margin-bottom: 28px;
    border-radius: 0;
}

.plataformas-tag {
    display: inline-block;
    background: #ffffff;
    color: #000d52;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 8px 12px;
    margin-bottom: 16px;
    border-radius: 0;
}

.plataformas-hero h1 {
    font-size: 2.3rem;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.2;
}

.plataformas-hero p {
    color: #dbe4ff;
    max-width: 860px;
    font-size: 1.05rem;
}

.plataforma-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 26px;
    margin-bottom: 24px;
    border-radius: 0;
}

.plataforma-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    min-height: 180px;
}

.plataforma-logo img {
    max-width: 100%;
    max-height: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.plataforma-conteudo h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 14px;
}

.plataforma-conteudo p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.plataforma-lista {
    margin: 18px 0 22px;
    padding-left: 18px;
    color: #e5e7eb;
}

.plataforma-lista li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.plataforma-botao {
    display: inline-block;
    background: #000d52;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 22px;
    border: 1px solid #000d52;
    border-radius: 0;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.plataforma-botao:hover {
    background: #001a80;
    border-color: #001a80;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .plataforma-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .plataforma-logo {
        min-height: auto;
    }

    .plataforma-lista {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .plataformas-hero {
        padding: 24px 18px;
    }

    .plataformas-hero h1 {
        font-size: 1.8rem;
    }

    .plataforma-card {
        padding: 20px 16px;
    }

    .plataforma-conteudo h2 {
        font-size: 1.5rem;
    }
}

/* =========================
   LOGIN ADMIN
========================= */
.login-page {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.login-box {
    width: 100%;
    max-width: 420px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.10);
    padding: 28px;
    border-radius: 0;
    box-shadow: none;
}

.login-box h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-align: center;
}

.login-box p {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 22px;
}

.login-error {
    background: rgba(127, 29, 29, 0.35);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fecaca;
    padding: 12px 14px;
    margin-bottom: 16px;
    border-radius: 0;
    font-size: 14px;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    color: #e5e7eb;
    font-weight: 600;
    font-size: 14px;
}

.login-form input {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 16px;
    background: #0b1120;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 0;
    outline: none;
    font-family: var(--font);
    font-size: 15px;
}

.login-form input:focus {
    border-color: rgba(255,255,255,0.22);
}

.login-form button {
    width: 100%;
}

.login-links {
    margin-top: 16px;
    text-align: center;
}

.login-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
}

.login-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* =========================
   PWA INSTALL BANNER
========================= */

.pwa-install-banner {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: min(920px, calc(100% - 32px));
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    z-index: 9999;
    padding: 18px 22px;
    border-radius: 0; /* cantos quadrados */
}

.pwa-install-banner.hidden {
    display: none;
}

.pwa-install-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.pwa-install-text {
    color: #fff;
}

.pwa-install-text strong {
    display: block;
    font-size: 1rem;
}

.pwa-install-text span {
    font-size: 0.9rem;
    color: #94a3b8;
}

.pwa-install-actions {
    display: flex;
    gap: 10px;
}

.pwa-btn {
    border: none;
    border-radius: 0;
    padding: 10px 16px;
    font-weight: 600;
    cursor: pointer;
}

.pwa-btn-primary {
    background: #2563eb;
    color: #fff;
}

.pwa-btn-secondary {
    background: #020617;
    color: #e2e8f0;
    border: 1px solid rgba(255,255,255,0.1);
}
