/* DEVRUXO - DESIGN SYSTEM 2026 (CLEAN TECH & ELITE)
    Autor: DevRuxo Team
    Versão: 8.0 (Cards Alinhados + Link Bio + Tabela Expandida)
*/

:root {
    /* -- PALETA DE CORES -- */
    --primary: #D6F32F;
    /* Verde Neon IICIO */
    --primary-dark: #B0CC24;
    /* Verde Escuro */
    --primary-soft: #F9FDE6;
    /* Fundo Claro */
    --primary-text: #1a1a1a;
    /* Texto Escuro no Neon */

    --text-main: #111111;
    /* Preto Sólido */
    --text-gray: #666666;
    /* Cinza Texto */
    --text-light: #999999;
    /* Detalhes */

    --bg-body: #f8f9fa;
    /* Fundo da Página (Gelo) */
    --bg-card: #ffffff;
    /* Cards */
    --bg-footer: #f4f4f4;
    /* Fundo do Footer */

    --danger: #ff4d4f;
    /* Vermelho Alerta */
    --success: #D6F32F;
    /* Sucesso Neon */
    --border: #e5e5e5;
    /* Bordas sutis */

    /* -- FORMAS & SOMBRAS -- */
    --radius: 16px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- 1. RESET & GERAL --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 2. HEADER (Navegação) --- */
#navbar {
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 42px;
    transition: var(--transition);
    /* Contorno removido */

}

.logo:hover img {
    transform: scale(1.05);
}

.desktop-menu {
    display: flex;
    gap: 35px;
}

.desktop-menu a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-gray);
    position: relative;
}

.desktop-menu a:hover {
    color: var(--text-main);
}

.nav-highlight {
    color: #9ab85e !important;
    font-weight: 700 !important;
}

/* --- 3. BOTÕES GLOBAIS --- */
.btn-primary {
    background: var(--primary);
    color: var(--text-main);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid var(--primary);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(184, 214, 122, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(184, 214, 122, 0.5);
}

.btn-primary.small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-primary.full {
    width: 100%;
}

.btn-secondary {
    background: white;
    border: 2px solid var(--border);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-main);
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: var(--primary-soft);
    color: #9ab85e;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 12px;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    display: block;
    width: 100%;
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: var(--primary-soft);
}

.btn-outline.small {
    width: auto;
    padding: 8px 16px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.full {
    width: 100%;
}

/* --- 4. TOP BAR (Aviso) --- */
.top-bar {
    background: #111;
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.top-bar a {
    color: var(--primary);
    text-decoration: underline;
    margin-left: 5px;
}

/* --- 5. HERO SECTION --- */
#hero {
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: white;
}

.bg-decoration {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(184, 214, 122, 0.1) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin: 0 auto;
}

/* BADGE FUTURISTA */
.pill-badge {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(184, 214, 122, 0.5);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #5a7a1f;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px -5px rgba(184, 214, 122, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pill-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -8px rgba(184, 214, 122, 0.6);
    border-color: var(--primary);
}

.pill-badge .dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
    display: block;
    position: relative;
    box-shadow: 0 0 0 0 rgba(214, 243, 47, 0.7);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(214, 243, 47, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(214, 243, 47, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(214, 243, 47, 0);
    }
}

#hero h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--text-main);
    letter-spacing: -1.5px;
}

.gradient-text {
    background: linear-gradient(90deg, #111 0%, #666 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#hero p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}

.trust-bar {
    border-top: 1px solid var(--border);
    padding-top: 30px;
}

.trust-bar p {
    font-size: 0.8rem;
    font-weight: 700;
    color: #ccc;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.tech-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: #888;
    font-weight: 600;
    font-size: 0.9rem;
}

.tech-icons i {
    margin-right: 6px;
    color: #111;
}

/* --- 6. SEÇÕES GERAIS --- */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* --- 7. COMPARATIVO (Cards) --- */
.comparison-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.compare-card {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background: white;
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.compare-card:hover {
    transform: translateY(-5px);
}

/* Bad Card */
.compare-card.bad {
    background: #fffcfc;
    border-color: #ffe5e5;
}

.icon-box-bad {
    width: 50px;
    height: 50px;
    background: #ffe5e5;
    color: var(--danger);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.bad h3 {
    color: var(--danger);
}

.bad-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-gray);
}

.bad-list li::before {
    content: '×';
    color: var(--danger);
    position: absolute;
    left: 0;
    font-weight: 800;
    font-size: 1.2rem;
}

/* Good Card */
.compare-card.good {
    border: 2px solid var(--primary);
    background: white;
    transform: scale(1.03);
    z-index: 2;
    box-shadow: var(--shadow-hover);
}

.compare-card.good:hover {
    transform: scale(1.03) translateY(-5px);
}

.icon-box-good {
    width: 50px;
    height: 50px;
    background: var(--primary-soft);
    color: #5a7a1f;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.good h3 {
    color: #5a7a1f;
}

.good-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-main);
    font-weight: 500;
}

.good-list li::before {
    content: '✓';
    color: #5a7a1f;
    position: absolute;
    left: 0;
    font-weight: 800;
}

.card-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 20px;
}

.card-top h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.tag-best {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--text-main);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

/* --- 8. REALIDADE (Grid) --- */
.grid-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* --- 9. SÓCIO DIGITAL --- */
#socio-digital {
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.socio-panel {
    display: flex;
    align-items: center;
    gap: 60px;
}

.socio-text {
    flex: 1;
}

.socio-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.label-vip {
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 15px;
}

.quote-box {
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin: 25px 0;
    font-style: italic;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.socio-desc {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.alert-limit {
    background: var(--bg-body);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #ddd;
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
}

.alert-limit i {
    font-size: 1.5rem;
    color: var(--danger);
}

.alert-limit strong {
    display: block;
    color: var(--danger);
    font-size: 0.9rem;
}

.alert-limit p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--text-gray);
}

.circle-abstract {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-soft) 0%, white 70%);
    border: 1px solid var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    animation: pulse 4s infinite;
}

.circle-abstract i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.circle-abstract span {
    font-weight: 700;
    font-size: 1.2rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(184, 214, 122, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(184, 214, 122, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(184, 214, 122, 0);
    }
}

/* --- 10. PREÇOS (Cards Iguais) --- */

/* Nota sobre Domínio */
.domain-alert {
    text-align: center;
    margin-bottom: 40px;
    background: #eef9f0;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
    color: #155724;
    font-size: 0.95rem;
}

/* Grid ajustado para esticar os cards (align-items: stretch) */
.pricing-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    align-items: stretch;
}

/* O Card agora é Flexbox Coluna para jogar o rodapé pra baixo */
.price-plan {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 0;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow);

    /* Mágica do alinhamento */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.price-plan:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

/* Card Popular */
.price-plan.popular {
    border: 2px solid var(--primary);
    z-index: 5;
    transform: scale(1.02);
}

.price-plan.popular:hover {
    transform: scale(1.02) translateY(-8px);
}

.pop-tag {
    background: var(--primary);
    color: var(--text-main);
    font-size: 0.75rem;
    font-weight: 800;
    text-align: center;
    padding: 5px;
}

.plan-header {
    padding: 30px 20px 0px;
    text-align: center;
}

.plan-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0px;
}

.plan-header span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.plan-price {
    text-align: center;
    padding: 5px 20px 20px;
    border-bottom: 1px dashed var(--border);
}

.plan-price .old {
    color: #888;
    font-size: 0.85rem;
    display: block;
}

.plan-price strong {
    font-size: 2.2rem;
    line-height: 1;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.per-month {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

.highlight-green {
    color: #5a7a1f !important;
}

.plan-price small {
    font-size: 1rem;
    font-weight: 600;
}

.plan-price .type {
    background: var(--bg-body);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #555;
    margin-top: 10px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Corpo do plano (Expandível) */
.plan-body {
    padding: 25px 20px;
    flex-grow: 1;
    /* Força ocupar o espaço vazio */
}

/* Estilo para "Ideal para:" */
.ideal-for {
    font-size: 0.85rem;
    color: #555;
    background: #f4f4f4;
    padding: 8px;
    border-radius: 6px;
    margin-bottom: 15px;
    line-height: 1.4;
    border-left: 3px solid #ccc;
}

.plan-body p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-body p i {
    color: var(--primary);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.price-plan a {
    margin: 0 20px 30px;
    width: calc(100% - 40px);
}

/* --- 11. FOOTER BLINDADO --- */
#main-footer {
    background-color: var(--bg-footer);
    border-top: 1px solid var(--border);
    padding: 80px 0 30px;
    margin-top: 100px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.brand-area p {
    color: #666;
    line-height: 1.6;
    max-width: 350px;
}

.footer-col h4 {
    color: #111;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #666;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-dark);
    padding-left: 5px;
}

.social-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--primary);
    color: var(--primary-text);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.contact-info {
    color: #888;
    font-size: 0.85rem;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
    font-size: 0.85rem;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-weight: 600;
}

/* --- 12. RESPONSIVIDADE BASICA (Detalhes no responsive.css) --- */
@media (max-width: 900px) {
    .desktop-menu {
        display: none;
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    .cta-group {
        flex-direction: column;
    }

    .socio-panel {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .brand-area p {
        margin: 0 auto;
    }

    .footer-logo {
        margin: 0 auto 20px auto;
    }

    .social-row {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}