.articulo-contenedor {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 100px;
}

.articulo-cabecera {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.categoria {
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.articulo-cabecera h1 {
    font-size: 2.8rem;
    margin: 20px 0;
    line-height: 1.2;
}

.meta-datos {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* Estilos para el texto del artículo que tú escribas */
.articulo-contenido {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}
.articulo-contenido h2 {
    color: #fff;
    margin-top: 40px;
    font-size: 1.8rem;
}
.articulo-contenido p {
    margin-bottom: 20px;
}
.articulo-contenido ul {
    margin-bottom: 20px;
    padding-left: 20px;
}
.articulo-contenido li {
    margin-bottom: 10px;
}

.articulo-footer {
    margin-top: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-align: center;
}
.articulo-footer p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.btn-contacto {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
}
.btn-contacto:hover {
    transform: translateY(-3px);
}
