/* === Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  background-color: #f2f3f4;
  height: 100vh;
  overflow: hidden;
}

/* === Header === */
.header {
  background-color: #4b8ca6;
  color: #fff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 55px;
  z-index: 1000;
}

.logo img {
  height: 35px;
}

/* === Footer === */
.footer {
  background-color: #000;
  color: #fff;
  text-align: right;     /* alineado a la derecha */
  padding: 10px 20px;    /* un poco más de espacio lateral */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end; /* asegura la alineación del texto */
  font-size: 12px;       /* tamaño del texto */
}


/* === Contenedor desplazable === */
.scroll-container {
  position: absolute;
  top: 70px;
  bottom: 50px;
  left: 0;
  right: 0;
  overflow-y: auto;
  padding: 25px 30px;
}

/* === Contenedor central con ancho limitado === */
.page-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

/* === Breadcrumbs === */
.breadcrumbs {
  margin-bottom: 20px;
}

.breadcrumbs ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #7a7a7a;
  font-size: 0.95rem;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
}

.breadcrumbs li::after {
  content: "›";
  margin: 0 8px;
  color: #b0b0b0;
}

.breadcrumbs li:last-child::after {
  content: "";
}

.breadcrumbs a {
  text-decoration: none;
  color: #7a7a7a;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: #4b8ca6;
}

.breadcrumbs .active {
  font-weight: bold;
  color: #5b5b5b;
}

.breadcrumbs i {
  color: #7a9cb1;
  margin-right: 5px;
}

/* === Botón atrás === */
.back-button {
  margin: 10px 0 25px 0;
}

.back-button a {
  color: #4b8ca6;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.back-button a:hover {
  text-decoration: underline;
}

/* === Contenido === */
.content {
  background: none;
  box-shadow: none;
  padding: 20px 0;
}

.content h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  line-height: 1.3;
}

.content p {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.6;
}

.list {
  margin: 20px 0 0 30px;
}

/* === Responsividad === */
@media (max-width: 768px) {
  .header { height: 60px; }
  .logo img { height: 40px; }
  .footer { height: 45px; font-size: 0.85rem; }
  .scroll-container { top: 60px; bottom: 45px; padding: 15px; }
  .content h1 { font-size: 1.2rem; }
  .list {  margin: 5px 0 0 10px;}
}

@media (max-width: 480px) {
  .breadcrumbs ul { flex-direction: column; align-items: flex-start; gap: 4px; }
  .content h1 { font-size: 1rem; }
}
