/* Estilos especificos de la landing Alertas */

.hero-content {
    max-width: 850px;
}

.features,
.examples-section,
.pricing {
    padding: 6rem 0;
}

.section-subtitle {
    max-width: 650px;
}

.examples-section {
    background-color: rgba(255, 255, 255, 0.02);
}

.examples-grid {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.example-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--card-bg);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--accent-light);
}

.example-item .check {
    color: var(--brand-orange);
    font-size: 1.8rem;
    font-weight: bold;
}

.example-item p {
    font-size: 1.1rem;
    font-weight: 400;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.price-card {
    background: var(--card-bg);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.price-card:hover { transform: translateY(-10px); }

.price-card.popular {
    border: 2px solid var(--brand-orange);
    background: rgba(224, 97, 38, 0.05);
    padding: 4rem 2.5rem;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-orange);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
}

.price-card h4 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.price-card .price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-light);
    margin-bottom: 2rem;
    text-align: center;
}

.price-card .price-custom {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-light);
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.2;
    padding: 0.5rem 0;
}

.price-card .price span {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.features-list {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.features-list li.disabled {
    color: var(--text-secondary);
    opacity: 0.6;
}

.btn-block {
    display: block;
    width: 100%;
}

@media (max-width: 768px) {
    .price-card.popular {
        padding: 3rem 2.5rem;
    }
}
