/* --- CABECERA --- */
.doc-hero {
  width: 100%;
  height: 350px;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  
}

/* --- CONTENEDOR PRINCIPAL --- */
.doc-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1rem;
  text-align: left;
  min-height: 90vh;
}

/* --- TÍTULO Y DESCRIPCIÓN --- */
.doc-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  color: #2B2B2B;
}

.doc-desc {
  margin-bottom: 2rem;
  color: #666;
}

/* --- LISTA DE DOCUMENTOS --- */
.doc-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.doc-button {
  position: relative;
  display: inline-block;
  padding: 0.8rem 1.2rem;
  border: 2px solid #2B2B2B;
  color: #2B2B2B;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  overflow: hidden;
  transition: color 0.4s ease, border-color 0.4s ease;
}

/* línea animada */
.doc-button::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(117, 155, 163, 0.15); /* tono Palau sutil */
  transition: left 0.4s ease;
  z-index: 0;
}

/* texto por encima */
.doc-button span,
.doc-button {
  position: relative;
  z-index: 1;
}

/* al pasar el ratón */
.doc-button:hover {
  color: #2B2B2B;
  border-color: #759BA3;
}

.doc-button:hover::before {
  left: 0;
}


/* --- COLORES CORPORATIVOS --- */
.doc-layout {
  background: white;
}

@media (max-width: 768px) {
  .doc-container { padding: 2rem 1rem; }
  .doc-title { font-size: 1.4rem; }
}
