/* === VISUAL ENHANCEMENTS & CLEANUP === */

/* Common Section Spacing - Replaces inline padding: 8rem 0 */
.section-padding-large {
    padding: 8rem 0;
}

/* 1. O INIMIGO COMUM (#problema) */
.shadow-ai-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-alert-red);
    text-shadow: 0 0 20px rgba(255, 71, 87, 0.2);
}

/* 2. O GESTOR CONSCIENTE (#heroi) */
.conscious-manager-section {
    position: relative;
    background: radial-gradient(circle at 30% 50%, rgba(91, 50, 163, 0.15), transparent 70%);
}

.hero-journey-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-gray-light);
}

/* 3. A TRANSFORMAÇÃO (#solucao) */
.transformation-section {
    position: relative;
}

/* Custom Checkmark List */
.feature-checklist {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.feature-checklist li {
    padding: 0.8rem 0;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-checklist li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-accent-green);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: bold;
}

/* 4. COMPARATIVO (#comparativo) */
.comparison-container {
    overflow-x: auto;
    margin-top: 4rem;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.comparison-table thead th {
    padding: 1.5rem;
    text-align: center;
    color: var(--color-secondary-light);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table tbody tr {
    transition: background 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.comparison-table td:first-child {
    text-align: left;
    padding-left: 2rem;
    font-weight: 600;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.01);
}

.status-bad {
    color: #fe4d4d;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.status-good {
    color: var(--color-accent-green);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Centralização de Imagens e Sessões */
.section-image {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.agents-visual img {
    display: block;
    margin: 0 auto;
    transition: transform var(--transition-smooth);
}

.agents-visual img:hover {
    transform: scale(1.02);
}

/* === MOBILE RESPONSIVE (MOBILE-FIRST) === */
@media (max-width: 768px) {
    .container {
        padding-inline: 1.25rem !important;
    }

    /* Redesenhando a Tabela como Cards Reais */
    .comparison-container {
        border: none;
        background: transparent;
        box-shadow: none;
        overflow: visible;
    }

    .comparison-table,
    .comparison-table thead,
    .comparison-table tbody,
    .comparison-table tr,
    .comparison-table td {
        display: block;
        width: 100%;
    }

    .comparison-table thead {
        display: none;
    }

    .comparison-table tbody tr {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        margin-bottom: 2rem;
        padding: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .comparison-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem 0;
        text-align: right;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        min-height: 50px;
    }

    .comparison-table td:last-child {
        border-bottom: none;
    }

    /* Título do Card */
    .comparison-table td:first-child {
        display: block;
        text-align: center;
        background: var(--color-accent-green);
        color: var(--color-primary-navy);
        padding: 0.6rem;
        border-radius: 10px;
        margin-bottom: 1rem;
        font-size: 1rem;
        font-weight: 700;
        text-transform: uppercase;
        border: none;
    }

    .comparison-table td::before {
        content: attr(data-label);
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--color-gray-medium);
        text-transform: uppercase;
        text-align: left;
        padding-right: 1rem;
    }

    .comparison-table td:first-child::before {
        display: none;
    }

    .status-bad,
    .status-good {
        justify-content: flex-end;
        font-size: 0.95rem;
    }

    /* Ajuste de Imagens "Quase Tela Cheia" - Reduzi o sangramento para não cortar no mobile */
    .agents-visual,
    .section-with-image img {
        margin-inline: -0.5rem !important;
        /* Respiro mínimo lateral */
        width: calc(100% + 1rem) !important;
        border-radius: 12px !important;
    }
}