/* Import base styles from the first landing page */
@import url('../auditoria/styles.css');

/* Specific styles for /lp/alternativa */

.hero-alt {
    padding: 5rem 2rem 3rem 2rem;
}

.hero-alt h1 {
    font-size: 3rem;
    color: var(--primary-color);
}

.hero-alt p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
}

/* Comparison Table */
.comparison-section {
    padding: 4rem 2rem;
    background: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-radius: 12px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 1.2rem;
    text-align: center;
    border-bottom: 1px solid #E2E8F0;
}

.comparison-table th {
    background: var(--bg-color);
    font-weight: 700;
    color: var(--text-dark);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-light);
}

/* Highlighted Column for SEOdiag */
.col-seodiag {
    background: rgba(39, 174, 96, 0.05);
    border-left: 2px solid var(--cta-color);
    border-right: 2px solid var(--cta-color);
}

th.col-seodiag {
    background: var(--cta-color);
    color: var(--white);
    border-top: 2px solid var(--cta-color);
    border-radius: 8px 8px 0 0;
}

.comparison-table tr:last-child .col-seodiag {
    border-bottom: 2px solid var(--cta-color);
    border-radius: 0 0 8px 8px;
}

.check-yes {
    color: var(--cta-color);
    font-weight: bold;
}

.check-no {
    color: #EF4444;
}

.disclaimer {
    font-size: 0.8rem;
    color: #94A3B8;
    text-align: center;
    margin-top: 1rem;
}

/* Before / After Grid */
.vs-section {
    padding: 4rem 2rem;
    background: var(--bg-color);
}

.vs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 2rem auto;
}

.vs-card {
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.vs-before {
    background: var(--white);
    border-top: 5px solid #EF4444;
}

.vs-after {
    background: rgba(39, 174, 96, 0.1);
    border-top: 5px solid var(--cta-color);
}

.vs-card h3 {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vs-before h3 { color: #EF4444; }
.vs-after h3 { color: var(--cta-color); }

.vs-list {
    list-style: none;
}

.vs-list li {
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 1.5rem;
}

.vs-before .vs-list li::before {
    content: '✗';
    color: #EF4444;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.vs-after .vs-list li::before {
    content: '✓';
    color: var(--cta-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Social Proof */
.social-proof {
    padding: 4rem 2rem;
    text-align: center;
    background: var(--white);
}

.testimonial {
    max-width: 700px;
    margin: 2rem auto;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
}

.testimonial-author {
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

/* Final CTA */
.final-cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .vs-grid {
        grid-template-columns: 1fr;
    }
    .hero-alt h1 {
        font-size: 2.2rem;
    }
}
