.lineyes-guia-compra-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: inherit;
    color: #333;
}

.guia-header {
    text-align: center;
    margin-bottom: 50px;
}

.guia-titulo {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #111;
}

.guia-subtitulo {
    font-size: 1.1rem;
    color: #666;
}

.guia-seccion-titulo {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #222;
}

/* Grilla de Pasos */
.guia-pasos-section {
    margin-bottom: 60px;
}

.guia-pasos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.paso-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #eee;
}

.paso-numero {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 15px;
}

.paso-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.paso-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}

/* Preguntas Frecuentes */
.guia-faq-section {
    max-width: 800px;
    margin: 0 auto;
    scroll-margin-top: 140px; /* Evita que el header sticky tape el título al hacer clic */
}

.faq-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    margin-bottom: 15px;
    padding: 20px;
}

.faq-pregunta {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #111;
}

.faq-respuesta p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}