/* =========================================================
   ME HOST – Identidade Visual Global
   Compatível com WHMCS (Twenty-One / Six)
   ========================================================= */

/* ===========================
   PALETA OFICIAL ME HOST
   =========================== */
:root {
    --me-blue: #0094ff;
    --me-blue-dark: #006dd4;

    --me-yellow: #ffc300;
    --me-yellow-dark: #d49e00;

    --me-dark: #0d1117;
    --me-dark-card: #161b22;

    --me-text-light: #f5f5f5;
    --me-text-dark: #333;

    --radius: 14px;
    --shadow: 0 0 18px rgba(0,0,0,0.15);
    --transition: all 0.25s ease;
}

/* ===========================
   CONTAINERS E CARDS
   =========================== */
.me-contact-wrapper {
    margin-top: 40px;
    padding: 10px;
}

.me-card {
    max-width: 850px;
    margin: 0 auto;
    padding: 35px;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

/* ===========================
   MODO ESCURO AUTOMÁTICO
   =========================== */
@media (prefers-color-scheme: dark) {
    .me-card {
        background: var(--me-dark-card);
        color: var(--me-text-light);
    }

    .me-contact-title,
    .me-contact-sub {
        color: var(--me-text-light) !important;
    }

    .form-control {
        background: #0f141a;
        border: 1px solid #222;
        color: #eee;
    }

    .form-control:focus {
        background: #131922;
        border-color: var(--me-blue);
        color: #fff;
    }
}

/* ===========================
   TIPOGRAFIA
   =========================== */
.me-contact-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--me-blue);
    text-shadow: 0 0 8px rgba(0,148,255,0.25);
}

.me-contact-sub {
    font-size: 15px;
    max-width: 650px;
    margin: 0 auto;
    color: var(--me-text-dark);
}

/* ===========================
   BOTÕES – PADRÃO ME HOST
   =========================== */
.me-btn {
    padding: 14px 36px;
    border-radius: var(--radius);
    font-size: 18px;
    font-weight: 700;
    border: none;
    transition: var(--transition);
    cursor: pointer;
}

/* Azul */
.me-btn-blue {
    background: var(--me-blue);
    color: #fff;
    box-shadow: 0 5px 22px rgba(0,148,255,0.35);
}
.me-btn-blue:hover {
    background: var(--me-yellow);
    color: #000;
}

/* Amarelo */
.me-btn-yellow {
    background: var(--me-yellow);
    color: #000;
    box-shadow: 0 5px 22px rgba(255,195,0,0.3);
}
.me-btn-yellow:hover {
    background: var(--me-blue);
    color: #fff;
}

/* ===========================
   BOTÃO WHATSAPP
   =========================== */
.me-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff !important;
    padding: 12px 22px;
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 16px;
    margin-top: 22px;
    font-weight: 600;
    transition: var(--transition);
}
.me-whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* ===========================
   HERO SECTION – ME HOST
   =========================== */
.me-hero {
    position: relative;
    padding: 140px 30px;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--me-blue) 0%,
        #0073e6 40%,
        #0054c2 100%
    );
    border-radius: 0 0 40px 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    overflow: hidden;
}

/* Logo flutuante decorativa */
.me-hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    background: url('/path/logo-me.png') no-repeat center/contain;
    opacity: 0.18;
    right: -120px;
    top: -70px;
    animation: floatLogo 12s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.25));
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(25px) rotate(3deg); }
}

.me-hero h1 {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 20px;
}

.me-hero p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 720px;
    margin: 0 auto 40px auto;
}

/* ===========================
   NAVBAR / MENU SUPERIOR
   =========================== */
.navbar-mehost {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo-area img {
    max-height: 48px;
}

/* Menu principal */
.menu-principal {
    display: flex;
    gap: 22px;
}

.menu-principal a {
    font-weight: 600;
    color: var(--me-blue-dark);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
}

.menu-principal a:hover {
    background: var(--me-blue);
    color: #fff;
}

/* Destaque (ex: Hospedagem cPanel) */
.menu-principal a.menu-destaque {
    background: var(--me-yellow);
    color: #000;
    font-weight: 700;
}

.menu-principal a.menu-destaque:hover {
    background: var(--me-yellow-dark);
}

/* ===========================
   SEÇÕES GERAIS
   =========================== */
.me-features {
    padding: 60px 0;
    background: #f7f7f7;
}

.me-features h3 {
    margin-top: 15px;
    font-size: 22px;
}

.me-announcements {
    padding: 60px 0;
}

.me-news-card {
    border: 1px solid #ddd;
    padding: 20px;
    margin-top: 20px;
    border-radius: 6px;
    background: #fff;
    min-height: 260px;
}

.me-about {
    padding: 70px 0;
    background: #fafafa;
}

/* ===========================
   ÍCONES (SIDEBAR / NAVBAR)
   =========================== */
.sidebar-menu i,
.navbar-icon i {
    color: var(--me-yellow) !important;
    text-shadow: 0 0 5px rgba(255,195,0,0.45);
    transition: var(--transition);
}

.sidebar-menu i:hover,
.navbar-icon i:hover {
    color: var(--me-yellow-dark) !important;
    transform: scale(1.15);
}
/* RESET BÁSICO DO HEADER */
.topbar {
    background: #f7f9fb;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
}

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

.topbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.topbar a {
    color: #333;
    text-decoration: none;
}

.header-main {
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo img {
    max-height: 60px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    font-weight: 600;
    color: #1f2937;
    text-decoration: none;
}

/* MEGA MENU */
.has-mega {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    display: none;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,.1);
    gap: 40px;
    z-index: 999;
}

.has-mega:hover .mega-menu {
    display: flex;
}

.mega-column {
    min-width: 200px;
}

.mega-column h4 {
    margi
