/*
Theme Name: Emerson Melo TI
Theme URI: https://emersonmelo.com.br
Author: Emerson Melo
Author URI: https://emersonmelo.com.br
Description: Tema custom dark/neon para o site emersonmelo.com.br — Consultoria de TI em Curitiba.
Version: 1.0.0
License: proprietary
Text Domain: emersonmelo
Requires at least: 6.0
Requires PHP: 8.0
*/

/* ===== VARIABLES ===== */
:root {
    --primary: #00ff88;
    --primary-dark: #00cc6a;
    --primary-glow: rgba(0, 255, 136, 0.15);
    --bg-dark: #070b14;
    --bg-card: #0d1424;
    --bg-card2: #111827;
    --text: #e8eaed;
    --text-muted: #8892a4;
    --border: #1a2235;
    --border-bright: #1f2e45;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Noise overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }

/* ===== NAV ===== */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 11, 20, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

.site-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-logo span { color: var(--text-muted); font-weight: 400; }

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover, .nav-menu .current-menu-item a { color: var(--primary); }

.nav-cta {
    background: var(--primary);
    color: var(--bg-dark) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 700 !important;
    transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px); }

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 200;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: transform 0.3s, opacity 0.3s;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    background: var(--bg-card);
}

.breadcrumb nav { position: static; background: none; backdrop-filter: none; border: none; padding: 0; }
.breadcrumb ol { list-style: none; display: flex; gap: 0.5rem; font-size: 0.8rem; }
.breadcrumb ol li::after { content: '›'; margin-left: 0.5rem; }
.breadcrumb ol li:last-child::after { content: ''; }
.breadcrumb ol li:last-child { color: var(--primary); }
.breadcrumb ol a { color: var(--text-muted); text-decoration: none; }
.breadcrumb ol a:hover { color: var(--primary); }

/* ===== HERO ===== */
.hero-section {
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0,255,136,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 100% 100%, rgba(0,120,255,0.05) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-glow);
    border: 1px solid rgba(0,255,136,0.3);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-badge::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

h1, h2, h3 {
    font-family: 'Syne', sans-serif;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

h1 em { color: var(--primary); font-style: normal; }

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--bg-dark);
    padding: 0.9rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 30px rgba(0,255,136,0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0,255,136,0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text);
    padding: 0.9rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--border-bright);
    transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
}

.stats-bar .container { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }

.stat-item { text-align: center; }
.stat-number { font-family: 'Syne', sans-serif; font-size: 1.75rem; font-weight: 800; color: var(--primary); display: block; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* ===== SECTIONS ===== */
section, .wp-section { padding: 5rem 0; }

h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.section-intro { color: var(--text-muted); font-size: 1.05rem; max-width: 580px; }
.section-header { margin-bottom: 3rem; }

/* ===== SERVICE CARDS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    border-color: rgba(0,255,136,0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-card:hover::before { opacity: 1; }
.service-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--text); }
.service-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }

.tag {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    background: var(--primary-glow);
    border: 1px solid rgba(0,255,136,0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

/* ===== NICHE CARDS ===== */
.niches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.niche-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.3s, transform 0.3s;
    display: block;
}

.niche-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.niche-card h3 { font-weight: 700; margin-bottom: 0.5rem; }
.niche-card p { color: var(--text-muted); font-size: 0.9rem; }

.niche-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* ===== QUICK SUPPORT ===== */
.quick-support-section {
    background: var(--bg-card);
    border: 1px solid rgba(0,255,136,0.25);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.quick-support-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(0,255,136,0.1), transparent 70%);
    pointer-events: none;
}

.support-checks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.check-item::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    background: var(--primary-glow);
    border: 1px solid rgba(0,255,136,0.3);
    color: var(--primary);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* ===== FAQ ===== */
.faq-section { background: var(--bg-card2); border-radius: 16px; padding: 3rem; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.faq-item p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ===== CONTACT ===== */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info h2 { margin-bottom: 0.75rem; }
.contact-info p { color: var(--text-muted); margin-bottom: 2rem; font-size: 1rem; }
.contact-channels { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }

.channel-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.2s, transform 0.2s;
}

.channel-item:hover { border-color: var(--primary); transform: translateX(4px); }
.channel-icon { font-size: 1.5rem; flex-shrink: 0; }
.channel-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; display: block; }
.channel-value { font-size: 0.95rem; font-weight: 600; color: var(--text); }

/* Form */
.contact-form-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.contact-form-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent 60%);
}

.contact-form-box h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.4rem; }
.contact-form-box p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.75rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg-dark);
    border: 1px solid var(--border-bright);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,255,136,0.08);
}

.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: var(--bg-dark);
    border: none;
    border-radius: 8px;
    padding: 0.9rem 2rem;
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 20px rgba(0,255,136,0.15);
    margin-top: 0.5rem;
}

.btn-submit:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 0 30px rgba(0,255,136,0.3); }

.form-status { display: none; margin-top: 1rem; padding: 0.75rem 1rem; border-radius: 8px; font-size: 0.9rem; }
.form-status.success { display: block; background: rgba(0,255,136,0.08); border: 1px solid rgba(0,255,136,0.3); color: var(--primary); }
.form-status.error { display: block; background: rgba(248,113,113,0.08); border: 1px solid rgba(248,113,113,0.3); color: #f87171; }

/* ===== FOOTER ===== */
.site-footer {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.site-footer .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.site-footer p { color: var(--text-muted); font-size: 0.85rem; }

.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }

/* ===== WORDPRESS OVERRIDES ===== */
/* WP Admin bar fix */
body.admin-bar .site-nav { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-nav { top: 46px; } }

/* WP block styles */
.entry-content { color: var(--text-muted); font-size: 1rem; line-height: 1.8; }
.entry-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; color: var(--text); }
.entry-content h3 { margin-top: 2rem; margin-bottom: 0.75rem; color: var(--text); font-size: 1.15rem; }
.entry-content p { margin-bottom: 1.25rem; }
.entry-content a { color: var(--primary); text-decoration: underline; }
.entry-content a:hover { color: var(--primary-dark); }
.entry-content ul, .entry-content ol { margin: 1rem 0 1.5rem 1.5rem; }
.entry-content li { margin-bottom: 0.5rem; }
.entry-content blockquote { border-left: 3px solid var(--primary); padding-left: 1.25rem; margin: 1.5rem 0; font-style: italic; color: var(--text); }
.entry-content pre, .entry-content code { background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; font-family: 'JetBrains Mono', monospace; font-size: 0.9rem; }
.entry-content pre { padding: 1.25rem; overflow-x: auto; margin: 1.5rem 0; }
.entry-content code { padding: 0.15rem 0.4rem; }
.entry-content img { max-width: 100%; height: auto; border-radius: 8px; }
.entry-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.entry-content th, .entry-content td { border: 1px solid var(--border); padding: 0.75rem 1rem; text-align: left; }
.entry-content th { background: var(--bg-card); color: var(--primary); font-weight: 700; }
.entry-content td { color: var(--text-muted); }

/* WP navigation pagination */
.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; }
.pagination a, .pagination span { padding: 0.5rem 1rem; border-radius: 6px; background: var(--bg-card); border: 1px solid var(--border); color: var(--text-muted); text-decoration: none; font-size: 0.9rem; }
.pagination a:hover { border-color: var(--primary); color: var(--primary); }
.pagination .current { background: var(--primary); color: var(--bg-dark); border-color: var(--primary); font-weight: 700; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .contact-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(7, 11, 20, 0.98);
        backdrop-filter: blur(20px);
        padding: 5rem 2rem 2rem;
        gap: 0.5rem;
        z-index: 150;
    }

    .nav-menu.active { display: flex; }

    .nav-menu a {
        font-size: 1.15rem;
        padding: 0.75rem 0;
        display: block;
        border-bottom: 1px solid var(--border);
    }

    .nav-menu .nav-cta { text-align: center; margin-top: 1rem; border-bottom: none; }

    h1 { font-size: 2rem; }
    .stats-bar .container { gap: 2rem; }
    .quick-support-section { padding: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .site-footer .container { flex-direction: column; text-align: center; }
}

/* ============================================================
   PAGE-SPECIFIC STYLES (Cloud, Proxmox, Advocacia, Hospitais, Sobre)
   ============================================================ */
/* ===== PAGE: SOBRE ===== */
/* BREADCRUMB */
        .breadcrumb { padding: 0.75rem 0; border-bottom: 1px solid var(--border); background: var(--bg-card); }
/* HERO */
        header {
            padding: 5rem 0 4rem;
            background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0,255,136,0.06) 0%, transparent 60%);
            position: relative;
        }
.profile-block {
            display: flex; align-items: center; gap: 2.5rem;
            flex-wrap: wrap;
        }
.profile-avatar {
            width: 100px; height: 100px; border-radius: 50%;
            background: var(--bg-card);
            border: 2px solid var(--primary);
            display: flex; align-items: center; justify-content: center;
            font-size: 2.5rem; flex-shrink: 0;
            box-shadow: 0 0 30px rgba(0,255,136,0.15);
        }
.hero-role { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 1rem; }
.skill-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.skill-tag {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.72rem; font-weight: 600;
            color: var(--primary); background: var(--primary-glow);
            border: 1px solid rgba(0,255,136,0.2);
            padding: 0.25rem 0.6rem; border-radius: 4px;
        }
/* SECTIONS */
        .education-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(460px, 1fr)); gap: 1.5rem; }
.education-grid { grid-template-columns: 1fr; }
.edu-card {
            background: var(--bg-card); padding: 2.5rem; border-radius: 12px;
            border: 1px solid var(--border);
            transition: border-color 0.3s, transform 0.3s;
            position: relative; overflow: hidden;
        }
.edu-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--primary), transparent); opacity: 0; transition: opacity 0.3s; }
.edu-card:hover { border-color: rgba(0,255,136,0.3); transform: translateY(-3px); }
.edu-card:hover::before { opacity: 1; }
.edu-card h3 { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
.edu-card .institution { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.25rem; }
.edu-card .period { color: var(--primary); font-size: 0.8rem; font-weight: 600; font-family: 'JetBrains Mono', monospace; margin-bottom: 1.25rem; }
.edu-card ul { list-style: none; }
.edu-card li { padding: 0.3rem 0 0.3rem 1.25rem; position: relative; color: var(--text-muted); font-size: 0.88rem; }
.edu-card li::before { content: '▹'; position: absolute; left: 0; color: var(--primary); }
.cert-link {
            display: inline-flex; align-items: center; gap: 0.4rem;
            margin-top: 1.25rem; padding: 0.6rem 1.25rem;
            background: transparent; border: 1px solid var(--border-bright);
            color: var(--text-muted); text-decoration: none;
            border-radius: 6px; font-size: 0.85rem; font-weight: 600;
            transition: border-color 0.2s, color 0.2s;
        }
.cert-link:hover { border-color: var(--primary); color: var(--primary); }
/* CERTIFICATIONS */
        .cert-section { background: var(--bg-card2); border-radius: 16px; padding: 3rem; }
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.cert-item {
            background: var(--bg-dark); border: 1px solid var(--border);
            border-radius: 10px; padding: 1.5rem;
            transition: border-color 0.2s;
        }
.cert-item:hover { border-color: var(--primary); }
.cert-item h4 { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 0.3rem; }
.cert-item p { color: var(--text-muted); font-size: 0.82rem; }
/* EXPERTISE */
        .expertise-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.expertise-item {
            background: var(--bg-card); border: 1px solid var(--border);
            border-radius: 10px; padding: 1.5rem;
        }
.expertise-item h4 { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--text); }
.expertise-item p { color: var(--text-muted); font-size: 0.88rem; }
/* CTA */
        .cta-section {
            text-align: center;
            background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0,255,136,0.03) 100%);
            border: 1px solid rgba(0,255,136,0.2); border-radius: 16px; padding: 4rem 3rem;
        }
/* WhatsApp Float */
        .whatsapp-float {
            position: fixed; bottom: 28px; right: 28px;
            width: 56px; height: 56px; background: #25D366;
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            box-shadow: 0 4px 20px rgba(37,211,102,0.4); z-index: 9999; text-decoration: none;
            animation: wapulse 2s infinite;
        }
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }
.profile-block { flex-direction: column; align-items: flex-start; }
.cta-section { padding: 2.5rem 1.5rem; }

/* ===== PAGE: CLOUD ===== */
/* NAV */
        .breadcrumb { padding: 0.75rem 0; border-bottom: 1px solid var(--border); background: var(--bg-card); }
/* HERO */
        header { padding: 5rem 0 4rem; position: relative; overflow: hidden;
            background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(59,130,246,0.09) 0%, transparent 60%),
                        radial-gradient(ellipse 40% 40% at 100% 80%, rgba(0,255,136,0.05) 0%, transparent 50%); }
/* PROVIDER LOGOS */
        .providers-bar { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.providers-bar .container { display: flex; justify-content: center; align-items: center; gap: 3rem; flex-wrap: wrap; }
.provider-item { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.provider-logo { font-family: 'JetBrains Mono', monospace; font-size: 1.1rem; font-weight: 600; color: var(--text); letter-spacing: -0.02em; }
.provider-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.provider-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); margin: 0 auto; }
/* SECTIONS */
        .why-cloud {
            background: var(--bg-card2);
            border-radius: 20px;
            padding: 3.5rem;
            position: relative;
            overflow: hidden;
        }
.why-cloud::before {
            content: '';
            position: absolute;
            top: -80px; right: -80px;
            width: 300px; height: 300px;
            background: radial-gradient(circle, rgba(59,130,246,0.08), transparent 70%);
        }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.why-item { text-align: center; padding: 1.75rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; transition: border-color 0.3s; }
.why-item:hover { border-color: rgba(0,255,136,0.3); }
.why-number { font-family: 'Syne', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--primary); display: block; margin-bottom: 0.5rem; }
.why-desc { font-size: 0.9rem; color: var(--text-muted); }
.why-title { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
/* SERVICES GRID */
        .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
/* COMPARISON TABLE */
        .comparison-section { background: var(--bg-card2); border-radius: 20px; padding: 3.5rem; overflow-x: auto; }
.comp-table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.comp-table th { font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 700; padding: 1rem 1.25rem; text-align: left; border-bottom: 1px solid var(--border); }
.comp-table th:nth-child(2) { color: #f87171; }
.comp-table th:nth-child(3) { color: var(--primary); }
.comp-table th:nth-child(4) { color: var(--accent); }
.comp-table td { padding: 0.9rem 1.25rem; font-size: 0.9rem; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tr:hover td { background: rgba(255,255,255,0.02); }
.comp-table td:first-child { font-weight: 600; color: var(--text); }
.yes { color: var(--primary) !important; font-weight: 600; }
.no { color: #f87171 !important; }
.partial { color: #fbbf24 !important; }
/* MIGRATION STEPS */
        .steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.step-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 1.75rem; position: relative; }
.step-number { font-family: 'Syne', sans-serif; font-size: 2.5rem; font-weight: 800; color: rgba(0,255,136,0.15); position: absolute; top: 1rem; right: 1.25rem; line-height: 1; }
.step-card h3 { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
.step-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
/* FAQ */
        .faq-box { background: var(--bg-card); border-radius: 16px; padding: 3rem; }
/* CTA FINAL */
        .cta-section { text-align: center; background: linear-gradient(135deg, var(--bg-card) 0%, rgba(59,130,246,0.04) 100%); border: 1px solid rgba(59,130,246,0.2); border-radius: 16px; padding: 4rem 3rem; }
.cta-section h2 { margin-bottom: 0.75rem; }
.cta-section p { color: var(--text-muted); margin-bottom: 2rem; }
/* INTERNAL LINKS */
        .related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.related-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; text-decoration: none; color: var(--text); transition: border-color 0.3s, transform 0.2s; display: block; }
.related-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.related-card h3 { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.related-card p { font-size: 0.85rem; color: var(--text-muted); }
.related-link { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--primary); font-size: 0.82rem; font-weight: 600; margin-top: 0.75rem; }
/* WA FLOAT */
        .whatsapp-float { position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); z-index: 9999; text-decoration: none; animation: wapulse 2s infinite; }
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }
/* FOOTER */
.cta-section { padding: 2.5rem 1.5rem; }

/* ===== PAGE: PROXMOX ===== */
/* HERO com acento laranja (cor do Proxmox) */
        header { padding: 5rem 0 4rem; position: relative; overflow: hidden;
            background: radial-gradient(ellipse 70% 60% at 50% -10%, rgba(232,99,10,0.08) 0%, transparent 60%),
                        radial-gradient(ellipse 40% 40% at 0% 100%, rgba(0,255,136,0.05) 0%, transparent 50%); }
/* SPECS BAR */
        .specs-bar { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.specs-bar .container { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.spec-item { text-align: center; }
.spec-value { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--primary); display: block; }
.spec-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; }
/* VANTAGENS — cards grandes */
        .vantagens-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.vantagem-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 2.25rem; transition: border-color 0.3s, transform 0.3s; position: relative; overflow: hidden; }
.vantagem-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--primary), transparent); opacity: 0; transition: opacity 0.3s; }
.vantagem-card:hover { border-color: rgba(0,255,136,0.3); transform: translateY(-4px); }
.vantagem-card:hover::after { opacity: 1; }
.vantagem-icon { font-size: 2.2rem; margin-bottom: 1.25rem; display: block; }
.vantagem-card h3 { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--text); }
.vantagem-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.75; }
.vantagem-highlight { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1rem; background: var(--primary-glow); border: 1px solid rgba(0,255,136,0.2); color: var(--primary); font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; font-weight: 600; padding: 0.25rem 0.75rem; border-radius: 4px; }
/* COMPARATIVO PROXMOX vs VMWARE */
        .vs-section { background: var(--bg-card2); border-radius: 20px; padding: 3.5rem; }
.vs-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: start; margin-top: 2.5rem; }
.vs-grid { grid-template-columns: 1fr; }
.vs-divider { display: none; }
.vs-col h3 { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 2px solid; }
.vs-col.vmware h3 { color: #f87171; border-color: rgba(248,113,113,0.3); }
.vs-col.proxmox h3 { color: var(--primary); border-color: rgba(0,255,136,0.3); }
.vs-col ul { list-style: none; }
.vs-col li { padding: 0.6rem 0 0.6rem 1.5rem; position: relative; color: var(--text-muted); font-size: 0.9rem; border-bottom: 1px solid var(--border); }
.vs-col li:last-child { border-bottom: none; }
.vs-col.vmware li::before { content: '✗'; position: absolute; left: 0; color: #f87171; font-weight: 800; }
.vs-col.proxmox li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 800; }
.vs-divider { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; }
.vs-badge { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 800; background: var(--bg-dark); border: 2px solid var(--border-bright); color: var(--text-muted); width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
/* SERVIÇOS */
        .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
/* ARQUITETURA VISUAL */
        .arch-box { background: var(--bg-card2); border-radius: 20px; padding: 3.5rem; }
.arch-diagram { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.arch-node { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 1.25rem; text-align: center; }
.arch-node.highlight { border-color: rgba(0,255,136,0.4); background: rgba(0,255,136,0.04); }
.arch-node-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.arch-node h4 { font-family: 'Syne', sans-serif; font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 0.3rem; }
.arch-node p { font-size: 0.78rem; color: var(--text-muted); }
.arch-arrow { display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.5rem; }
/* FAQ */
        .faq-box { background: var(--bg-card); border-radius: 16px; padding: 3rem; }
/* RELATED */
        .related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.related-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; text-decoration: none; color: var(--text); transition: border-color 0.3s, transform 0.2s; display: block; }
.related-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.related-card h3 { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.related-card p { font-size: 0.85rem; color: var(--text-muted); }
.related-link { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--primary); font-size: 0.82rem; font-weight: 600; margin-top: 0.75rem; }
.cta-section { text-align: center; background: linear-gradient(135deg, var(--bg-card) 0%, rgba(232,99,10,0.04) 100%); border: 1px solid rgba(232,99,10,0.2); border-radius: 16px; padding: 4rem 3rem; }
.cta-section h2 { margin-bottom: 0.75rem; }
.cta-section p { color: var(--text-muted); margin-bottom: 2rem; }
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); z-index: 9999; text-decoration: none; animation: wapulse 2s infinite; }
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }
.vs-section, .arch-box, .faq-box { padding: 2rem; }
.cta-section { padding: 2.5rem 1.5rem; }

/* ===== PAGE: ADVOCACIA ===== */
/* NAV */
/* BREADCRUMB ✅ SEO */
        .breadcrumb {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border);
            background: var(--bg-card);
        }
/* HERO */
        header {
            padding: 5rem 0 4rem;
            background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(168,85,247,0.07) 0%, transparent 60%),
                        radial-gradient(ellipse 50% 40% at 0% 100%, rgba(0,255,136,0.05) 0%, transparent 50%);
            position: relative;
        }
/* FEATURES BAR */
        .features-bar {
            background: var(--bg-card); border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border); padding: 1.5rem 0;
        }
.features-bar .container { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.feat-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--text-muted); }
.feat-item::before {
            content: '✓'; display: flex; align-items: center; justify-content: center;
            width: 20px; height: 20px; background: var(--primary-glow);
            border: 1px solid rgba(0,255,136,0.3); color: var(--primary);
            border-radius: 50%; font-size: 0.65rem; font-weight: 800; flex-shrink: 0;
        }
/* SECTIONS */
        .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.service-card ul { list-style: none; margin-top: 0.75rem; }
.service-card li {
            padding: 0.35rem 0 0.35rem 1.25rem; position: relative;
            color: var(--text-muted); font-size: 0.9rem;
        }
.service-card li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-size: 0.75rem; font-weight: 800; }
/* COMPARISON */
        .comparison-box {
            background: var(--bg-card2); border-radius: 16px; padding: 3rem;
        }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; }
.comparison-grid { grid-template-columns: 1fr; }
.comp-col h3 { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.comp-col.bad h3 { color: #f87171; }
.comp-col.good h3 { color: var(--primary); }
.comp-col ul { list-style: none; }
.comp-col li {
            padding: 0.4rem 0 0.4rem 1.5rem; position: relative;
            color: var(--text-muted); font-size: 0.9rem;
        }
.comp-col.bad li::before { content: '✗'; position: absolute; left: 0; color: #f87171; font-weight: 800; }
.comp-col.good li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 800; }
/* CONTACT */
        .contact-section {
            text-align: center;
            background: linear-gradient(135deg, var(--bg-card) 0%, rgba(168,85,247,0.04) 100%);
            border: 1px solid rgba(168,85,247,0.2); border-radius: 16px; padding: 4rem 3rem;
        }
.contact-section h2 { margin-bottom: 0.75rem; }
.contact-section p { color: var(--text-muted); margin-bottom: 2rem; }
.contact-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem; max-width: 700px; margin: 0 auto 2rem;
        }
.contact-card {
            background: var(--bg-card2); border: 1px solid var(--border);
            border-radius: 12px; padding: 1.75rem; text-align: center;
        }
.contact-card span { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.contact-card h3 { font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-muted); }
.contact-card a { color: var(--primary); text-decoration: none; font-weight: 600; font-size: 1rem; }
/* WhatsApp Float */
        .whatsapp-float {
            position: fixed; bottom: 28px; right: 28px;
            width: 56px; height: 56px; background: #25D366;
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 9999; text-decoration: none;
            animation: wapulse 2s infinite;
        }
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }
/* FOOTER */

/* ===== PAGE: HOSPITAIS ===== */
.features-bar { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.features-bar .container { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.feat-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--text-muted); }
.feat-item::before {
            content: '✓'; display: flex; align-items: center; justify-content: center;
            width: 20px; height: 20px; background: var(--primary-glow);
            border: 1px solid rgba(0,255,136,0.3); color: var(--primary);
            border-radius: 50%; font-size: 0.65rem; font-weight: 800; flex-shrink: 0;
        }
.service-card ul { list-style: none; margin-top: 0.75rem; }
.service-card li { padding: 0.35rem 0 0.35rem 1.25rem; position: relative; color: var(--text-muted); font-size: 0.9rem; }
.service-card li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-size: 0.75rem; font-weight: 800; }
/* Uptime highlight */
        .uptime-highlight {
            background: var(--bg-card2); border: 1px solid rgba(0,255,136,0.2);
            border-radius: 16px; padding: 3rem; text-align: center;
        }
.uptime-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.uptime-item { text-align: center; }
.uptime-number { font-family: 'Syne', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--primary); display: block; }
.uptime-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.25rem; }
.comparison-box { background: var(--bg-card2); border-radius: 16px; padding: 3rem; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; }
.comparison-grid { grid-template-columns: 1fr; }
.comp-col h3 { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.comp-col.bad h3 { color: #f87171; }
.comp-col.good h3 { color: var(--primary); }
.comp-col ul { list-style: none; }
.comp-col li { padding: 0.4rem 0 0.4rem 1.5rem; position: relative; color: var(--text-muted); font-size: 0.9rem; }
.comp-col.bad li::before { content: '✗'; position: absolute; left: 0; color: #f87171; font-weight: 800; }
.comp-col.good li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 800; }
.contact-section {
            text-align: center;
            background: linear-gradient(135deg, var(--bg-card) 0%, rgba(59,130,246,0.04) 100%);
            border: 1px solid rgba(59,130,246,0.2); border-radius: 16px; padding: 4rem 3rem;
        }
.contact-section h2 { margin-bottom: 0.75rem; }
.contact-section p { color: var(--text-muted); margin-bottom: 2rem; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; max-width: 700px; margin: 0 auto 2rem; }
.contact-card { background: var(--bg-card2); border: 1px solid var(--border); border-radius: 12px; padding: 1.75rem; text-align: center; }
.contact-card span { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.contact-card h3 { font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-muted); }
.contact-card a { color: var(--primary); text-decoration: none; font-weight: 600; font-size: 1rem; }
.whatsapp-float {
            position: fixed; bottom: 28px; right: 28px;
            width: 56px; height: 56px; background: #25D366;
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            box-shadow: 0 4px 20px rgba(37,211,102,0.4); z-index: 9999; text-decoration: none;
            animation: wapulse 2s infinite;
        }
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }
.contact-section { padding: 2.5rem 1.5rem; }
/* ===== PRESENÇA DIGITAL PAGE ===== */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.plan-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.plan-card.featured {
    border-color: rgba(0,255,136,0.4);
    position: relative;
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--bg-dark);
    padding: 0.25rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.plan-featured-title { color: var(--primary); }
.plan-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
.plan-price { font-family: 'Syne', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--primary); }
.plan-period { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 0.9rem;
}

.plan-features li:last-child { border-bottom: none; }
.plan-cta { width: 100%; justify-content: center; text-align: center; }
.plans-note { text-align: center; color: var(--text-muted); font-size: 0.85rem; margin-top: 2rem; }

.problem-checks .check-item::before {
    background: rgba(248,113,113,0.15);
    border-color: rgba(248,113,113,0.3);
    color: #f87171;
    content: '✕';
}

/* Fix: botões dentro de entry-content não devem herdar cor de link */
.entry-content a.btn-primary,
.entry-content a.btn-primary:hover,
.entry-content a.btn-primary:visited {
    color: var(--bg-dark) !important;
    text-decoration: none !important;
}

.entry-content a.btn-secondary,
.entry-content a.btn-secondary:hover,
.entry-content a.btn-secondary:visited {
    color: var(--text) !important;
    text-decoration: none !important;
}

.entry-content a.btn-secondary:hover {
    color: var(--primary) !important;
}

.entry-content a.plan-cta.btn-primary {
    color: var(--bg-dark) !important;
}

.entry-content a.plan-cta.btn-secondary {
    color: var(--text) !important;
}

/* Fix: remover H1 duplicado no page.php para páginas com hero próprio */
.entry-content .hero-section h1,
.entry-content header h1 {
    margin-top: 0;
}

/* ===== COMPARATIVO COMPACTO ===== */
.entry-content .faq-section .faq-item {
    padding: 1rem 0;
}

.entry-content .faq-section .faq-item h3 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.entry-content .faq-section .faq-item p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* ===== COMPARATIVO GRID 2 COLUNAS ===== */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.compare-col {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
}

.compare-col.compare-bad {
    border-color: rgba(248,113,113,0.3);
}

.compare-col.compare-good {
    border-color: rgba(0,255,136,0.3);
}

.compare-col h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border);
}

.compare-bad h3 { color: #f87171; }
.compare-good h3 { color: var(--primary); }

.compare-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.compare-col li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.compare-col li:last-child { border-bottom: none; }
.compare-bad li::before { content: '✕'; color: #f87171; font-weight: 800; flex-shrink: 0; }
.compare-good li::before { content: '✓'; color: var(--primary); font-weight: 800; flex-shrink: 0; }

@media (max-width: 768px) {
    .compare-grid { grid-template-columns: 1fr; }
}

/* ===== COMPARATIVO GRID 2 COLUNAS ===== */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}
.compare-col {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
}
.compare-col.compare-bad { border-color: rgba(248,113,113,0.3); }
.compare-col.compare-good { border-color: rgba(0,255,136,0.3); }
.compare-col h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border);
}
.compare-bad h3 { color: #f87171; }
.compare-good h3 { color: var(--primary); }
.compare-col ul { list-style: none; margin: 0; padding: 0; }
.compare-col li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.compare-col li:last-child { border-bottom: none; }
.compare-bad li::before { content: '✕'; color: #f87171; font-weight: 800; }
.compare-good li::before { content: '✓'; color: var(--primary); font-weight: 800; }
@media (max-width: 768px) { .compare-grid { grid-template-columns: 1fr; } }
