/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f2f2f2;
    margin: 0;
    padding: 0;
}

h1, h2 {
    margin-bottom: 10px;
}

p {
    margin-bottom: 20px;
}

/* Estilos para la sección del artículo */
.article {
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.article h2 {
    color: #333;
}


/* Estilos para el pie de página */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    display: inline;
    margin-right: 20px;
}

.footer-menu li a {
    color: #fff;
    text-decoration: none;
}

.social-icons {
    list-style: none;
    margin-top: 20px;
}

.social-icons li {
    display: inline;
    margin-right: 10px;
}

.social-icons li a img {
    max-width: 30px;
}
/* Estilos específicos para dispositivos móviles */
@media (max-width: 768px) {
    .welcome {
        padding: 50px 20px;
    }
}
/* Tipografía y reset leve */
* { box-sizing: border-box; }
body { font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif; }

/* Logo */
.logo-img { max-height: 48px; width: auto; height: auto; }
@media (max-width: 576px) { .logo-img { max-height: 40px; } }

/* Hero e imágenes */
.article-hero { aspect-ratio: 16 / 9; object-fit: cover; }
.article-section { margin-bottom: 1.5rem; }
.article-section h2 { margin-bottom: .5rem; }

/* ===== Nota (centrada y destacada) ===== */
.final-mark{
  width: 120px;
  height: 120px;
  margin: 2rem auto 0;       /* centrada horizontal */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.75rem;
  color: #1f5131;
  background: #e2ffe6;
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
}

/* ===== Sidebar sticky solo en ≥ lg ===== */
@media (min-width: 992px){
  .sticky-lg{
    position: sticky;
    top: 1rem;               /* separación desde top al hacer scroll */
  }
}

/* Lista specs */
.spec-list{ margin:0; padding-left: 1rem; }
.spec-list li + li{ margin-top: .4rem; }

/* Botón Amazon (opcional: matiz de color acorde a tu paleta) */
.btn-success{
  background-color:#38a169;
  border-color:#38a169;
}
.btn-success:hover,
.btn-success:focus{
  background-color:#2f855a;
  border-color:#2f855a;
}

/* Footer */
footer a { white-space: nowrap; }
