/* Estilos Generales */
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF; 
   
  }

/* Contenedor principal */
.detalle-container {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 20px;
    margin-top: 100px;

}

.detalle-container h1 {
    font-size: 2.3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.detalle-container p {
    font-size: 0.95rem;
    color: #6B7280;
    margin-bottom: 1.5rem;
}


.detalle-imagen {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}


.detalle-contenido {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #374151;
    margin-top: 1rem;
}

.detalle-contenido img {
    width: 100%;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.detalle-contenido h2,
.detalle-contenido h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #111827;
}

.detalle-contenido p {
    margin-bottom: 1.2rem;
}

/* ====== RESPONSIVE ===== */
@media (max-width: 768px) {
    .detalle-container {
        margin-top: 2rem;
    }

    .detalle-container h1 {
        font-size: 1.8rem;
    }

    .detalle-contenido {
        font-size: 1.05rem;
    }
}
