/* Generic simple content pages (service, contacto, historia) */

.content-page {
    max-width: 800px;
    margin: 0 auto;
}

.content-hero {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.content-hero h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.content-hero p {
    color: var(--gris-texto);
    max-width: 560px;
    margin: 0 auto;
}

.content-body {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.content-body h2 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.content-body p {
    color: var(--gris-texto);
    margin-bottom: 1rem;
}

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

.info-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--gris-texto);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list strong {
    color: var(--text);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #25D366;
    color: white;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
}

.btn-whatsapp:hover {
    background: #1da851;
    color: white;
    text-decoration: none;
}

/* Honda / Recomovil enhancements */
.content-hero {
    border-left: 4px solid var(--brand-primary);
    text-align: left;
}

.content-hero h1 {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-body {
    border-top: 2px solid var(--brand-primary);
}
